blob: 708ceef2e271b07f75e4289ee73c75ebead243fa [file] [log] [blame]
Elliott Hughes15581382014-07-07 15:42:06 -07001 Copyright (c) 2014, Linaro Limited
2 All rights reserved.
3
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
Elliott Hughes3758a242014-07-22 21:24:47 -07006 * Redistributions of source code must retain the above copyright
Elliott Hughes15581382014-07-07 15:42:06 -07007 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -07008 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes15581382014-07-07 15:42:06 -07009 notice, this list of conditions and the following disclaimer in the
10 documentation and/or other materials provided with the distribution.
Elliott Hughes3758a242014-07-22 21:24:47 -070011 * Neither the name of the Linaro nor the
Elliott Hughes15581382014-07-07 15:42:06 -070012 names of its contributors may be used to endorse or promote products
13 derived from this software without specific prior written permission.
14
15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
27-------------------------------------------------------------------
28
29 strchr - find a character in a string
30
31 Copyright (c) 2014, ARM Limited
32 All rights Reserved.
33 Copyright (c) 2014, Linaro Ltd.
34
35 Redistribution and use in source and binary forms, with or without
36 modification, are permitted provided that the following conditions are met:
Elliott Hughes3758a242014-07-22 21:24:47 -070037 * Redistributions of source code must retain the above copyright
Elliott Hughes15581382014-07-07 15:42:06 -070038 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -070039 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes15581382014-07-07 15:42:06 -070040 notice, this list of conditions and the following disclaimer in the
41 documentation and/or other materials provided with the distribution.
Elliott Hughes3758a242014-07-22 21:24:47 -070042 * Neither the name of the company nor the names of its contributors
Elliott Hughes15581382014-07-07 15:42:06 -070043 may be used to endorse or promote products derived from this
44 software without specific prior written permission.
45
46 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
47 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
48 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
49 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
50 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
51 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
52 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
53 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
54 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
55 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
56 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57
58-------------------------------------------------------------------
59
Elliott Hughes3e424d02014-07-23 16:02:26 -070060 Copyright (c) 1993 John Brezak
61 All rights reserved.
62
63 Redistribution and use in source and binary forms, with or without
64 modification, are permitted provided that the following conditions
65 are met:
66 1. Redistributions of source code must retain the above copyright
67 notice, this list of conditions and the following disclaimer.
68 2. Redistributions in binary form must reproduce the above copyright
69 notice, this list of conditions and the following disclaimer in the
70 documentation and/or other materials provided with the distribution.
71 3. The name of the author may be used to endorse or promote products
72 derived from this software without specific prior written permission.
73
74THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR
75IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
76WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
77DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
78INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
79(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
80SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
81HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
82STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
83ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
84POSSIBILITY OF SUCH DAMAGE.
85
86-------------------------------------------------------------------
87
Elliott Hughes80775d62016-02-08 17:00:12 -080088 Copyright (c) 2009-2013 The Linux Foundation. All rights reserved.
89
90 Redistribution and use in source and binary forms, with or without
91 modification, are permitted provided that the following conditions are met:
92 * Redistributions of source code must retain the above copyright
93 notice, this list of conditions and the following disclaimer.
94 * Redistributions in binary form must reproduce the above copyright
95 notice, this list of conditions and the following disclaimer in the
96 documentation and/or other materials provided with the distribution.
97 * Neither the name of The Linux Foundation nor the names of its contributors may
98 be used to endorse or promote products derived from this software
99 without specific prior written permission.
100
101 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
102 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
103 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
104 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
105 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
106 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
107 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
108 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
109 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
110 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
111 POSSIBILITY OF SUCH DAMAGE.
112
113-------------------------------------------------------------------
114
Elliott Hughes261e2232012-08-14 15:04:05 -0700115====================================================
116Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
117
118Developed at SunPro, a Sun Microsystems, Inc. business.
119Permission to use, copy, modify, and distribute this
120software is freely granted, provided that this notice
121is preserved.
122
123-------------------------------------------------------------------
124
Elliott Hughesbfa582d2014-05-05 14:58:17 -0700125Based on the UCB version with the ID appearing below.
126This is ANSIish only when "multibyte character == plain character".
127
128Copyright (c) 1989, 1993
129 The Regents of the University of California. All rights reserved.
130
131Redistribution and use in source and binary forms, with or without
132modification, are permitted provided that the following conditions
133are met:
1341. Redistributions of source code must retain the above copyright
135 notice, this list of conditions and the following disclaimer.
1362. Redistributions in binary form must reproduce the above copyright
137 notice, this list of conditions and the following disclaimer in the
138 documentation and/or other materials provided with the distribution.
1393. Neither the name of the University nor the names of its contributors
140 may be used to endorse or promote products derived from this software
141 without specific prior written permission.
142
143THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
144ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
145IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
146ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
147FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
148DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
149OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
150HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
151LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
152OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
153SUCH DAMAGE.
154
155-------------------------------------------------------------------
156
Elliott Hughes261e2232012-08-14 15:04:05 -0700157Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800158All rights reserved.
159
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800160Redistribution and use in source and binary forms, with or without
161modification, are permitted provided that the following conditions
162are met:
1631. Redistributions of source code must retain the above copyright
164 notice, this list of conditions and the following disclaimer.
1652. Redistributions in binary form must reproduce the above copyright
166 notice, this list of conditions and the following disclaimer in the
167 documentation and/or other materials provided with the distribution.
Elliott Hughes261e2232012-08-14 15:04:05 -07001683. Neither the name of the project nor the names of its contributors
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800169 may be used to endorse or promote products derived from this software
170 without specific prior written permission.
171
Elliott Hughes261e2232012-08-14 15:04:05 -0700172THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800173ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
174IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Elliott Hughes261e2232012-08-14 15:04:05 -0700175ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800176FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
177DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
178OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
179HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
180LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
181OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
182SUCH DAMAGE.
183
Elliott Hughes387d4b72012-08-09 15:17:46 -0700184-------------------------------------------------------------------
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800185
Elliott Hughes448080d2013-01-29 16:25:06 -0800186Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC")
187Copyright (C) 1995-1999, 2001, 2003 Internet Software Consortium.
188
189Permission to use, copy, modify, and/or distribute this software for any
190purpose with or without fee is hereby granted, provided that the above
191copyright notice and this permission notice appear in all copies.
192
193THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
194REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
195AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
196INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
197LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
198OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
199PERFORMANCE OF THIS SOFTWARE.
200
201-------------------------------------------------------------------
202
203Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC")
204Copyright (C) 1997-2001 Internet Software Consortium.
205
206Permission to use, copy, modify, and/or distribute this software for any
207purpose with or without fee is hereby granted, provided that the above
208copyright notice and this permission notice appear in all copies.
209
210THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
211REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
212AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
213INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
214LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
215OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
216PERFORMANCE OF THIS SOFTWARE.
217
218-------------------------------------------------------------------
219
Elliott Hughes261e2232012-08-14 15:04:05 -0700220Copyright (C) 2006 The Android Open Source Project
Elliott Hughes15581382014-07-07 15:42:06 -0700221
222Licensed under the Apache License, Version 2.0 (the "License");
223you may not use this file except in compliance with the License.
224You may obtain a copy of the License at
225
226 http://www.apache.org/licenses/LICENSE-2.0
227
228Unless required by applicable law or agreed to in writing, software
229distributed under the License is distributed on an "AS IS" BASIS,
230WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
231See the License for the specific language governing permissions and
232limitations under the License.
233
234-------------------------------------------------------------------
235
236Copyright (C) 2006 The Android Open Source Project
Elliott Hughes261e2232012-08-14 15:04:05 -0700237All rights reserved.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800238
239Redistribution and use in source and binary forms, with or without
240modification, are permitted provided that the following conditions
241are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700242 * Redistributions of source code must retain the above copyright
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800243 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700244 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -0700245 notice, this list of conditions and the following disclaimer in
246 the documentation and/or other materials provided with the
247 distribution.
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800248
Elliott Hughes261e2232012-08-14 15:04:05 -0700249THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
250"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
251LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
252FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
253COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
254INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
255BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
256OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
257AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
258OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
259OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800260SUCH DAMAGE.
261
Elliott Hughes387d4b72012-08-09 15:17:46 -0700262-------------------------------------------------------------------
263
Elliott Hughes261e2232012-08-14 15:04:05 -0700264Copyright (C) 2008 The Android Open Source Project
Elliott Hughes15581382014-07-07 15:42:06 -0700265
266Licensed under the Apache License, Version 2.0 (the "License");
267you may not use this file except in compliance with the License.
268You may obtain a copy of the License at
269
270 http://www.apache.org/licenses/LICENSE-2.0
271
272Unless required by applicable law or agreed to in writing, software
273distributed under the License is distributed on an "AS IS" BASIS,
274WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
275See the License for the specific language governing permissions and
276limitations under the License.
277
278-------------------------------------------------------------------
279
280Copyright (C) 2008 The Android Open Source Project
Elliott Hughes261e2232012-08-14 15:04:05 -0700281All rights reserved.
282
283Redistribution and use in source and binary forms, with or without
284modification, are permitted provided that the following conditions
285are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700286 * Redistributions of source code must retain the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -0700287 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700288 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -0700289 notice, this list of conditions and the following disclaimer in
290 the documentation and/or other materials provided with the
291 distribution.
292
293THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
294"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
295LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
296FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
297COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
298INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
299BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
300OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
301AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
302OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
303OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
304SUCH DAMAGE.
305
306-------------------------------------------------------------------
307
Elliott Hughesacbe3222014-04-16 17:01:12 -0700308Copyright (C) 2008 The Android Open Source Project
309All rights reserved.
310Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved.
311
312Redistribution and use in source and binary forms, with or without
313modification, are permitted provided that the following conditions
314are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700315 * Redistributions of source code must retain the above copyright
Elliott Hughesacbe3222014-04-16 17:01:12 -0700316 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700317 * Redistributions in binary form must reproduce the above copyright
Elliott Hughesacbe3222014-04-16 17:01:12 -0700318 notice, this list of conditions and the following disclaimer in
319 the documentation and/or other materials provided with the
320 distribution.
321
322THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
323"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
324LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
325FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
326COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
327INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
328BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
329OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
330AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
331OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
332OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
333SUCH DAMAGE.
334
335-------------------------------------------------------------------
336
Elliott Hughes261e2232012-08-14 15:04:05 -0700337Copyright (C) 2009 The Android Open Source Project
338All rights reserved.
339
340Redistribution and use in source and binary forms, with or without
341modification, are permitted provided that the following conditions
342are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700343 * Redistributions of source code must retain the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -0700344 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700345 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -0700346 notice, this list of conditions and the following disclaimer in
347 the documentation and/or other materials provided with the
348 distribution.
349
350THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
351"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
352LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
353FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
354COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
355INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
356BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
357OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
358AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
359OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
360OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
361SUCH DAMAGE.
362
363-------------------------------------------------------------------
364
365Copyright (C) 2010 The Android Open Source Project
366
367Licensed under the Apache License, Version 2.0 (the "License");
368you may not use this file except in compliance with the License.
369You may obtain a copy of the License at
370
371 http://www.apache.org/licenses/LICENSE-2.0
372
373Unless required by applicable law or agreed to in writing, software
374distributed under the License is distributed on an "AS IS" BASIS,
375WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
376See the License for the specific language governing permissions and
377limitations under the License.
378
379-------------------------------------------------------------------
380
381Copyright (C) 2010 The Android Open Source Project
382All rights reserved.
383
384Redistribution and use in source and binary forms, with or without
385modification, are permitted provided that the following conditions
386are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700387 * Redistributions of source code must retain the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -0700388 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700389 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -0700390 notice, this list of conditions and the following disclaimer in
391 the documentation and/or other materials provided with the
392 distribution.
393
394THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
395"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
396LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
397FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
398COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
399INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
400BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
401OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
402AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
403OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
404OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
405SUCH DAMAGE.
406
407-------------------------------------------------------------------
408
409Copyright (C) 2010 The Android Open Source Project
410Copyright (c) 2008 ARM Ltd
411All rights reserved.
Elliott Hughes387d4b72012-08-09 15:17:46 -0700412
413Redistribution and use in source and binary forms, with or without
414modification, are permitted provided that the following conditions
415are met:
4161. Redistributions of source code must retain the above copyright
417 notice, this list of conditions and the following disclaimer.
4182. Redistributions in binary form must reproduce the above copyright
419 notice, this list of conditions and the following disclaimer in the
420 documentation and/or other materials provided with the distribution.
Elliott Hughes261e2232012-08-14 15:04:05 -07004213. The name of the company may not be used to endorse or promote
422 products derived from this software without specific prior written
423 permission.
Elliott Hughes387d4b72012-08-09 15:17:46 -0700424
Elliott Hughes261e2232012-08-14 15:04:05 -0700425THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED
426WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
427MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
428IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
429SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
430TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
431PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
432LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
433NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
434SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
435
436Android adaptation and tweak by Jim Huang <jserv@0xlab.org>.
437
438-------------------------------------------------------------------
439
440Copyright (C) 2011 The Android Open Source Project
Elliott Hughes261e2232012-08-14 15:04:05 -0700441All rights reserved.
442
443Redistribution and use in source and binary forms, with or without
444modification, are permitted provided that the following conditions
445are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700446 * Redistributions of source code must retain the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -0700447 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700448 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -0700449 notice, this list of conditions and the following disclaimer in
450 the documentation and/or other materials provided with the
451 distribution.
452
453THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
454"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
455LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
456FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
457COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
458INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
459BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
460OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
461AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
462OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
463OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Elliott Hughes387d4b72012-08-09 15:17:46 -0700464SUCH DAMAGE.
465
466-------------------------------------------------------------------
467
468Copyright (C) 2012 The Android Open Source Project
Elliott Hughes261e2232012-08-14 15:04:05 -0700469
470Licensed under the Apache License, Version 2.0 (the "License");
471you may not use this file except in compliance with the License.
472You may obtain a copy of the License at
473
474 http://www.apache.org/licenses/LICENSE-2.0
475
476Unless required by applicable law or agreed to in writing, software
477distributed under the License is distributed on an "AS IS" BASIS,
478WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
479See the License for the specific language governing permissions and
480limitations under the License.
481
482-------------------------------------------------------------------
483
484Copyright (C) 2012 The Android Open Source Project
Elliott Hughes387d4b72012-08-09 15:17:46 -0700485All rights reserved.
486
487Redistribution and use in source and binary forms, with or without
488modification, are permitted provided that the following conditions
489are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700490 * Redistributions of source code must retain the above copyright
Elliott Hughes387d4b72012-08-09 15:17:46 -0700491 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700492 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes387d4b72012-08-09 15:17:46 -0700493 notice, this list of conditions and the following disclaimer in
494 the documentation and/or other materials provided with the
495 distribution.
496
497THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
498"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
499LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
500FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
501COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
502INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
503BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
504OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
505AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
506OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
507OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
508SUCH DAMAGE.
509
510-------------------------------------------------------------------
511
Elliott Hughes448080d2013-01-29 16:25:06 -0800512Copyright (C) 2013 The Android Open Source Project
513
514Licensed under the Apache License, Version 2.0 (the "License");
515you may not use this file except in compliance with the License.
516You may obtain a copy of the License at
517
518 http://www.apache.org/licenses/LICENSE-2.0
519
520Unless required by applicable law or agreed to in writing, software
521distributed under the License is distributed on an "AS IS" BASIS,
522WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
523See the License for the specific language governing permissions and
524limitations under the License.
525
526-------------------------------------------------------------------
527
528Copyright (C) 2013 The Android Open Source Project
529All rights reserved.
530
531Redistribution and use in source and binary forms, with or without
532modification, are permitted provided that the following conditions
533are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700534 * Redistributions of source code must retain the above copyright
Elliott Hughes448080d2013-01-29 16:25:06 -0800535 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700536 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes448080d2013-01-29 16:25:06 -0800537 notice, this list of conditions and the following disclaimer in
538 the documentation and/or other materials provided with the
539 distribution.
540
541THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
542"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
543LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
544FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
545COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
546INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
547BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
548OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
549AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
550OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
551OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
552SUCH DAMAGE.
553
554-------------------------------------------------------------------
555
Elliott Hughesacbe3222014-04-16 17:01:12 -0700556Copyright (C) 2013 The Android Open Source Project
Elliott Hughes15581382014-07-07 15:42:06 -0700557All rights reserved.
558Copyright (c) 2013-2014 NVIDIA Corporation. All rights reserved.
559
560Redistribution and use in source and binary forms, with or without
561modification, are permitted provided that the following conditions
562are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700563 * Redistributions of source code must retain the above copyright
Elliott Hughes15581382014-07-07 15:42:06 -0700564 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700565 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes15581382014-07-07 15:42:06 -0700566 notice, this list of conditions and the following disclaimer in
567 the documentation and/or other materials provided with the
568 distribution.
569
570THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
571"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
572LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
573FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
574COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
575INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
576BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
577OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
578AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
579OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
580OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
581SUCH DAMAGE.
582
583-------------------------------------------------------------------
584
585Copyright (C) 2013 The Android Open Source Project
Elliott Hughesacbe3222014-04-16 17:01:12 -0700586Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
587All rights reserved.
588
589Redistribution and use in source and binary forms, with or without
590modification, are permitted provided that the following conditions
591are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700592 * Redistributions of source code must retain the above copyright
Elliott Hughesacbe3222014-04-16 17:01:12 -0700593 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700594 * Redistributions in binary form must reproduce the above copyright
Elliott Hughesacbe3222014-04-16 17:01:12 -0700595 notice, this list of conditions and the following disclaimer in
596 the documentation and/or other materials provided with the
597 distribution.
598
599THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
600"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
601LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
602FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
603COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
604INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
605BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
606OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
607AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
608OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
609OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
610SUCH DAMAGE.
611
612-------------------------------------------------------------------
613
Elliott Hughes4e54b112014-03-06 15:06:11 -0800614Copyright (C) 2014 The Android Open Source Project
615
616Licensed under the Apache License, Version 2.0 (the "License");
617you may not use this file except in compliance with the License.
618You may obtain a copy of the License at
619
620 http://www.apache.org/licenses/LICENSE-2.0
621
622Unless required by applicable law or agreed to in writing, software
623distributed under the License is distributed on an "AS IS" BASIS,
624WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
625See the License for the specific language governing permissions and
626limitations under the License.
627
628-------------------------------------------------------------------
629
630Copyright (C) 2014 The Android Open Source Project
631All rights reserved.
632
633Redistribution and use in source and binary forms, with or without
634modification, are permitted provided that the following conditions
635are met:
Elliott Hughes3758a242014-07-22 21:24:47 -0700636 * Redistributions of source code must retain the above copyright
Elliott Hughes4e54b112014-03-06 15:06:11 -0800637 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -0700638 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes4e54b112014-03-06 15:06:11 -0800639 notice, this list of conditions and the following disclaimer in
640 the documentation and/or other materials provided with the
641 distribution.
642
643THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
644"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
645LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
646FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
647COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
648INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
649BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
650OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
651AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
652OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
653OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
654SUCH DAMAGE.
655
656-------------------------------------------------------------------
657
Elliott Hughes7e54c762015-05-12 10:09:01 -0700658Copyright (C) 2015 The Android Open Source Project
659
660Licensed under the Apache License, Version 2.0 (the "License");
661you may not use this file except in compliance with the License.
662You may obtain a copy of the License at
663
664 http://www.apache.org/licenses/LICENSE-2.0
665
666Unless required by applicable law or agreed to in writing, software
667distributed under the License is distributed on an "AS IS" BASIS,
668WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
669See the License for the specific language governing permissions and
670limitations under the License.
671
672-------------------------------------------------------------------
673
674Copyright (C) 2015 The Android Open Source Project
675All rights reserved.
676
677Redistribution and use in source and binary forms, with or without
678modification, are permitted provided that the following conditions
679are met:
680 * Redistributions of source code must retain the above copyright
681 notice, this list of conditions and the following disclaimer.
682 * Redistributions in binary form must reproduce the above copyright
683 notice, this list of conditions and the following disclaimer in
684 the documentation and/or other materials provided with the
685 distribution.
686
687THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
688"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
689LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
690FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
691COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
692INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
693BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
694OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
695AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
696OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
697OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
698SUCH DAMAGE.
699
700-------------------------------------------------------------------
701
Elliott Hughes80775d62016-02-08 17:00:12 -0800702Copyright (C) 2016 The Android Open Source Project
703
704Licensed under the Apache License, Version 2.0 (the "License");
705you may not use this file except in compliance with the License.
706You may obtain a copy of the License at
707
708 http://www.apache.org/licenses/LICENSE-2.0
709
710Unless required by applicable law or agreed to in writing, software
711distributed under the License is distributed on an "AS IS" BASIS,
712WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
713See the License for the specific language governing permissions and
714limitations under the License.
715
716-------------------------------------------------------------------
717
718Copyright (C) 2016 The Android Open Source Project
719All rights reserved.
720
721Redistribution and use in source and binary forms, with or without
722modification, are permitted provided that the following conditions
723are met:
724 * Redistributions of source code must retain the above copyright
725 notice, this list of conditions and the following disclaimer.
726 * Redistributions in binary form must reproduce the above copyright
727 notice, this list of conditions and the following disclaimer in
728 the documentation and/or other materials provided with the
729 distribution.
730
731THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
732"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
733LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
734FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
735COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
736INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
737BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
738OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
739AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
740OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
741OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
742SUCH DAMAGE.
743
744-------------------------------------------------------------------
745
Jake Weinstein01d59a12016-08-25 20:03:25 -0400746Copyright (C) 2017 The Android Open Source Project
747All rights reserved.
748
749Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved.
750
751Redistribution and use in source and binary forms, with or without
752modification, are permitted provided that the following conditions
753are met:
754 * Redistributions of source code must retain the above copyright
755 notice, this list of conditions and the following disclaimer.
756 * Redistributions in binary form must reproduce the above copyright
757 notice, this list of conditions and the following disclaimer in
758 the documentation and/or other materials provided with the
759 distribution.
760
761THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
762"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
763LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
764FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
765COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
766INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
767BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
768OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
769AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
770OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
771OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
772SUCH DAMAGE.
773
774-------------------------------------------------------------------
775
Elliott Hughes261e2232012-08-14 15:04:05 -0700776Copyright (c) 1980, 1983, 1988, 1993
777 The Regents of the University of California. All rights reserved.
Elliott Hughes387d4b72012-08-09 15:17:46 -0700778
Elliott Hughes261e2232012-08-14 15:04:05 -0700779Redistribution and use in source and binary forms, with or without
780modification, are permitted provided that the following conditions
781are met:
7821. Redistributions of source code must retain the above copyright
783 notice, this list of conditions and the following disclaimer.
7842. Redistributions in binary form must reproduce the above copyright
785 notice, this list of conditions and the following disclaimer in the
786 documentation and/or other materials provided with the distribution.
7873. All advertising materials mentioning features or use of this software
788 must display the following acknowledgement:
789 This product includes software developed by the University of
790 California, Berkeley and its contributors.
7914. Neither the name of the University nor the names of its contributors
792 may be used to endorse or promote products derived from this software
793 without specific prior written permission.
Elliott Hughes387d4b72012-08-09 15:17:46 -0700794
Elliott Hughes261e2232012-08-14 15:04:05 -0700795THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
796ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
797IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
798ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
799FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
800DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
801OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
802HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
803LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
804OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
805SUCH DAMAGE.
Elliott Hughes387d4b72012-08-09 15:17:46 -0700806
Elliott Hughes387d4b72012-08-09 15:17:46 -0700807
Elliott Hughes261e2232012-08-14 15:04:05 -0700808Portions Copyright (c) 1993 by Digital Equipment Corporation.
Elliott Hughes387d4b72012-08-09 15:17:46 -0700809
810Permission to use, copy, modify, and distribute this software for any
811purpose with or without fee is hereby granted, provided that the above
Elliott Hughes261e2232012-08-14 15:04:05 -0700812copyright notice and this permission notice appear in all copies, and that
813the name of Digital Equipment Corporation not be used in advertising or
814publicity pertaining to distribution of the document or software without
815specific, written prior permission.
Elliott Hughes387d4b72012-08-09 15:17:46 -0700816
Elliott Hughes261e2232012-08-14 15:04:05 -0700817THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
818WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
819OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
820CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
821DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
822PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
823ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
824SOFTWARE.
825
826-------------------------------------------------------------------
827
Elliott Hughes387d4b72012-08-09 15:17:46 -0700828Copyright (c) 1982, 1986, 1993
829 The Regents of the University of California. All rights reserved.
830
831Redistribution and use in source and binary forms, with or without
832modification, are permitted provided that the following conditions
833are met:
8341. Redistributions of source code must retain the above copyright
835 notice, this list of conditions and the following disclaimer.
8362. Redistributions in binary form must reproduce the above copyright
837 notice, this list of conditions and the following disclaimer in the
838 documentation and/or other materials provided with the distribution.
8393. Neither the name of the University nor the names of its contributors
840 may be used to endorse or promote products derived from this software
841 without specific prior written permission.
842
843THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
844ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
845IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
846ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
847FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
848DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
849OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
850HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
851LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
852OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
853SUCH DAMAGE.
854
855-------------------------------------------------------------------
856
Irina Tirdeaeac9eb42012-09-08 09:28:30 +0300857Copyright (c) 1982, 1986, 1993
858 The Regents of the University of California. All rights reserved.
859(c) UNIX System Laboratories, Inc.
860All or some portions of this file are derived from material licensed
861to the University of California by American Telephone and Telegraph
862Co. or Unix System Laboratories, Inc. and are reproduced herein with
863the permission of UNIX System Laboratories, Inc.
864
865Redistribution and use in source and binary forms, with or without
866modification, are permitted provided that the following conditions
867are met:
8681. Redistributions of source code must retain the above copyright
869 notice, this list of conditions and the following disclaimer.
8702. Redistributions in binary form must reproduce the above copyright
871 notice, this list of conditions and the following disclaimer in the
872 documentation and/or other materials provided with the distribution.
8733. Neither the name of the University nor the names of its contributors
874 may be used to endorse or promote products derived from this software
875 without specific prior written permission.
876
877THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
878ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
879IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
880ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
881FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
882DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
883OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
884HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
885LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
886OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
887SUCH DAMAGE.
888
889-------------------------------------------------------------------
890
Elliott Hughes387d4b72012-08-09 15:17:46 -0700891Copyright (c) 1983, 1987, 1989
892 The Regents of the University of California. All rights reserved.
893
894Redistribution and use in source and binary forms, with or without
895modification, are permitted provided that the following conditions
896are met:
8971. Redistributions of source code must retain the above copyright
898 notice, this list of conditions and the following disclaimer.
8992. Redistributions in binary form must reproduce the above copyright
900 notice, this list of conditions and the following disclaimer in the
901 documentation and/or other materials provided with the distribution.
9023. Neither the name of the University nor the names of its contributors
903 may be used to endorse or promote products derived from this software
904 without specific prior written permission.
905
906THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
907ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
908IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
909ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
910FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
911DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
912OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
913HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
914LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
915OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
916SUCH DAMAGE.
917
918-------------------------------------------------------------------
919
Elliott Hughes387d4b72012-08-09 15:17:46 -0700920Copyright (c) 1983, 1989
921 The Regents of the University of California. All rights reserved.
922
923Redistribution and use in source and binary forms, with or without
924modification, are permitted provided that the following conditions
925are met:
9261. Redistributions of source code must retain the above copyright
927 notice, this list of conditions and the following disclaimer.
9282. Redistributions in binary form must reproduce the above copyright
929 notice, this list of conditions and the following disclaimer in the
930 documentation and/or other materials provided with the distribution.
9313. All advertising materials mentioning features or use of this software
932 must display the following acknowledgement:
933 This product includes software developed by the University of
934 California, Berkeley and its contributors.
9354. Neither the name of the University nor the names of its contributors
936 may be used to endorse or promote products derived from this software
937 without specific prior written permission.
938
939THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
940ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
941IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
942ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
943FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
944DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
945OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
946HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
947LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
948OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
949SUCH DAMAGE.
950
951-------------------------------------------------------------------
952
Elliott Hughes261e2232012-08-14 15:04:05 -0700953Copyright (c) 1983, 1989, 1993
Elliott Hughes387d4b72012-08-09 15:17:46 -0700954 The Regents of the University of California. All rights reserved.
Elliott Hughes387d4b72012-08-09 15:17:46 -0700955
956Redistribution and use in source and binary forms, with or without
957modification, are permitted provided that the following conditions
958are met:
9591. Redistributions of source code must retain the above copyright
960 notice, this list of conditions and the following disclaimer.
9612. Redistributions in binary form must reproduce the above copyright
962 notice, this list of conditions and the following disclaimer in the
963 documentation and/or other materials provided with the distribution.
9643. Neither the name of the University nor the names of its contributors
965 may be used to endorse or promote products derived from this software
966 without specific prior written permission.
967
968THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
969ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
970IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
971ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
972FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
973DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
974OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
975HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
976LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
977OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
978SUCH DAMAGE.
979
980-------------------------------------------------------------------
981
Elliott Hughes261e2232012-08-14 15:04:05 -0700982Copyright (c) 1983, 1993
Elliott Hughes387d4b72012-08-09 15:17:46 -0700983 The Regents of the University of California. All rights reserved.
984
Elliott Hughes387d4b72012-08-09 15:17:46 -0700985Redistribution and use in source and binary forms, with or without
986modification, are permitted provided that the following conditions
987are met:
9881. Redistributions of source code must retain the above copyright
989 notice, this list of conditions and the following disclaimer.
9902. Redistributions in binary form must reproduce the above copyright
991 notice, this list of conditions and the following disclaimer in the
992 documentation and/or other materials provided with the distribution.
9933. Neither the name of the University nor the names of its contributors
994 may be used to endorse or promote products derived from this software
995 without specific prior written permission.
996
997THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
998ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
999IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1000ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1001FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1002DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1003OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1004HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1005LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1006OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1007SUCH DAMAGE.
1008
1009-------------------------------------------------------------------
1010
Elliott Hughes387d4b72012-08-09 15:17:46 -07001011Copyright (c) 1983, 1993
1012 The Regents of the University of California. All rights reserved.
1013
1014Redistribution and use in source and binary forms, with or without
1015modification, are permitted provided that the following conditions
1016are met:
10171. Redistributions of source code must retain the above copyright
1018 notice, this list of conditions and the following disclaimer.
10192. Redistributions in binary form must reproduce the above copyright
1020 notice, this list of conditions and the following disclaimer in the
1021 documentation and/or other materials provided with the distribution.
10224. Neither the name of the University nor the names of its contributors
1023 may be used to endorse or promote products derived from this software
1024 without specific prior written permission.
1025
1026THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1027ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1028IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1029ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1030FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1031DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1032OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1033HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1034LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1035OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1036SUCH DAMAGE.
1037
1038-------------------------------------------------------------------
1039
Elliott Hughes387d4b72012-08-09 15:17:46 -07001040Copyright (c) 1985
1041 The Regents of the University of California. All rights reserved.
1042
1043Redistribution and use in source and binary forms, with or without
1044modification, are permitted provided that the following conditions
1045are met:
10461. Redistributions of source code must retain the above copyright
1047 notice, this list of conditions and the following disclaimer.
10482. Redistributions in binary form must reproduce the above copyright
1049 notice, this list of conditions and the following disclaimer in the
1050 documentation and/or other materials provided with the distribution.
10513. All advertising materials mentioning features or use of this software
1052 must display the following acknowledgement:
1053 This product includes software developed by the University of
1054 California, Berkeley and its contributors.
10554. Neither the name of the University nor the names of its contributors
1056 may be used to endorse or promote products derived from this software
1057 without specific prior written permission.
1058
1059THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1060ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1061IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1062ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1063FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1064DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1065OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1066HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1067LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1068OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1069SUCH DAMAGE.
1070
1071-------------------------------------------------------------------
1072
Elliott Hughes261e2232012-08-14 15:04:05 -07001073Copyright (c) 1985 Regents of the University of California.
Elliott Hughes387d4b72012-08-09 15:17:46 -07001074All rights reserved.
1075
1076Redistribution and use in source and binary forms, with or without
1077modification, are permitted provided that the following conditions
1078are met:
10791. Redistributions of source code must retain the above copyright
1080 notice, this list of conditions and the following disclaimer.
10812. Redistributions in binary form must reproduce the above copyright
1082 notice, this list of conditions and the following disclaimer in the
1083 documentation and/or other materials provided with the distribution.
Elliott Hughes387d4b72012-08-09 15:17:46 -070010843. Neither the name of the University nor the names of its contributors
1085 may be used to endorse or promote products derived from this software
1086 without specific prior written permission.
1087
1088THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1089ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1090IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1091ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1092FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1093DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1094OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1095HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1096LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1097OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1098SUCH DAMAGE.
1099
1100-------------------------------------------------------------------
1101
1102Copyright (c) 1985, 1988, 1993
1103 The Regents of the University of California. All rights reserved.
1104
1105Redistribution and use in source and binary forms, with or without
1106modification, are permitted provided that the following conditions
1107are met:
11081. Redistributions of source code must retain the above copyright
1109 notice, this list of conditions and the following disclaimer.
11102. Redistributions in binary form must reproduce the above copyright
1111 notice, this list of conditions and the following disclaimer in the
1112 documentation and/or other materials provided with the distribution.
11133. Neither the name of the University nor the names of its contributors
1114 may be used to endorse or promote products derived from this software
1115 without specific prior written permission.
1116
1117THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1118ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1119IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1120ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1121FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1122DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1123OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1124HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1125LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1126OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1127SUCH DAMAGE.
1128
1129Portions Copyright (c) 1993 by Digital Equipment Corporation.
1130
1131Permission to use, copy, modify, and distribute this software for any
1132purpose with or without fee is hereby granted, provided that the above
1133copyright notice and this permission notice appear in all copies, and that
1134the name of Digital Equipment Corporation not be used in advertising or
1135publicity pertaining to distribution of the document or software without
1136specific, written prior permission.
1137
1138THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
1139WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
1140OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
1141CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
1142DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
1143PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
1144ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
1145SOFTWARE.
1146
1147-------------------------------------------------------------------
1148
Elliott Hughes261e2232012-08-14 15:04:05 -07001149Copyright (c) 1985, 1989, 1993
1150 The Regents of the University of California. All rights reserved.
Elliott Hughes387d4b72012-08-09 15:17:46 -07001151
1152Redistribution and use in source and binary forms, with or without
1153modification, are permitted provided that the following conditions
1154are met:
11551. Redistributions of source code must retain the above copyright
1156 notice, this list of conditions and the following disclaimer.
11572. Redistributions in binary form must reproduce the above copyright
1158 notice, this list of conditions and the following disclaimer in the
1159 documentation and/or other materials provided with the distribution.
Elliott Hughes261e2232012-08-14 15:04:05 -070011603. All advertising materials mentioning features or use of this software
1161 must display the following acknowledgement:
1162 This product includes software developed by the University of
1163 California, Berkeley and its contributors.
11644. Neither the name of the University nor the names of its contributors
1165 may be used to endorse or promote products derived from this software
1166 without specific prior written permission.
Elliott Hughes387d4b72012-08-09 15:17:46 -07001167
Elliott Hughes261e2232012-08-14 15:04:05 -07001168THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1169ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1170IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1171ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1172FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1173DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1174OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1175HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1176LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1177OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1178SUCH DAMAGE.
1179
1180-------------------------------------------------------------------
1181
1182Copyright (c) 1985, 1993
1183 The Regents of the University of California. All rights reserved.
1184
1185Redistribution and use in source and binary forms, with or without
1186modification, are permitted provided that the following conditions
1187are met:
11881. Redistributions of source code must retain the above copyright
1189 notice, this list of conditions and the following disclaimer.
11902. Redistributions in binary form must reproduce the above copyright
1191 notice, this list of conditions and the following disclaimer in the
1192 documentation and/or other materials provided with the distribution.
11933. All advertising materials mentioning features or use of this software
1194 must display the following acknowledgement:
1195 This product includes software developed by the University of
1196 California, Berkeley and its contributors.
11974. Neither the name of the University nor the names of its contributors
1198 may be used to endorse or promote products derived from this software
1199 without specific prior written permission.
1200
1201THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1202ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1203IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1204ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1205FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1206DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1207OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1208HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1209LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1210OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1211SUCH DAMAGE.
1212
1213-------------------------------------------------------------------
1214
1215Copyright (c) 1985, 1993
1216 The Regents of the University of California. All rights reserved.
1217
1218Redistribution and use in source and binary forms, with or without
1219modification, are permitted provided that the following conditions
1220are met:
12211. Redistributions of source code must retain the above copyright
1222 notice, this list of conditions and the following disclaimer.
12232. Redistributions in binary form must reproduce the above copyright
1224 notice, this list of conditions and the following disclaimer in the
1225 documentation and/or other materials provided with the distribution.
12263. Neither the name of the University nor the names of its contributors
1227 may be used to endorse or promote products derived from this software
1228 without specific prior written permission.
1229
1230THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1231ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1232IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1233ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1234FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1235DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1236OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1237HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1238LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1239OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1240SUCH DAMAGE.
1241
1242-------------------------------------------------------------------
1243
1244Copyright (c) 1987 Regents of the University of California.
1245All rights reserved.
1246
1247Redistribution and use in source and binary forms, with or without
1248modification, are permitted provided that the following conditions
1249are met:
12501. Redistributions of source code must retain the above copyright
1251 notice, this list of conditions and the following disclaimer.
12522. Redistributions in binary form must reproduce the above copyright
1253 notice, this list of conditions and the following disclaimer in the
1254 documentation and/or other materials provided with the distribution.
12553. Neither the name of the University nor the names of its contributors
1256 may be used to endorse or promote products derived from this software
1257 without specific prior written permission.
1258
1259THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1260ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1261IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1262ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1263FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1264DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1265OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1266HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1267LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1268OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1269SUCH DAMAGE.
1270
1271-------------------------------------------------------------------
1272
1273Copyright (c) 1987, 1993
1274 The Regents of the University of California. All rights reserved.
1275
1276Redistribution and use in source and binary forms, with or without
1277modification, are permitted provided that the following conditions
1278are met:
12791. Redistributions of source code must retain the above copyright
1280 notice, this list of conditions and the following disclaimer.
12812. Redistributions in binary form must reproduce the above copyright
1282 notice, this list of conditions and the following disclaimer in the
1283 documentation and/or other materials provided with the distribution.
12843. All advertising materials mentioning features or use of this software
1285 must display the following acknowledgement:
1286 This product includes software developed by the University of
1287 California, Berkeley and its contributors.
12884. Neither the name of the University nor the names of its contributors
1289 may be used to endorse or promote products derived from this software
1290 without specific prior written permission.
1291
1292THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1293ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1294IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1295ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1296FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1297DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1298OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1299HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1300LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1301OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1302SUCH DAMAGE.
1303
1304-------------------------------------------------------------------
1305
1306Copyright (c) 1987, 1993
1307 The Regents of the University of California. All rights reserved.
1308
1309Redistribution and use in source and binary forms, with or without
1310modification, are permitted provided that the following conditions
1311are met:
13121. Redistributions of source code must retain the above copyright
1313 notice, this list of conditions and the following disclaimer.
13142. Redistributions in binary form must reproduce the above copyright
1315 notice, this list of conditions and the following disclaimer in the
1316 documentation and/or other materials provided with the distribution.
13173. Neither the name of the University nor the names of its contributors
1318 may be used to endorse or promote products derived from this software
1319 without specific prior written permission.
1320
1321THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1322ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1323IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1324ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1325FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1326DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1327OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1328HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1329LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1330OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1331SUCH DAMAGE.
1332
1333-------------------------------------------------------------------
1334
1335Copyright (c) 1988 Regents of the University of California.
1336All rights reserved.
1337
1338Redistribution and use in source and binary forms, with or without
1339modification, are permitted provided that the following conditions
1340are met:
13411. Redistributions of source code must retain the above copyright
1342 notice, this list of conditions and the following disclaimer.
13432. Redistributions in binary form must reproduce the above copyright
1344 notice, this list of conditions and the following disclaimer in the
1345 documentation and/or other materials provided with the distribution.
13463. Neither the name of the University nor the names of its contributors
1347 may be used to endorse or promote products derived from this software
1348 without specific prior written permission.
1349
1350THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1351ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1352IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1353ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1354FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1355DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1356OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1357HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1358LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1359OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1360SUCH DAMAGE.
1361
1362-------------------------------------------------------------------
1363
1364Copyright (c) 1988 The Regents of the University of California.
1365All rights reserved.
1366
1367Redistribution and use in source and binary forms, with or without
1368modification, are permitted provided that the following conditions
1369are met:
13701. Redistributions of source code must retain the above copyright
1371 notice, this list of conditions and the following disclaimer.
13722. Redistributions in binary form must reproduce the above copyright
1373 notice, this list of conditions and the following disclaimer in the
1374 documentation and/or other materials provided with the distribution.
13753. Neither the name of the University nor the names of its contributors
1376 may be used to endorse or promote products derived from this software
1377 without specific prior written permission.
1378
1379THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1380ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1381IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1382ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1383FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1384DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1385OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1386HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1387LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1388OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1389SUCH DAMAGE.
1390
1391-------------------------------------------------------------------
1392
1393Copyright (c) 1988, 1993
Elliott Hughes261e2232012-08-14 15:04:05 -07001394 The Regents of the University of California. All rights reserved.
1395
1396Redistribution and use in source and binary forms, with or without
1397modification, are permitted provided that the following conditions
1398are met:
13991. Redistributions of source code must retain the above copyright
1400 notice, this list of conditions and the following disclaimer.
14012. Redistributions in binary form must reproduce the above copyright
1402 notice, this list of conditions and the following disclaimer in the
1403 documentation and/or other materials provided with the distribution.
14043. All advertising materials mentioning features or use of this software
1405 must display the following acknowledgement:
1406 This product includes software developed by the University of
1407 California, Berkeley and its contributors.
14084. Neither the name of the University nor the names of its contributors
1409 may be used to endorse or promote products derived from this software
1410 without specific prior written permission.
1411
1412THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1413ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1414IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1415ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1416FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1417DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1418OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1419HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1420LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1421OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1422SUCH DAMAGE.
1423
1424-------------------------------------------------------------------
1425
1426Copyright (c) 1988, 1993
1427 The Regents of the University of California. All rights reserved.
1428
1429Redistribution and use in source and binary forms, with or without
1430modification, are permitted provided that the following conditions
1431are met:
14321. Redistributions of source code must retain the above copyright
1433 notice, this list of conditions and the following disclaimer.
14342. Redistributions in binary form must reproduce the above copyright
1435 notice, this list of conditions and the following disclaimer in the
1436 documentation and/or other materials provided with the distribution.
14373. Neither the name of the University nor the names of its contributors
1438 may be used to endorse or promote products derived from this software
1439 without specific prior written permission.
1440
1441THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1442ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1443IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1444ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1445FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1446DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1447OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1448HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1449LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1450OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1451SUCH DAMAGE.
1452
1453-------------------------------------------------------------------
1454
1455Copyright (c) 1988, 1993
1456 The Regents of the University of California. All rights reserved.
1457
1458This code is derived from software written by Ken Arnold and
1459published in UNIX Review, Vol. 6, No. 8.
1460
1461Redistribution and use in source and binary forms, with or without
1462modification, are permitted provided that the following conditions
1463are met:
14641. Redistributions of source code must retain the above copyright
1465 notice, this list of conditions and the following disclaimer.
14662. Redistributions in binary form must reproduce the above copyright
1467 notice, this list of conditions and the following disclaimer in the
1468 documentation and/or other materials provided with the distribution.
14693. Neither the name of the University nor the names of its contributors
1470 may be used to endorse or promote products derived from this software
1471 without specific prior written permission.
1472
1473THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1474ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1475IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1476ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1477FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1478DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1479OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1480HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1481LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1482OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1483SUCH DAMAGE.
1484
1485-------------------------------------------------------------------
1486
1487Copyright (c) 1989 The Regents of the University of California.
1488All rights reserved.
1489
1490Redistribution and use in source and binary forms are permitted
1491provided that the above copyright notice and this paragraph are
1492duplicated in all such forms and that any documentation,
1493advertising materials, and other materials related to such
1494distribution and use acknowledge that the software was developed
1495by the University of California, Berkeley. The name of the
1496University may not be used to endorse or promote products derived
1497from this software without specific prior written permission.
Elliott Hughes15581382014-07-07 15:42:06 -07001498THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
Elliott Hughes261e2232012-08-14 15:04:05 -07001499IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
1500WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1501
1502-------------------------------------------------------------------
1503
1504Copyright (c) 1989 The Regents of the University of California.
1505All rights reserved.
1506
1507Redistribution and use in source and binary forms, with or without
1508modification, are permitted provided that the following conditions
1509are met:
15101. Redistributions of source code must retain the above copyright
1511 notice, this list of conditions and the following disclaimer.
15122. Redistributions in binary form must reproduce the above copyright
1513 notice, this list of conditions and the following disclaimer in the
1514 documentation and/or other materials provided with the distribution.
15153. Neither the name of the University nor the names of its contributors
1516 may be used to endorse or promote products derived from this software
1517 without specific prior written permission.
1518
1519THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1520ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1521IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1522ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1523FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1524DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1525OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1526HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1527LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1528OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1529SUCH DAMAGE.
1530
1531-------------------------------------------------------------------
1532
1533Copyright (c) 1989 The Regents of the University of California.
1534All rights reserved.
1535(c) UNIX System Laboratories, Inc.
1536All or some portions of this file are derived from material licensed
1537to the University of California by American Telephone and Telegraph
1538Co. or Unix System Laboratories, Inc. and are reproduced herein with
1539the permission of UNIX System Laboratories, Inc.
1540
1541Redistribution and use in source and binary forms, with or without
1542modification, are permitted provided that the following conditions
1543are met:
15441. Redistributions of source code must retain the above copyright
1545 notice, this list of conditions and the following disclaimer.
15462. Redistributions in binary form must reproduce the above copyright
1547 notice, this list of conditions and the following disclaimer in the
1548 documentation and/or other materials provided with the distribution.
15493. Neither the name of the University nor the names of its contributors
1550 may be used to endorse or promote products derived from this software
1551 without specific prior written permission.
1552
1553THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1554ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1555IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1556ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1557FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Elliott Hughes387d4b72012-08-09 15:17:46 -07001558DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1559OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1560HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1561LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1562OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1563SUCH DAMAGE.
1564
1565-------------------------------------------------------------------
1566
1567Copyright (c) 1989, 1993
1568 The Regents of the University of California. All rights reserved.
1569
1570Redistribution and use in source and binary forms, with or without
1571modification, are permitted provided that the following conditions
1572are met:
15731. Redistributions of source code must retain the above copyright
1574 notice, this list of conditions and the following disclaimer.
15752. Redistributions in binary form must reproduce the above copyright
1576 notice, this list of conditions and the following disclaimer in the
1577 documentation and/or other materials provided with the distribution.
15783. Neither the name of the University nor the names of its contributors
1579 may be used to endorse or promote products derived from this software
1580 without specific prior written permission.
1581
1582THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1583ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1584IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1585ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1586FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1587DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1588OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1589HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1590LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1591OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1592SUCH DAMAGE.
1593
1594-------------------------------------------------------------------
1595
Elliott Hughes261e2232012-08-14 15:04:05 -07001596Copyright (c) 1989, 1993
1597 The Regents of the University of California. All rights reserved.
1598
1599Redistribution and use in source and binary forms, with or without
1600modification, are permitted provided that the following conditions
1601are met:
16021. Redistributions of source code must retain the above copyright
1603 notice, this list of conditions and the following disclaimer.
16042. Redistributions in binary form must reproduce the above copyright
1605 notice, this list of conditions and the following disclaimer in the
1606 documentation and/or other materials provided with the distribution.
16074. Neither the name of the University nor the names of its contributors
1608 may be used to endorse or promote products derived from this software
1609 without specific prior written permission.
1610
1611THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1612ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1613IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1614ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1615FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1616DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1617OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1618HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1619LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1620OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1621SUCH DAMAGE.
1622
1623-------------------------------------------------------------------
1624
1625Copyright (c) 1989, 1993
1626 The Regents of the University of California. All rights reserved.
Elliott Hughesacbe3222014-04-16 17:01:12 -07001627
1628This code is derived from software contributed to Berkeley by
1629Roger L. Snyder.
1630
1631Redistribution and use in source and binary forms, with or without
1632modification, are permitted provided that the following conditions
1633are met:
16341. Redistributions of source code must retain the above copyright
1635 notice, this list of conditions and the following disclaimer.
16362. Redistributions in binary form must reproduce the above copyright
1637 notice, this list of conditions and the following disclaimer in the
1638 documentation and/or other materials provided with the distribution.
16393. Neither the name of the University nor the names of its contributors
1640 may be used to endorse or promote products derived from this software
1641 without specific prior written permission.
1642
1643THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1644ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1645IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1646ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1647FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1648DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1649OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1650HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1651LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1652OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1653SUCH DAMAGE.
1654
1655-------------------------------------------------------------------
1656
1657Copyright (c) 1989, 1993
1658 The Regents of the University of California. All rights reserved.
Elliott Hughes261e2232012-08-14 15:04:05 -07001659(c) UNIX System Laboratories, Inc.
1660All or some portions of this file are derived from material licensed
1661to the University of California by American Telephone and Telegraph
1662Co. or Unix System Laboratories, Inc. and are reproduced herein with
1663the permission of UNIX System Laboratories, Inc.
1664
1665Redistribution and use in source and binary forms, with or without
1666modification, are permitted provided that the following conditions
1667are met:
16681. Redistributions of source code must retain the above copyright
1669 notice, this list of conditions and the following disclaimer.
16702. Redistributions in binary form must reproduce the above copyright
1671 notice, this list of conditions and the following disclaimer in the
1672 documentation and/or other materials provided with the distribution.
16733. Neither the name of the University nor the names of its contributors
1674 may be used to endorse or promote products derived from this software
1675 without specific prior written permission.
1676
1677THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1678ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1679IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1680ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1681FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1682DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1683OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1684HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1685LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1686OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1687SUCH DAMAGE.
1688
1689-------------------------------------------------------------------
1690
Elliott Hughes261e2232012-08-14 15:04:05 -07001691Copyright (c) 1989, 1993, 1994
1692 The Regents of the University of California. All rights reserved.
1693
1694Redistribution and use in source and binary forms, with or without
1695modification, are permitted provided that the following conditions
1696are met:
16971. Redistributions of source code must retain the above copyright
1698 notice, this list of conditions and the following disclaimer.
16992. Redistributions in binary form must reproduce the above copyright
1700 notice, this list of conditions and the following disclaimer in the
1701 documentation and/or other materials provided with the distribution.
17023. Neither the name of the University nor the names of its contributors
1703 may be used to endorse or promote products derived from this software
1704 without specific prior written permission.
1705
1706THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1707ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1708IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1709ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1710FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1711DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1712OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1713HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1714LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1715OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1716SUCH DAMAGE.
1717
1718-------------------------------------------------------------------
1719
Elliott Hughes80775d62016-02-08 17:00:12 -08001720Copyright (c) 1990 Regents of the University of California.
1721All rights reserved.
1722
1723This code is derived from software contributed to Berkeley by
1724Chris Torek.
1725
1726Redistribution and use in source and binary forms, with or without
1727modification, are permitted provided that the following conditions
1728are met:
17291. Redistributions of source code must retain the above copyright
1730 notice, this list of conditions and the following disclaimer.
17312. Redistributions in binary form must reproduce the above copyright
1732 notice, this list of conditions and the following disclaimer in the
1733 documentation and/or other materials provided with the distribution.
17343. Neither the name of the University nor the names of its contributors
1735 may be used to endorse or promote products derived from this software
1736 without specific prior written permission.
1737
1738THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1739ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1740IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1741ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1742FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1743DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1744OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1745HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1746LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1747OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1748SUCH DAMAGE.
1749
1750-------------------------------------------------------------------
1751
Elliott Hughes261e2232012-08-14 15:04:05 -07001752Copyright (c) 1990 The Regents of the University of California.
1753All rights reserved.
1754
1755Redistribution and use in source and binary forms, with or without
1756modification, are permitted provided that the following conditions
1757are met:
17581. Redistributions of source code must retain the above copyright
1759 notice, this list of conditions and the following disclaimer.
17602. Redistributions in binary form must reproduce the above copyright
1761 notice, this list of conditions and the following disclaimer in the
1762 documentation and/or other materials provided with the distribution.
17633. Neither the name of the University nor the names of its contributors
1764 may be used to endorse or promote products derived from this software
1765 without specific prior written permission.
1766
1767THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1768ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1769IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1770ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1771FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1772DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1773OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1774HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1775LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1776OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1777SUCH DAMAGE.
1778
1779-------------------------------------------------------------------
1780
1781Copyright (c) 1990 The Regents of the University of California.
1782All rights reserved.
1783
1784This code is derived from locore.s.
1785
1786Redistribution and use in source and binary forms, with or without
1787modification, are permitted provided that the following conditions
1788are met:
17891. Redistributions of source code must retain the above copyright
1790 notice, this list of conditions and the following disclaimer.
17912. Redistributions in binary form must reproduce the above copyright
1792 notice, this list of conditions and the following disclaimer in the
1793 documentation and/or other materials provided with the distribution.
17943. Neither the name of the University nor the names of its contributors
1795 may be used to endorse or promote products derived from this software
1796 without specific prior written permission.
1797
1798THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1799ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1800IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1801ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1802FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1803DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1804OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1805HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1806LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1807OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1808SUCH DAMAGE.
1809
1810-------------------------------------------------------------------
1811
1812Copyright (c) 1990 The Regents of the University of California.
1813All rights reserved.
1814
1815This code is derived from software contributed to Berkeley by
1816Chris Torek.
1817
1818Redistribution and use in source and binary forms, with or without
1819modification, are permitted provided that the following conditions
1820are met:
18211. Redistributions of source code must retain the above copyright
1822 notice, this list of conditions and the following disclaimer.
18232. Redistributions in binary form must reproduce the above copyright
1824 notice, this list of conditions and the following disclaimer in the
1825 documentation and/or other materials provided with the distribution.
18263. Neither the name of the University nor the names of its contributors
1827 may be used to endorse or promote products derived from this software
1828 without specific prior written permission.
1829
1830THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1831ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1832IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1833ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1834FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1835DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1836OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1837HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1838LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1839OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1840SUCH DAMAGE.
1841
1842-------------------------------------------------------------------
1843
1844Copyright (c) 1990 The Regents of the University of California.
1845All rights reserved.
1846
1847This code is derived from software contributed to Berkeley by
1848William Jolitz.
1849
1850Redistribution and use in source and binary forms, with or without
1851modification, are permitted provided that the following conditions
1852are met:
18531. Redistributions of source code must retain the above copyright
1854 notice, this list of conditions and the following disclaimer.
18552. Redistributions in binary form must reproduce the above copyright
1856 notice, this list of conditions and the following disclaimer in the
1857 documentation and/or other materials provided with the distribution.
18583. Neither the name of the University nor the names of its contributors
1859 may be used to endorse or promote products derived from this software
1860 without specific prior written permission.
1861
1862THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1863ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1864IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1865ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1866FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1867DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1868OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1869HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1870LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1871OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1872SUCH DAMAGE.
1873
1874-------------------------------------------------------------------
1875
1876Copyright (c) 1990, 1993
1877 The Regents of the University of California. All rights reserved.
1878
1879Redistribution and use in source and binary forms, with or without
1880modification, are permitted provided that the following conditions
1881are met:
18821. Redistributions of source code must retain the above copyright
1883 notice, this list of conditions and the following disclaimer.
18842. Redistributions in binary form must reproduce the above copyright
1885 notice, this list of conditions and the following disclaimer in the
1886 documentation and/or other materials provided with the distribution.
18873. Neither the name of the University nor the names of its contributors
1888 may be used to endorse or promote products derived from this software
1889 without specific prior written permission.
1890
1891THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1892ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1893IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1894ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1895FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1896DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1897OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1898HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1899LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1900OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1901SUCH DAMAGE.
1902
1903-------------------------------------------------------------------
1904
1905Copyright (c) 1990, 1993
1906 The Regents of the University of California. All rights reserved.
1907
Elliott Hughes261e2232012-08-14 15:04:05 -07001908This code is derived from software contributed to Berkeley by
1909Chris Torek.
1910
1911Redistribution and use in source and binary forms, with or without
1912modification, are permitted provided that the following conditions
1913are met:
19141. Redistributions of source code must retain the above copyright
1915 notice, this list of conditions and the following disclaimer.
19162. Redistributions in binary form must reproduce the above copyright
1917 notice, this list of conditions and the following disclaimer in the
1918 documentation and/or other materials provided with the distribution.
19193. Neither the name of the University nor the names of its contributors
1920 may be used to endorse or promote products derived from this software
1921 without specific prior written permission.
1922
1923THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1924ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1925IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1926ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1927FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1928DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1929OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1930HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1931LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1932OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1933SUCH DAMAGE.
1934
1935-------------------------------------------------------------------
1936
1937Copyright (c) 1990, 1993
1938 The Regents of the University of California. All rights reserved.
1939
1940This code is derived from software contributed to Berkeley by
Elliott Hughes261e2232012-08-14 15:04:05 -07001941Donn Seeley at UUNET Technologies, Inc.
1942
1943Redistribution and use in source and binary forms, with or without
1944modification, are permitted provided that the following conditions
1945are met:
19461. Redistributions of source code must retain the above copyright
1947 notice, this list of conditions and the following disclaimer.
19482. Redistributions in binary form must reproduce the above copyright
1949 notice, this list of conditions and the following disclaimer in the
1950 documentation and/or other materials provided with the distribution.
19513. Neither the name of the University nor the names of its contributors
1952 may be used to endorse or promote products derived from this software
1953 without specific prior written permission.
1954
1955THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1956ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1957IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1958ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1959FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1960DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1961OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1962HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1963LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1964OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1965SUCH DAMAGE.
1966
1967-------------------------------------------------------------------
1968
1969Copyright (c) 1990, 1993
1970 The Regents of the University of California. All rights reserved.
Elliott Hughesbfa582d2014-05-05 14:58:17 -07001971
1972This code is derived from software contributed to Berkeley by
1973Donn Seeley at UUNET Technologies, Inc.
1974
1975Redistribution and use in source and binary forms, with or without
1976modification, are permitted provided that the following conditions
1977are met:
19781. Redistributions of source code must retain the above copyright
1979 notice, this list of conditions and the following disclaimer.
19802. Redistributions in binary form must reproduce the above copyright
1981 notice, this list of conditions and the following disclaimer in the
1982 documentation and/or other materials provided with the distribution.
19834. Neither the name of the University nor the names of its contributors
1984 may be used to endorse or promote products derived from this software
1985 without specific prior written permission.
1986
1987THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1988ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1989IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1990ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1991FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1992DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1993OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1994HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1995LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1996OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1997SUCH DAMAGE.
1998
1999-------------------------------------------------------------------
2000
2001Copyright (c) 1990, 1993
2002 The Regents of the University of California. All rights reserved.
Elliott Hughes261e2232012-08-14 15:04:05 -07002003(c) UNIX System Laboratories, Inc.
2004All or some portions of this file are derived from material licensed
2005to the University of California by American Telephone and Telegraph
2006Co. or Unix System Laboratories, Inc. and are reproduced herein with
2007the permission of UNIX System Laboratories, Inc.
2008
2009Redistribution and use in source and binary forms, with or without
2010modification, are permitted provided that the following conditions
2011are met:
20121. Redistributions of source code must retain the above copyright
2013 notice, this list of conditions and the following disclaimer.
20142. Redistributions in binary form must reproduce the above copyright
2015 notice, this list of conditions and the following disclaimer in the
2016 documentation and/or other materials provided with the distribution.
20173. Neither the name of the University nor the names of its contributors
2018 may be used to endorse or promote products derived from this software
2019 without specific prior written permission.
2020
2021THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2022ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2023IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2024ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2025FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2026DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2027OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2028HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2029LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2030OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2031SUCH DAMAGE.
2032
2033-------------------------------------------------------------------
2034
2035Copyright (c) 1990, 1993, 1994
2036 The Regents of the University of California. All rights reserved.
2037
2038Redistribution and use in source and binary forms, with or without
2039modification, are permitted provided that the following conditions
2040are met:
20411. Redistributions of source code must retain the above copyright
2042 notice, this list of conditions and the following disclaimer.
20432. Redistributions in binary form must reproduce the above copyright
2044 notice, this list of conditions and the following disclaimer in the
2045 documentation and/or other materials provided with the distribution.
20463. Neither the name of the University nor the names of its contributors
2047 may be used to endorse or promote products derived from this software
2048 without specific prior written permission.
2049
2050THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2051ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2052IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2053ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2054FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2055DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2056OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2057HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2058LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2059OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2060SUCH DAMAGE.
2061
2062-------------------------------------------------------------------
2063
2064Copyright (c) 1990, 1993, 1994
2065 The Regents of the University of California. All rights reserved.
2066
2067This code is derived from software contributed to Berkeley by
2068Chris Torek.
2069
2070Redistribution and use in source and binary forms, with or without
2071modification, are permitted provided that the following conditions
2072are met:
20731. Redistributions of source code must retain the above copyright
2074 notice, this list of conditions and the following disclaimer.
20752. Redistributions in binary form must reproduce the above copyright
2076 notice, this list of conditions and the following disclaimer in the
2077 documentation and/or other materials provided with the distribution.
20783. Neither the name of the University nor the names of its contributors
2079 may be used to endorse or promote products derived from this software
2080 without specific prior written permission.
2081
2082THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2083ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2084IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2085ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2086FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2087DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2088OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2089HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2090LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2091OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2092SUCH DAMAGE.
2093
2094-------------------------------------------------------------------
2095
Elliott Hughes4e54b112014-03-06 15:06:11 -08002096Copyright (c) 1991 The Regents of the University of California.
2097All rights reserved.
2098
2099Redistribution and use in source and binary forms, with or without
2100modification, are permitted provided that the following conditions
2101are met:
21021. Redistributions of source code must retain the above copyright
2103 notice, this list of conditions and the following disclaimer.
21042. Redistributions in binary form must reproduce the above copyright
2105 notice, this list of conditions and the following disclaimer in the
2106 documentation and/or other materials provided with the distribution.
21073. Neither the name of the University nor the names of its contributors
2108 may be used to endorse or promote products derived from this software
2109 without specific prior written permission.
2110
2111THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2112ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2113IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2114ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2115FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2116DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2117OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2118HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2119LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2120OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2121SUCH DAMAGE.
2122
2123-------------------------------------------------------------------
2124
Elliott Hughes261e2232012-08-14 15:04:05 -07002125Copyright (c) 1991, 1993
2126 The Regents of the University of California. All rights reserved.
2127
2128Redistribution and use in source and binary forms, with or without
2129modification, are permitted provided that the following conditions
2130are met:
21311. Redistributions of source code must retain the above copyright
2132 notice, this list of conditions and the following disclaimer.
21332. Redistributions in binary form must reproduce the above copyright
2134 notice, this list of conditions and the following disclaimer in the
2135 documentation and/or other materials provided with the distribution.
21363. Neither the name of the University nor the names of its contributors
2137 may be used to endorse or promote products derived from this software
2138 without specific prior written permission.
2139
2140THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2141ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2142IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2143ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2144FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2145DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2146OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2147HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2148LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2149OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2150SUCH DAMAGE.
2151
2152-------------------------------------------------------------------
2153
2154Copyright (c) 1991, 1993
2155 The Regents of the University of California. All rights reserved.
2156
2157This code is derived from software contributed to Berkeley by
2158Berkeley Software Design, Inc.
2159
2160Redistribution and use in source and binary forms, with or without
2161modification, are permitted provided that the following conditions
2162are met:
21631. Redistributions of source code must retain the above copyright
2164 notice, this list of conditions and the following disclaimer.
21652. Redistributions in binary form must reproduce the above copyright
2166 notice, this list of conditions and the following disclaimer in the
2167 documentation and/or other materials provided with the distribution.
21683. Neither the name of the University nor the names of its contributors
2169 may be used to endorse or promote products derived from this software
2170 without specific prior written permission.
2171
2172THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2173ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2174IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2175ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2176FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2177DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2178OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2179HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2180LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2181OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2182SUCH DAMAGE.
2183
2184-------------------------------------------------------------------
2185
2186Copyright (c) 1991, 1993
2187 The Regents of the University of California. All rights reserved.
2188(c) UNIX System Laboratories, Inc.
2189All or some portions of this file are derived from material licensed
2190to the University of California by American Telephone and Telegraph
2191Co. or Unix System Laboratories, Inc. and are reproduced herein with
2192the permission of UNIX System Laboratories, Inc.
2193
2194This code is derived from software contributed to Berkeley by
2195Hugh Smith at The University of Guelph.
2196
2197Redistribution and use in source and binary forms, with or without
2198modification, are permitted provided that the following conditions
2199are met:
22001. Redistributions of source code must retain the above copyright
2201 notice, this list of conditions and the following disclaimer.
22022. Redistributions in binary form must reproduce the above copyright
2203 notice, this list of conditions and the following disclaimer in the
2204 documentation and/or other materials provided with the distribution.
22053. Neither the name of the University nor the names of its contributors
2206 may be used to endorse or promote products derived from this software
2207 without specific prior written permission.
2208
2209THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2210ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2211IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2212ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2213FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2214DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2215OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2216HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2217LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2218OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2219SUCH DAMAGE.
2220
2221-------------------------------------------------------------------
2222
2223Copyright (c) 1991, 1993, 1995,
2224 The Regents of the University of California. All rights reserved.
2225
2226This code is derived from software contributed to Berkeley by
2227Havard Eidnes.
2228
2229Redistribution and use in source and binary forms, with or without
2230modification, are permitted provided that the following conditions
2231are met:
22321. Redistributions of source code must retain the above copyright
2233 notice, this list of conditions and the following disclaimer.
22342. Redistributions in binary form must reproduce the above copyright
2235 notice, this list of conditions and the following disclaimer in the
2236 documentation and/or other materials provided with the distribution.
22373. Neither the name of the University nor the names of its contributors
2238 may be used to endorse or promote products derived from this software
2239 without specific prior written permission.
2240
2241THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2242ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2243IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2244ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2245FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2246DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2247OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2248HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2249LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2250OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2251SUCH DAMAGE.
2252
2253-------------------------------------------------------------------
2254
2255Copyright (c) 1992 Henry Spencer.
2256Copyright (c) 1992, 1993
2257 The Regents of the University of California. All rights reserved.
2258
2259This code is derived from software contributed to Berkeley by
2260Henry Spencer of the University of Toronto.
2261
2262Redistribution and use in source and binary forms, with or without
2263modification, are permitted provided that the following conditions
2264are met:
22651. Redistributions of source code must retain the above copyright
2266 notice, this list of conditions and the following disclaimer.
22672. Redistributions in binary form must reproduce the above copyright
2268 notice, this list of conditions and the following disclaimer in the
2269 documentation and/or other materials provided with the distribution.
22703. Neither the name of the University nor the names of its contributors
2271 may be used to endorse or promote products derived from this software
2272 without specific prior written permission.
2273
2274THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2275ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2276IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2277ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2278FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2279DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2280OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2281HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2282LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2283OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2284SUCH DAMAGE.
2285
2286-------------------------------------------------------------------
2287
2288Copyright (c) 1992 The Regents of the University of California.
2289All rights reserved.
2290
2291Redistribution and use in source and binary forms, with or without
2292modification, are permitted provided that the following conditions
2293are met:
22941. Redistributions of source code must retain the above copyright
2295 notice, this list of conditions and the following disclaimer.
22962. Redistributions in binary form must reproduce the above copyright
2297 notice, this list of conditions and the following disclaimer in the
2298 documentation and/or other materials provided with the distribution.
22993. Neither the name of the University nor the names of its contributors
2300 may be used to endorse or promote products derived from this software
2301 without specific prior written permission.
2302
2303THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2304ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2305IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2306ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2307FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2308DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2309OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2310HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2311LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2312OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2313SUCH DAMAGE.
2314
2315-------------------------------------------------------------------
2316
2317Copyright (c) 1992, 1993
2318 The Regents of the University of California. All rights reserved.
2319
2320Redistribution and use in source and binary forms, with or without
2321modification, are permitted provided that the following conditions
2322are met:
23231. Redistributions of source code must retain the above copyright
2324 notice, this list of conditions and the following disclaimer.
23252. Redistributions in binary form must reproduce the above copyright
2326 notice, this list of conditions and the following disclaimer in the
2327 documentation and/or other materials provided with the distribution.
23283. Neither the name of the University nor the names of its contributors
2329 may be used to endorse or promote products derived from this software
2330 without specific prior written permission.
2331
2332THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2333ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2334IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2335ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2336FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2337DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2338OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2339HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2340LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2341OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2342SUCH DAMAGE.
2343
2344-------------------------------------------------------------------
2345
2346Copyright (c) 1992, 1993
2347 The Regents of the University of California. All rights reserved.
2348
2349This code is derived from software contributed to Berkeley by
2350Ralph Campbell.
2351
2352Redistribution and use in source and binary forms, with or without
2353modification, are permitted provided that the following conditions
2354are met:
23551. Redistributions of source code must retain the above copyright
2356 notice, this list of conditions and the following disclaimer.
23572. Redistributions in binary form must reproduce the above copyright
2358 notice, this list of conditions and the following disclaimer in the
2359 documentation and/or other materials provided with the distribution.
23603. Neither the name of the University nor the names of its contributors
2361 may be used to endorse or promote products derived from this software
2362 without specific prior written permission.
2363
2364THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2365ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2366IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2367ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2368FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2369DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2370OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2371HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2372LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2373OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2374SUCH DAMAGE.
2375
2376-------------------------------------------------------------------
2377
2378Copyright (c) 1992, 1993
2379 The Regents of the University of California. All rights reserved.
2380
2381This code is derived from software contributed to Berkeley by
2382Ralph Campbell. This file is derived from the MIPS RISC
2383Architecture book by Gerry Kane.
2384
2385Redistribution and use in source and binary forms, with or without
2386modification, are permitted provided that the following conditions
2387are met:
23881. Redistributions of source code must retain the above copyright
2389 notice, this list of conditions and the following disclaimer.
23902. Redistributions in binary form must reproduce the above copyright
2391 notice, this list of conditions and the following disclaimer in the
2392 documentation and/or other materials provided with the distribution.
23933. Neither the name of the University nor the names of its contributors
2394 may be used to endorse or promote products derived from this software
2395 without specific prior written permission.
2396
2397THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2398ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2399IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2400ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2401FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2402DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2403OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2404HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2405LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2406OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2407SUCH DAMAGE.
2408
2409-------------------------------------------------------------------
2410
2411Copyright (c) 1992, 1993
2412 The Regents of the University of California. All rights reserved.
2413
2414This software was developed by the Computer Systems Engineering group
2415at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
2416contributed to Berkeley.
2417
2418All advertising materials mentioning features or use of this software
2419must display the following acknowledgement:
2420 This product includes software developed by the University of
2421 California, Lawrence Berkeley Laboratory.
2422
2423Redistribution and use in source and binary forms, with or without
2424modification, are permitted provided that the following conditions
2425are met:
24261. Redistributions of source code must retain the above copyright
2427 notice, this list of conditions and the following disclaimer.
24282. Redistributions in binary form must reproduce the above copyright
2429 notice, this list of conditions and the following disclaimer in the
2430 documentation and/or other materials provided with the distribution.
24313. All advertising materials mentioning features or use of this software
2432 must display the following acknowledgement:
2433 This product includes software developed by the University of
2434 California, Berkeley and its contributors.
24354. Neither the name of the University nor the names of its contributors
2436 may be used to endorse or promote products derived from this software
2437 without specific prior written permission.
2438
2439THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2440ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2441IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2442ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2443FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2444DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2445OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2446HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2447LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2448OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2449SUCH DAMAGE.
2450
2451-------------------------------------------------------------------
2452
2453Copyright (c) 1992, 1993
2454 The Regents of the University of California. All rights reserved.
Elliott Hughes261e2232012-08-14 15:04:05 -07002455(c) UNIX System Laboratories, Inc.
2456All or some portions of this file are derived from material licensed
2457to the University of California by American Telephone and Telegraph
2458Co. or Unix System Laboratories, Inc. and are reproduced herein with
2459the permission of UNIX System Laboratories, Inc.
2460
2461Redistribution and use in source and binary forms, with or without
2462modification, are permitted provided that the following conditions
2463are met:
24641. Redistributions of source code must retain the above copyright
2465 notice, this list of conditions and the following disclaimer.
24662. Redistributions in binary form must reproduce the above copyright
2467 notice, this list of conditions and the following disclaimer in the
2468 documentation and/or other materials provided with the distribution.
24693. Neither the name of the University nor the names of its contributors
2470 may be used to endorse or promote products derived from this software
2471 without specific prior written permission.
2472
2473THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2474ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2475IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2476ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2477FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2478DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2479OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2480HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2481LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2482OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2483SUCH DAMAGE.
2484
2485-------------------------------------------------------------------
2486
Elliott Hughes261e2232012-08-14 15:04:05 -07002487Copyright (c) 1992, 1993, 1994
2488 The Regents of the University of California. All rights reserved.
2489
2490This code is derived from software contributed to Berkeley by
2491Henry Spencer.
2492
2493Redistribution and use in source and binary forms, with or without
2494modification, are permitted provided that the following conditions
2495are met:
24961. Redistributions of source code must retain the above copyright
2497 notice, this list of conditions and the following disclaimer.
24982. Redistributions in binary form must reproduce the above copyright
2499 notice, this list of conditions and the following disclaimer in the
2500 documentation and/or other materials provided with the distribution.
25013. Neither the name of the University nor the names of its contributors
2502 may be used to endorse or promote products derived from this software
2503 without specific prior written permission.
2504
2505THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2506ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2507IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2508ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2509FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2510DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2511OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2512HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2513LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2514OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2515SUCH DAMAGE.
2516
2517-------------------------------------------------------------------
2518
Elliott Hughescc213f82012-08-14 15:32:42 -07002519Copyright (c) 1992, 1993, 1994 Henry Spencer.
2520
2521This code is derived from software contributed to Berkeley by
2522Henry Spencer.
2523
2524Redistribution and use in source and binary forms, with or without
2525modification, are permitted provided that the following conditions
2526are met:
25271. Redistributions of source code must retain the above copyright
2528 notice, this list of conditions and the following disclaimer.
25292. Redistributions in binary form must reproduce the above copyright
2530 notice, this list of conditions and the following disclaimer in the
2531 documentation and/or other materials provided with the distribution.
25323. All advertising materials mentioning features or use of this software
2533 must display the following acknowledgement:
2534 This product includes software developed by the University of
2535 California, Berkeley and its contributors.
25364. Neither the name of the University nor the names of its contributors
2537 may be used to endorse or promote products derived from this software
2538 without specific prior written permission.
2539
2540THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2541ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2542IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2543ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2544FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2545DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2546OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2547HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2548LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2549OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2550SUCH DAMAGE.
2551
2552-------------------------------------------------------------------
2553
Elliott Hughes261e2232012-08-14 15:04:05 -07002554Copyright (c) 1993
Elliott Hughes261e2232012-08-14 15:04:05 -07002555 The Regents of the University of California. All rights reserved.
2556
2557Redistribution and use in source and binary forms, with or without
2558modification, are permitted provided that the following conditions
2559are met:
25601. Redistributions of source code must retain the above copyright
2561 notice, this list of conditions and the following disclaimer.
25622. Redistributions in binary form must reproduce the above copyright
2563 notice, this list of conditions and the following disclaimer in the
2564 documentation and/or other materials provided with the distribution.
25653. Neither the name of the University nor the names of its contributors
2566 may be used to endorse or promote products derived from this software
2567 without specific prior written permission.
2568
2569THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2570ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2571IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2572ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2573FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2574DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2575OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2576HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2577LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2578OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2579SUCH DAMAGE.
2580
2581-------------------------------------------------------------------
2582
Elliott Hughes261e2232012-08-14 15:04:05 -07002583Copyright (c) 1993 Martin Birgmeier
2584All rights reserved.
2585
2586You may redistribute unmodified or modified versions of this source
2587code provided that the above copyright notice and this and the
2588following conditions are retained.
2589
2590This software is provided ``as is'', and comes with no warranties
2591of any kind. I shall in no event be liable for anything that happens
2592to anyone/anything when using this software.
2593
2594-------------------------------------------------------------------
2595
Elliott Hughes4e54b112014-03-06 15:06:11 -08002596Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com>
Elliott Hughes448080d2013-01-29 16:25:06 -08002597All rights reserved.
2598
Elliott Hughes448080d2013-01-29 16:25:06 -08002599Redistribution and use in source and binary forms, with or without
2600modification, are permitted provided that the following conditions
2601are met:
26021. Redistributions of source code must retain the above copyright
2603 notice, this list of conditions and the following disclaimer.
26042. Redistributions in binary form must reproduce the above copyright
2605 notice, this list of conditions and the following disclaimer in the
2606 documentation and/or other materials provided with the distribution.
Elliott Hughes4e54b112014-03-06 15:06:11 -080026073. The name of the author may not be used to endorse or promote products
2608 derived from this software without specific prior written permission.
Elliott Hughes448080d2013-01-29 16:25:06 -08002609
Elliott Hughes4e54b112014-03-06 15:06:11 -08002610THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
2611IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2612OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2613IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2614SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
2615PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
2616OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
2617WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
2618OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
2619ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Elliott Hughes448080d2013-01-29 16:25:06 -08002620
2621-------------------------------------------------------------------
2622
Elliott Hughes261e2232012-08-14 15:04:05 -07002623Copyright (c) 1996 by Internet Software Consortium.
2624
2625Permission to use, copy, modify, and distribute this software for any
2626purpose with or without fee is hereby granted, provided that the above
2627copyright notice and this permission notice appear in all copies.
2628
2629THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
2630ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
2631OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
2632CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
2633DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
2634PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
2635ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
2636SOFTWARE.
2637
2638-------------------------------------------------------------------
2639
2640Copyright (c) 1996, David Mazieres <dm@uun.org>
2641Copyright (c) 2008, Damien Miller <djm@openbsd.org>
Elliott Hughes15581382014-07-07 15:42:06 -07002642Copyright (c) 2013, Markus Friedl <markus@openbsd.org>
2643
2644Permission to use, copy, modify, and distribute this software for any
2645purpose with or without fee is hereby granted, provided that the above
2646copyright notice and this permission notice appear in all copies.
2647
2648THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2649WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2650MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2651ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2652WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2653ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2654OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2655
2656-------------------------------------------------------------------
2657
2658Copyright (c) 1996-1998, 2008 Theo de Raadt
2659Copyright (c) 1997, 2008-2009 Todd C. Miller
Elliott Hughes261e2232012-08-14 15:04:05 -07002660
2661Permission to use, copy, modify, and distribute this software for any
2662purpose with or without fee is hereby granted, provided that the above
2663copyright notice and this permission notice appear in all copies.
2664
2665THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2666WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2667MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2668ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2669WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2670ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2671OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2672
2673-------------------------------------------------------------------
2674
Elliott Hughes387d4b72012-08-09 15:17:46 -07002675Copyright (c) 1997 Mark Brinicombe
2676Copyright (c) 2010 Android Open Source Project.
2677All rights reserved.
2678
2679Redistribution and use in source and binary forms, with or without
2680modification, are permitted provided that the following conditions
2681are met:
26821. Redistributions of source code must retain the above copyright
2683 notice, this list of conditions and the following disclaimer.
26842. Redistributions in binary form must reproduce the above copyright
2685 notice, this list of conditions and the following disclaimer in the
2686 documentation and/or other materials provided with the distribution.
26873. All advertising materials mentioning features or use of this software
2688 must display the following acknowledgement:
2689 This product includes software developed by Mark Brinicombe
26904. Neither the name of the University nor the names of its contributors
2691 may be used to endorse or promote products derived from this software
2692 without specific prior written permission.
2693
2694THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2695ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2696IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2697ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2698FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2699DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2700OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2701HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2702LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2703OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2704SUCH DAMAGE.
2705
2706-------------------------------------------------------------------
2707
Elliott Hughes261e2232012-08-14 15:04:05 -07002708Copyright (c) 1997 Niklas Hallqvist. All rights reserved.
Elliott Hughes387d4b72012-08-09 15:17:46 -07002709
2710Redistribution and use in source and binary forms, with or without
2711modification, are permitted provided that the following conditions
2712are met:
27131. Redistributions of source code must retain the above copyright
2714 notice, this list of conditions and the following disclaimer.
27152. Redistributions in binary form must reproduce the above copyright
2716 notice, this list of conditions and the following disclaimer in the
2717 documentation and/or other materials provided with the distribution.
2718
Elliott Hughes261e2232012-08-14 15:04:05 -07002719THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
2720IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2721OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2722IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2723INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2724NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2725DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2726THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2727(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2728THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Elliott Hughes387d4b72012-08-09 15:17:46 -07002729
2730-------------------------------------------------------------------
2731
Elliott Hughes261e2232012-08-14 15:04:05 -07002732Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
2733
2734Permission to use, copy, modify, and distribute this software for any
2735purpose with or without fee is hereby granted, provided that the above
2736copyright notice and this permission notice appear in all copies.
2737
2738THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2739WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2740MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2741ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2742WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2743ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2744OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2745
2746-------------------------------------------------------------------
2747
Elliott Hughesbfa582d2014-05-05 14:58:17 -07002748Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
2749All rights reserved.
2750
2751Redistribution and use in source and binary forms, with or without
2752modification, are permitted provided that the following conditions
2753are met:
27541. Redistributions of source code must retain the above copyright
2755 notice, this list of conditions and the following disclaimer.
27562. Redistributions in binary form must reproduce the above copyright
2757 notice, this list of conditions and the following disclaimer in the
2758 documentation and/or other materials provided with the distribution.
27593. The name of the author may not be used to endorse or promote products
2760 derived from this software without specific prior written permission.
2761
2762THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
2763INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
2764AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
2765THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
2766EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
2767PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
2768OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
2769WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
2770OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
2771ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2772
2773-------------------------------------------------------------------
2774
Elliott Hughes261e2232012-08-14 15:04:05 -07002775Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
Elliott Hughes387d4b72012-08-09 15:17:46 -07002776All rights reserved.
2777
Elliott Hughes261e2232012-08-14 15:04:05 -07002778This code was contributed to The NetBSD Foundation by Klaus Klein.
2779
Elliott Hughes387d4b72012-08-09 15:17:46 -07002780Redistribution and use in source and binary forms, with or without
2781modification, are permitted provided that the following conditions
2782are met:
27831. Redistributions of source code must retain the above copyright
2784 notice, this list of conditions and the following disclaimer.
27852. Redistributions in binary form must reproduce the above copyright
2786 notice, this list of conditions and the following disclaimer in the
2787 documentation and/or other materials provided with the distribution.
Elliott Hughes261e2232012-08-14 15:04:05 -070027883. All advertising materials mentioning features or use of this software
2789 must display the following acknowledgement:
2790 This product includes software developed by the NetBSD
2791 Foundation, Inc. and its contributors.
27924. Neither the name of The NetBSD Foundation nor the names of its
2793 contributors may be used to endorse or promote products derived
2794 from this software without specific prior written permission.
2795
2796THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2797``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2798TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2799PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2800BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2801CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2802SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2803INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2804CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2805ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2806POSSIBILITY OF SUCH DAMAGE.
2807
2808-------------------------------------------------------------------
2809
2810Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc.
2811All rights reserved.
2812
2813This code is derived from software contributed to The NetBSD Foundation
2814by Luke Mewburn.
2815
2816Redistribution and use in source and binary forms, with or without
2817modification, are permitted provided that the following conditions
2818are met:
28191. Redistributions of source code must retain the above copyright
2820 notice, this list of conditions and the following disclaimer.
28212. Redistributions in binary form must reproduce the above copyright
2822 notice, this list of conditions and the following disclaimer in the
2823 documentation and/or other materials provided with the distribution.
Elliott Hughes261e2232012-08-14 15:04:05 -07002824
2825THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2826``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2827TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2828PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2829BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2830CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2831SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2832INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2833CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2834ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2835POSSIBILITY OF SUCH DAMAGE.
2836
2837-------------------------------------------------------------------
2838
2839Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc.
2840All rights reserved.
2841
2842This code is derived from software contributed to The NetBSD Foundation
2843by Luke Mewburn; and by Jason R. Thorpe.
2844
2845Redistribution and use in source and binary forms, with or without
2846modification, are permitted provided that the following conditions
2847are met:
28481. Redistributions of source code must retain the above copyright
2849 notice, this list of conditions and the following disclaimer.
28502. Redistributions in binary form must reproduce the above copyright
2851 notice, this list of conditions and the following disclaimer in the
2852 documentation and/or other materials provided with the distribution.
28533. All advertising materials mentioning features or use of this software
2854 must display the following acknowledgement:
2855 This product includes software developed by the NetBSD
2856 Foundation, Inc. and its contributors.
28574. Neither the name of The NetBSD Foundation nor the names of its
2858 contributors may be used to endorse or promote products derived
2859 from this software without specific prior written permission.
2860
2861THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2862``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2863TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2864PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2865BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2866CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2867SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2868INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2869CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2870ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2871POSSIBILITY OF SUCH DAMAGE.
2872
2873-------------------------------------------------------------------
2874
Elliott Hughes261e2232012-08-14 15:04:05 -07002875Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com>
2876
2877Permission to use, copy, modify, and distribute this software for any
2878purpose with or without fee is hereby granted, provided that the above
2879copyright notice and this permission notice appear in all copies.
2880
2881THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2882WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2883MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2884ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2885WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2886ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2887OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2888
2889-------------------------------------------------------------------
2890
2891Copyright (c) 1998 Softweyr LLC. All rights reserved.
2892
2893strtok_r, from Berkeley strtok
2894Oct 13, 1998 by Wes Peters <wes@softweyr.com>
2895
2896Copyright (c) 1988, 1993
2897 The Regents of the University of California. All rights reserved.
2898
2899Redistribution and use in source and binary forms, with or without
2900modification, are permitted provided that the following conditions
2901are met:
29021. Redistributions of source code must retain the above copyright
2903 notices, this list of conditions and the following disclaimer.
29042. Redistributions in binary form must reproduce the above copyright
2905 notices, this list of conditions and the following disclaimer in the
2906 documentation and/or other materials provided with the distribution.
Elliott Hughes2815b1d2013-06-12 16:00:41 -070029073. Neither the name of the University nor the names of its contributors
Elliott Hughes387d4b72012-08-09 15:17:46 -07002908 may be used to endorse or promote products derived from this software
2909 without specific prior written permission.
2910
Elliott Hughes261e2232012-08-14 15:04:05 -07002911THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS
2912``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2913LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
2914PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE
2915REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2916SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
2917TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
2918PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
2919LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
2920NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2921SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2922
2923-------------------------------------------------------------------
2924
2925Copyright (c) 1998 The NetBSD Foundation, Inc.
2926All rights reserved.
2927
2928This code is derived from software contributed to The NetBSD Foundation
2929by Klaus Klein.
2930
2931Redistribution and use in source and binary forms, with or without
2932modification, are permitted provided that the following conditions
2933are met:
29341. Redistributions of source code must retain the above copyright
2935 notice, this list of conditions and the following disclaimer.
29362. Redistributions in binary form must reproduce the above copyright
2937 notice, this list of conditions and the following disclaimer in the
2938 documentation and/or other materials provided with the distribution.
29393. All advertising materials mentioning features or use of this software
2940 must display the following acknowledgement:
2941 This product includes software developed by the NetBSD
2942 Foundation, Inc. and its contributors.
29434. Neither the name of The NetBSD Foundation nor the names of its
2944 contributors may be used to endorse or promote products derived
2945 from this software without specific prior written permission.
2946
2947THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2948``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2949TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2950PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2951BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2952CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2953SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2954INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2955CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2956ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2957POSSIBILITY OF SUCH DAMAGE.
2958
2959-------------------------------------------------------------------
2960
2961Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
Elliott Hughes387d4b72012-08-09 15:17:46 -07002962All rights reserved.
2963
2964Redistribution and use in source and binary forms, with or without
2965modification, are permitted provided that the following conditions
2966are met:
29671. Redistributions of source code must retain the above copyright
2968 notice, this list of conditions and the following disclaimer.
29692. Redistributions in binary form must reproduce the above copyright
2970 notice, this list of conditions and the following disclaimer in the
2971 documentation and/or other materials provided with the distribution.
29723. The name of the author may not be used to endorse or promote products
2973 derived from this software without specific prior written permission.
2974
2975THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
2976INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
2977AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
2978THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
2979EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
2980PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
2981OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
2982WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
2983OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
2984ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2985
2986-------------------------------------------------------------------
2987
Elliott Hughes80775d62016-02-08 17:00:12 -08002988Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com>
2989
2990Permission to use, copy, modify, and distribute this software for any
2991purpose with or without fee is hereby granted, provided that the above
2992copyright notice and this permission notice appear in all copies.
2993
2994THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2995WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2996MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2997ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2998WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2999ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3000OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3001
3002-------------------------------------------------------------------
3003
Elliott Hughes261e2232012-08-14 15:04:05 -07003004Copyright (c) 1999
3005 David E. O'Brien
3006Copyright (c) 1988, 1993
Elliott Hughes387d4b72012-08-09 15:17:46 -07003007 The Regents of the University of California. All rights reserved.
3008
3009Redistribution and use in source and binary forms, with or without
3010modification, are permitted provided that the following conditions
3011are met:
30121. Redistributions of source code must retain the above copyright
3013 notice, this list of conditions and the following disclaimer.
30142. Redistributions in binary form must reproduce the above copyright
3015 notice, this list of conditions and the following disclaimer in the
3016 documentation and/or other materials provided with the distribution.
30173. Neither the name of the University nor the names of its contributors
3018 may be used to endorse or promote products derived from this software
3019 without specific prior written permission.
3020
3021THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
3022ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3023IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3024ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
3025FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3026DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3027OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3028HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3029LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3030OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3031SUCH DAMAGE.
3032
3033-------------------------------------------------------------------
3034
Elliott Hughes261e2232012-08-14 15:04:05 -07003035Copyright (c) 2000 Ben Harris.
3036Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3037All rights reserved.
3038
3039Redistribution and use in source and binary forms, with or without
3040modification, are permitted provided that the following conditions
3041are met:
30421. Redistributions of source code must retain the above copyright
3043 notice, this list of conditions and the following disclaimer.
30442. Redistributions in binary form must reproduce the above copyright
3045 notice, this list of conditions and the following disclaimer in the
3046 documentation and/or other materials provided with the distribution.
30473. Neither the name of the project nor the names of its contributors
3048 may be used to endorse or promote products derived from this software
3049 without specific prior written permission.
3050
3051THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
3052ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3053IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3054ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
3055FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3056DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3057OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3058HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3059LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3060OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3061SUCH DAMAGE.
3062
3063-------------------------------------------------------------------
3064
3065Copyright (c) 2000 The NetBSD Foundation, Inc.
3066All rights reserved.
3067
3068This code is derived from software contributed to The NetBSD Foundation
3069by Atsushi Onoe.
3070
3071Redistribution and use in source and binary forms, with or without
3072modification, are permitted provided that the following conditions
3073are met:
30741. Redistributions of source code must retain the above copyright
3075 notice, this list of conditions and the following disclaimer.
30762. Redistributions in binary form must reproduce the above copyright
3077 notice, this list of conditions and the following disclaimer in the
3078 documentation and/or other materials provided with the distribution.
30793. All advertising materials mentioning features or use of this software
3080 must display the following acknowledgement:
3081 This product includes software developed by the NetBSD
3082 Foundation, Inc. and its contributors.
30834. Neither the name of The NetBSD Foundation nor the names of its
3084 contributors may be used to endorse or promote products derived
3085 from this software without specific prior written permission.
3086
3087THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
3088``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
3089TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3090PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
3091BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
3092CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3093SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3094INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3095CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3096ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3097POSSIBILITY OF SUCH DAMAGE.
3098
3099-------------------------------------------------------------------
3100
3101Copyright (c) 2000 The NetBSD Foundation, Inc.
3102All rights reserved.
3103
3104This code is derived from software contributed to The NetBSD Foundation
3105by Dieter Baron and Thomas Klausner.
3106
3107Redistribution and use in source and binary forms, with or without
3108modification, are permitted provided that the following conditions
3109are met:
31101. Redistributions of source code must retain the above copyright
3111 notice, this list of conditions and the following disclaimer.
31122. Redistributions in binary form must reproduce the above copyright
3113 notice, this list of conditions and the following disclaimer in the
3114 documentation and/or other materials provided with the distribution.
Elliott Hughes261e2232012-08-14 15:04:05 -07003115
3116THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
3117``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
3118TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3119PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
3120BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
3121CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3122SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3123INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3124CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3125ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3126POSSIBILITY OF SUCH DAMAGE.
3127
3128-------------------------------------------------------------------
3129
Elliott Hughes54a74942014-01-03 16:40:37 -08003130Copyright (c) 2001 Wasabi Systems, Inc.
3131All rights reserved.
3132
3133Written by Frank van der Linden for Wasabi Systems, Inc.
3134
3135Redistribution and use in source and binary forms, with or without
3136modification, are permitted provided that the following conditions
3137are met:
31381. Redistributions of source code must retain the above copyright
3139 notice, this list of conditions and the following disclaimer.
31402. Redistributions in binary form must reproduce the above copyright
3141 notice, this list of conditions and the following disclaimer in the
3142 documentation and/or other materials provided with the distribution.
31433. All advertising materials mentioning features or use of this software
3144 must display the following acknowledgement:
3145 This product includes software developed for the NetBSD Project by
3146 Wasabi Systems, Inc.
31474. The name of Wasabi Systems, Inc. may not be used to endorse
3148 or promote products derived from this software without specific prior
3149 written permission.
3150
3151THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
3152ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
3153TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3154PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
3155BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
3156CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3157SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3158INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3159CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3160ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3161POSSIBILITY OF SUCH DAMAGE.
3162
3163-------------------------------------------------------------------
3164
Elliott Hughes261e2232012-08-14 15:04:05 -07003165Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com)
3166
3167Redistribution and use in source and binary forms, with or without
3168modification, are permitted provided that the following conditions
3169are met:
31701. Redistributions of source code must retain the above copyright
3171 notice, this list of conditions and the following disclaimer.
31722. Redistributions in binary form must reproduce the above copyright
3173 notice, this list of conditions and the following disclaimer in the
3174 documentation and/or other materials provided with the distribution.
3175
3176THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
3177OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
3178WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3179ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
3180DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3181DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3182OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3183HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3184LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3185OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3186SUCH DAMAGE.
3187
3188-------------------------------------------------------------------
3189
3190Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com)
3191
3192Redistribution and use in source and binary forms, with or without
3193modification, are permitted provided that the following conditions
3194are met:
31951. Redistributions of source code must retain the above copyright
3196 notice, this list of conditions and the following disclaimer.
31972. Redistributions in binary form must reproduce the above copyright
3198 notice, this list of conditions and the following disclaimer in the
3199 documentation and/or other materials provided with the distribution.
32003. Neither the name of Opsycon AB nor the names of its contributors
3201 may be used to endorse or promote products derived from this software
3202 without specific prior written permission.
3203
3204THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
3205OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
3206WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3207ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
3208DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3209DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3210OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3211HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3212LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3213OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3214SUCH DAMAGE.
3215
3216-------------------------------------------------------------------
3217
3218Copyright (c) 2002 Daniel Hartmeier
3219All rights reserved.
3220
3221Redistribution and use in source and binary forms, with or without
3222modification, are permitted provided that the following conditions
3223are met:
3224
3225 - Redistributions of source code must retain the above copyright
3226 notice, this list of conditions and the following disclaimer.
3227 - Redistributions in binary form must reproduce the above
3228 copyright notice, this list of conditions and the following
3229 disclaimer in the documentation and/or other materials provided
3230 with the distribution.
3231
3232THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
3233"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
3234LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
3235FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
3236COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
3237INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
3238BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
3239LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
3240CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3241LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3242ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3243POSSIBILITY OF SUCH DAMAGE.
3244
3245-------------------------------------------------------------------
3246
3247Copyright (c) 2002 Marc Espie.
3248
3249Redistribution and use in source and binary forms, with or without
3250modification, are permitted provided that the following conditions
3251are met:
32521. Redistributions of source code must retain the above copyright
3253 notice, this list of conditions and the following disclaimer.
32542. Redistributions in binary form must reproduce the above copyright
3255 notice, this list of conditions and the following disclaimer in the
3256 documentation and/or other materials provided with the distribution.
3257
3258THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS
3259``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
3260LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
3261A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBSD
3262PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3263SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
3264LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3265DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3266THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3267(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3268OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3269
3270-------------------------------------------------------------------
3271
Elliott Hughes261e2232012-08-14 15:04:05 -07003272Copyright (c) 2002 The NetBSD Foundation, Inc.
3273All rights reserved.
3274
3275This code is derived from software contributed to The NetBSD Foundation
3276by Christos Zoulas.
3277
3278Redistribution and use in source and binary forms, with or without
3279modification, are permitted provided that the following conditions
3280are met:
32811. Redistributions of source code must retain the above copyright
3282 notice, this list of conditions and the following disclaimer.
32832. Redistributions in binary form must reproduce the above copyright
3284 notice, this list of conditions and the following disclaimer in the
3285 documentation and/or other materials provided with the distribution.
Elliott Hughes261e2232012-08-14 15:04:05 -07003286
3287THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
3288``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
3289TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3290PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
3291BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
3292CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3293SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3294INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3295CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3296ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3297POSSIBILITY OF SUCH DAMAGE.
3298
3299-------------------------------------------------------------------
3300
3301Copyright (c) 2002 Tim J. Robbins
3302All rights reserved.
3303
3304Redistribution and use in source and binary forms, with or without
3305modification, are permitted provided that the following conditions
3306are met:
33071. Redistributions of source code must retain the above copyright
3308 notice, this list of conditions and the following disclaimer.
33092. Redistributions in binary form must reproduce the above copyright
3310 notice, this list of conditions and the following disclaimer in the
3311 documentation and/or other materials provided with the distribution.
3312
3313THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3314ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3315IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3316ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3317FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3318DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3319OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3320HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3321LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3322OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3323SUCH DAMAGE.
3324
3325-------------------------------------------------------------------
3326
Elliott Hughesbfa582d2014-05-05 14:58:17 -07003327Copyright (c) 2002 Tim J. Robbins.
3328All rights reserved.
3329
3330Redistribution and use in source and binary forms, with or without
3331modification, are permitted provided that the following conditions
3332are met:
33331. Redistributions of source code must retain the above copyright
3334 notice, this list of conditions and the following disclaimer.
33352. Redistributions in binary form must reproduce the above copyright
3336 notice, this list of conditions and the following disclaimer in the
3337 documentation and/or other materials provided with the distribution.
3338
3339THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3340ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3341IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3342ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3343FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3344DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3345OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3346HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3347LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3348OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3349SUCH DAMAGE.
3350
3351-------------------------------------------------------------------
3352
Elliott Hughes261e2232012-08-14 15:04:05 -07003353Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com>
3354
3355Permission to use, copy, modify, and distribute this software for any
3356purpose with or without fee is hereby granted, provided that the above
3357copyright notice and this permission notice appear in all copies.
3358
3359THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3360WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3361MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3362ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3363WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3364ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3365OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3366
3367Sponsored in part by the Defense Advanced Research Projects
3368Agency (DARPA) and Air Force Research Laboratory, Air Force
3369Materiel Command, USAF, under agreement number F39502-99-1-0512.
3370
3371-------------------------------------------------------------------
3372
Elliott Hughesbfa582d2014-05-05 14:58:17 -07003373Copyright (c) 2002, 2003 Tim J. Robbins.
3374All rights reserved.
3375
3376Redistribution and use in source and binary forms, with or without
3377modification, are permitted provided that the following conditions
3378are met:
33791. Redistributions of source code must retain the above copyright
3380 notice, this list of conditions and the following disclaimer.
33812. Redistributions in binary form must reproduce the above copyright
3382 notice, this list of conditions and the following disclaimer in the
3383 documentation and/or other materials provided with the distribution.
3384
3385THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3386ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3387IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3388ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3389FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3390DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3391OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3392HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3393LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3394OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3395SUCH DAMAGE.
3396
3397-------------------------------------------------------------------
3398
3399Copyright (c) 2002-2004 Tim J. Robbins
3400All rights reserved.
3401
3402Redistribution and use in source and binary forms, with or without
3403modification, are permitted provided that the following conditions
3404are met:
34051. Redistributions of source code must retain the above copyright
3406 notice, this list of conditions and the following disclaimer.
34072. Redistributions in binary form must reproduce the above copyright
3408 notice, this list of conditions and the following disclaimer in the
3409 documentation and/or other materials provided with the distribution.
3410
3411THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3412ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3413IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3414ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3415FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3416DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3417OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3418HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3419LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3420OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3421SUCH DAMAGE.
3422
3423-------------------------------------------------------------------
3424
3425Copyright (c) 2002-2004 Tim J. Robbins.
3426All rights reserved.
3427
3428Redistribution and use in source and binary forms, with or without
3429modification, are permitted provided that the following conditions
3430are met:
34311. Redistributions of source code must retain the above copyright
3432 notice, this list of conditions and the following disclaimer.
34332. Redistributions in binary form must reproduce the above copyright
3434 notice, this list of conditions and the following disclaimer in the
3435 documentation and/or other materials provided with the distribution.
3436
3437THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3438ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3439IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3440ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3441FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3442DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3443OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3444HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3445LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3446OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3447SUCH DAMAGE.
3448
3449-------------------------------------------------------------------
3450
Elliott Hughes261e2232012-08-14 15:04:05 -07003451Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru>
3452
3453Redistribution and use in source and binary forms, with or without
3454modification, are permitted provided that the following conditions
3455are met:
34561. Redistributions of source code must retain the above copyright
3457 notice, this list of conditions and the following disclaimer.
34582. Redistributions in binary form must reproduce the above copyright
3459 notice, this list of conditions and the following disclaimer in the
3460 documentation and/or other materials provided with the distribution.
34613. The names of the authors may not be used to endorse or promote
3462 products derived from this software without specific prior written
3463 permission.
3464
3465THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3466ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3467IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3468ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3469FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3470DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3471OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3472HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3473LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3474OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3475SUCH DAMAGE.
3476
3477-------------------------------------------------------------------
3478
Elliott Hughesacbe3222014-04-16 17:01:12 -07003479Copyright (c) 2003 David Schultz <das@FreeBSD.ORG>
3480All rights reserved.
3481
3482Redistribution and use in source and binary forms, with or without
3483modification, are permitted provided that the following conditions
3484are met:
34851. Redistributions of source code must retain the above copyright
3486 notice, this list of conditions and the following disclaimer.
34872. Redistributions in binary form must reproduce the above copyright
3488 notice, this list of conditions and the following disclaimer in the
3489 documentation and/or other materials provided with the distribution.
3490
3491THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3492ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3493IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3494ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3495FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3496DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3497OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3498HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3499LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3500OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3501SUCH DAMAGE.
3502
3503-------------------------------------------------------------------
3504
Elliott Hughes261e2232012-08-14 15:04:05 -07003505Copyright (c) 2003 Networks Associates Technology, Inc.
3506All rights reserved.
3507
3508Portions of this software were developed for the FreeBSD Project by
3509Jacques A. Vidrine, Safeport Network Services, and Network
3510Associates Laboratories, the Security Research Division of Network
3511Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035
3512("CBOSS"), as part of the DARPA CHATS research program.
3513
3514Redistribution and use in source and binary forms, with or without
3515modification, are permitted provided that the following conditions
3516are met:
35171. Redistributions of source code must retain the above copyright
3518 notice, this list of conditions and the following disclaimer.
35192. Redistributions in binary form must reproduce the above copyright
3520 notice, this list of conditions and the following disclaimer in the
3521 documentation and/or other materials provided with the distribution.
3522
3523THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3524ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3525IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3526ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3527FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3528DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3529OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3530HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3531LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3532OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3533SUCH DAMAGE.
3534
3535-------------------------------------------------------------------
3536
Nick Kralevich5e58ea02012-09-12 13:21:25 -07003537Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com>
3538
3539Permission to use, copy, modify, and distribute this software for any
3540purpose with or without fee is hereby granted, provided that the above
3541copyright notice and this permission notice appear in all copies.
3542
3543THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3544WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3545MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3546ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3547WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3548ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3549OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3550
3551Sponsored in part by the Defense Advanced Research Projects
3552Agency (DARPA) and Air Force Research Laboratory, Air Force
3553Materiel Command, USAF, under agreement number F39502-99-1-0512.
3554
3555-------------------------------------------------------------------
3556
Elliott Hughes261e2232012-08-14 15:04:05 -07003557Copyright (c) 2004 The NetBSD Foundation, Inc.
3558All rights reserved.
3559
3560This code is derived from software contributed to The NetBSD Foundation
3561by Christos Zoulas.
3562
3563Redistribution and use in source and binary forms, with or without
3564modification, are permitted provided that the following conditions
3565are met:
35661. Redistributions of source code must retain the above copyright
3567 notice, this list of conditions and the following disclaimer.
35682. Redistributions in binary form must reproduce the above copyright
3569 notice, this list of conditions and the following disclaimer in the
3570 documentation and/or other materials provided with the distribution.
35713. All advertising materials mentioning features or use of this software
3572 must display the following acknowledgement:
3573 This product includes software developed by the NetBSD
3574 Foundation, Inc. and its contributors.
35754. Neither the name of The NetBSD Foundation nor the names of its
3576 contributors may be used to endorse or promote products derived
3577 from this software without specific prior written permission.
3578
3579THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
3580``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
3581TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3582PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
3583BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
3584CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
3585SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
3586INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3587CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3588ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3589POSSIBILITY OF SUCH DAMAGE.
3590
3591-------------------------------------------------------------------
3592
3593Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3594Copyright (c) 1995,1999 by Internet Software Consortium.
3595
3596Permission to use, copy, modify, and distribute this software for any
3597purpose with or without fee is hereby granted, provided that the above
3598copyright notice and this permission notice appear in all copies.
3599
3600THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
3601WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3602MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
3603ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3604WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3605ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
3606OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3607
3608-------------------------------------------------------------------
3609
3610Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3611Copyright (c) 1995-1999 by Internet Software Consortium
3612
3613Permission to use, copy, modify, and distribute this software for any
3614purpose with or without fee is hereby granted, provided that the above
3615copyright notice and this permission notice appear in all copies.
3616
3617THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
3618WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3619MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
3620ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3621WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3622ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
3623OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3624
3625-------------------------------------------------------------------
3626
3627Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3628Copyright (c) 1995-1999 by Internet Software Consortium.
3629
3630Permission to use, copy, modify, and distribute this software for any
3631purpose with or without fee is hereby granted, provided that the above
3632copyright notice and this permission notice appear in all copies.
3633
3634THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
3635WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3636MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
3637ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3638WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3639ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
3640OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3641
3642-------------------------------------------------------------------
3643
3644Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3645Copyright (c) 1996,1999 by Internet Software Consortium.
3646
3647Permission to use, copy, modify, and distribute this software for any
3648purpose with or without fee is hereby granted, provided that the above
3649copyright notice and this permission notice appear in all copies.
3650
3651THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
3652WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3653MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
3654ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3655WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3656ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
3657OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3658
3659-------------------------------------------------------------------
3660
3661Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3662Copyright (c) 1996-1999 by Internet Software Consortium
3663
3664Permission to use, copy, modify, and distribute this software for any
3665purpose with or without fee is hereby granted, provided that the above
3666copyright notice and this permission notice appear in all copies.
3667
3668THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
3669WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3670MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
3671ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3672WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3673ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
3674OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3675
3676-------------------------------------------------------------------
3677
3678Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3679Copyright (c) 1996-1999 by Internet Software Consortium.
3680
3681Permission to use, copy, modify, and distribute this software for any
3682purpose with or without fee is hereby granted, provided that the above
3683copyright notice and this permission notice appear in all copies.
3684
3685THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
3686WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3687MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
3688ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3689WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3690ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
3691OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3692
3693-------------------------------------------------------------------
3694
3695Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3696Copyright (c) 1997,1999 by Internet Software Consortium.
3697
3698Permission to use, copy, modify, and distribute this software for any
3699purpose with or without fee is hereby granted, provided that the above
3700copyright notice and this permission notice appear in all copies.
3701
3702THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
3703WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3704MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
3705ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3706WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3707ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
3708OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3709
3710-------------------------------------------------------------------
3711
3712Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
Elliott Hughes261e2232012-08-14 15:04:05 -07003713Copyright (c) 1999 by Internet Software Consortium.
3714
3715Permission to use, copy, modify, and distribute this software for any
3716purpose with or without fee is hereby granted, provided that the above
3717copyright notice and this permission notice appear in all copies.
3718
3719THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
3720WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3721MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
3722ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3723WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3724ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
3725OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3726
3727-------------------------------------------------------------------
3728
3729Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3730Portions Copyright (c) 1996-1999 by Internet Software Consortium.
3731
3732Permission to use, copy, modify, and distribute this software for any
3733purpose with or without fee is hereby granted, provided that the above
3734copyright notice and this permission notice appear in all copies.
3735
3736THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
3737WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3738MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
3739ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3740WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3741ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
3742OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3743
3744-------------------------------------------------------------------
3745
Elliott Hughesacbe3222014-04-16 17:01:12 -07003746Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG>
3747All rights reserved.
3748
3749Redistribution and use in source and binary forms, with or without
3750modification, are permitted provided that the following conditions
3751are met:
37521. Redistributions of source code must retain the above copyright
3753 notice, this list of conditions and the following disclaimer.
37542. Redistributions in binary form must reproduce the above copyright
3755 notice, this list of conditions and the following disclaimer in the
3756 documentation and/or other materials provided with the distribution.
3757
3758THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3759ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3760IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3761ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3762FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3763DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3764OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3765HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3766LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3767OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3768SUCH DAMAGE.
3769
3770-------------------------------------------------------------------
3771
Elliott Hughes261e2232012-08-14 15:04:05 -07003772Copyright (c) 2005 Tim J. Robbins.
3773All rights reserved.
3774
3775Redistribution and use in source and binary forms, with or without
3776modification, are permitted provided that the following conditions
3777are met:
37781. Redistributions of source code must retain the above copyright
3779 notice, this list of conditions and the following disclaimer.
37802. Redistributions in binary form must reproduce the above copyright
3781 notice, this list of conditions and the following disclaimer in the
3782 documentation and/or other materials provided with the distribution.
3783
3784THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3785ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3786IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3787ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3788FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3789DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3790OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3791HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3792LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3793OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3794SUCH DAMAGE.
3795
3796-------------------------------------------------------------------
3797
Elliott Hughes448080d2013-01-29 16:25:06 -08003798Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC")
3799Copyright (c) 1995-1999 by Internet Software Consortium
3800
3801Permission to use, copy, modify, and distribute this software for any
3802purpose with or without fee is hereby granted, provided that the above
3803copyright notice and this permission notice appear in all copies.
3804
3805THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
3806WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3807MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
3808ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3809WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3810ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
3811OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3812
3813-------------------------------------------------------------------
3814
Elliott Hughes7e54c762015-05-12 10:09:01 -07003815Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com>
3816
3817Permission to use, copy, modify, and distribute this software for any
3818purpose with or without fee is hereby granted, provided that the above
3819copyright notice and this permission notice appear in all copies.
3820
3821THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3822WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3823MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3824ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3825WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3826ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3827OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3828
3829-------------------------------------------------------------------
3830
Elliott Hughes387d4b72012-08-09 15:17:46 -07003831Copyright (c) 2007-2008 Michael G Schwern
3832
3833This software originally derived from Paul Sheer's pivotal_gmtime_r.c.
3834
3835The MIT License:
3836
3837Permission is hereby granted, free of charge, to any person obtaining a copy
3838of this software and associated documentation files (the "Software"), to deal
3839in the Software without restriction, including without limitation the rights
3840to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3841copies of the Software, and to permit persons to whom the Software is
3842furnished to do so, subject to the following conditions:
3843
3844The above copyright notice and this permission notice shall be included in
3845all copies or substantial portions of the Software.
3846
3847THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3848IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3849FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3850AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3851LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3852OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3853THE SOFTWARE.
3854
Elliott Hughes387d4b72012-08-09 15:17:46 -07003855-------------------------------------------------------------------
3856
Elliott Hughes261e2232012-08-14 15:04:05 -07003857Copyright (c) 2007-2008 Michael G Schwern
Elliott Hughes387d4b72012-08-09 15:17:46 -07003858
Elliott Hughes261e2232012-08-14 15:04:05 -07003859This software originally derived from Paul Sheer's pivotal_gmtime_r.c.
Elliott Hughes387d4b72012-08-09 15:17:46 -07003860
Elliott Hughes261e2232012-08-14 15:04:05 -07003861The MIT License:
3862
3863Permission is hereby granted, free of charge, to any person obtaining a copy
3864of this software and associated documentation files (the "Software"), to deal
3865in the Software without restriction, including without limitation the rights
3866to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3867copies of the Software, and to permit persons to whom the Software is
3868furnished to do so, subject to the following conditions:
3869
3870The above copyright notice and this permission notice shall be included in
3871all copies or substantial portions of the Software.
3872
3873THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3874IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3875FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3876AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3877LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3878OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3879THE SOFTWARE.
3880
3881Origin: http://code.google.com/p/y2038
3882Modified for Bionic by the Android Open Source Project
Elliott Hughes387d4b72012-08-09 15:17:46 -07003883
3884-------------------------------------------------------------------
3885
3886Copyright (c) 2008 Android Open Source Project (query id randomization)
3887Copyright (c) 1985, 1993
3888 The Regents of the University of California. All rights reserved.
3889
3890Redistribution and use in source and binary forms, with or without
3891modification, are permitted provided that the following conditions
3892are met:
38931. Redistributions of source code must retain the above copyright
3894 notice, this list of conditions and the following disclaimer.
38952. Redistributions in binary form must reproduce the above copyright
3896 notice, this list of conditions and the following disclaimer in the
3897 documentation and/or other materials provided with the distribution.
38983. All advertising materials mentioning features or use of this software
3899 must display the following acknowledgement:
3900 This product includes software developed by the University of
3901 California, Berkeley and its contributors.
39024. Neither the name of the University nor the names of its contributors
3903 may be used to endorse or promote products derived from this software
3904 without specific prior written permission.
3905
3906THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
3907ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3908IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3909ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
3910FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3911DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3912OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3913HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3914LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3915OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3916SUCH DAMAGE.
3917
3918-------------------------------------------------------------------
Michael Hopeea8fad12012-07-31 16:18:22 +12003919
Elliott Hughes6b2b5852014-12-18 16:27:30 -08003920Copyright (c) 2008 Otto Moerbeek <otto@drijf.net>
3921
3922Permission to use, copy, modify, and distribute this software for any
3923purpose with or without fee is hereby granted, provided that the above
3924copyright notice and this permission notice appear in all copies.
3925
3926THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3927WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3928MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3929ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3930WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3931ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3932OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3933
3934-------------------------------------------------------------------
3935
Elliott Hughes261e2232012-08-14 15:04:05 -07003936Copyright (c) 2008 Todd C. Miller <millert@openbsd.org>
3937
3938Permission to use, copy, modify, and distribute this software for any
3939purpose with or without fee is hereby granted, provided that the above
3940copyright notice and this permission notice appear in all copies.
3941
3942THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3943WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3944MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3945ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3946WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3947ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3948OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3949
3950-------------------------------------------------------------------
3951
Elliott Hughes3758a242014-07-22 21:24:47 -07003952Copyright (c) 2008, Damien Miller <djm@openbsd.org>
3953
3954Permission to use, copy, modify, and distribute this software for any
3955purpose with or without fee is hereby granted, provided that the above
3956copyright notice and this permission notice appear in all copies.
3957
3958THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3959WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3960MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3961ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3962WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3963ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
3964OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3965
3966-------------------------------------------------------------------
3967
Elliott Hughes261e2232012-08-14 15:04:05 -07003968Copyright (c) 2009 David Schultz <das@FreeBSD.org>
3969All rights reserved.
3970
Elliott Hughes15581382014-07-07 15:42:06 -07003971Copyright (c) 2011 The FreeBSD Foundation
3972All rights reserved.
3973Portions of this software were developed by David Chisnall
3974under sponsorship from the FreeBSD Foundation.
3975
3976Redistribution and use in source and binary forms, with or without
3977modification, are permitted provided that the following conditions
3978are met:
39791. Redistributions of source code must retain the above copyright
3980 notice, this list of conditions and the following disclaimer.
39812. Redistributions in binary form must reproduce the above copyright
3982 notice, this list of conditions and the following disclaimer in the
3983 documentation and/or other materials provided with the distribution.
3984
3985THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
3986ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
3987IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
3988ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
3989FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3990DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3991OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3992HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3993LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3994OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3995SUCH DAMAGE.
3996
3997-------------------------------------------------------------------
3998
3999Copyright (c) 2009 David Schultz <das@FreeBSD.org>
4000All rights reserved.
4001
Elliott Hughes261e2232012-08-14 15:04:05 -07004002Redistribution and use in source and binary forms, with or without
4003modification, are permitted provided that the following conditions
4004are met:
40051. Redistributions of source code must retain the above copyright
4006 notice, this list of conditions and the following disclaimer.
40072. Redistributions in binary form must reproduce the above copyright
4008 notice, this list of conditions and the following disclaimer in the
4009 documentation and/or other materials provided with the distribution.
4010
4011THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
4012ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4013IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4014ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4015FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4016DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4017OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4018HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4019LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4020OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4021SUCH DAMAGE.
4022
4023-------------------------------------------------------------------
4024
Irina Tirdeaeac9eb42012-09-08 09:28:30 +03004025Copyright (c) 2009 The NetBSD Foundation, Inc.
4026
4027This code is derived from software contributed to The NetBSD Foundation
4028by Roy Marples.
4029
4030Redistribution and use in source and binary forms, with or without
4031modification, are permitted provided that the following conditions
4032are met:
40331. Redistributions of source code must retain the above copyright
4034 notice, this list of conditions and the following disclaimer.
40352. Redistributions in binary form must reproduce the above copyright
4036 notice, this list of conditions and the following disclaimer in the
4037 documentation and/or other materials provided with the distribution.
4038
4039THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
4040IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
4041OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
4042IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
4043INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
4044NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
4045DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4046THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4047(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
4048THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4049
4050-------------------------------------------------------------------
4051
Elliott Hughes261e2232012-08-14 15:04:05 -07004052Copyright (c) 2010 MIPS Technologies, Inc.
4053
4054All rights reserved.
4055
4056Redistribution and use in source and binary forms, with or without
4057modification, are permitted provided that the following conditions
4058are met:
4059
Elliott Hughes3758a242014-07-22 21:24:47 -07004060 * Redistributions of source code must retain the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -07004061 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -07004062 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -07004063 notice, this list of conditions and the following disclaimer
4064 in the documentation and/or other materials provided with
4065 the distribution.
Elliott Hughes3758a242014-07-22 21:24:47 -07004066 * Neither the name of MIPS Technologies Inc. nor the names of its
Elliott Hughes261e2232012-08-14 15:04:05 -07004067 contributors may be used to endorse or promote products derived
4068 from this software without specific prior written permission.
4069
4070THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4071"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4072LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
4073A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
4074OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4075SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
4076LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
4077DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4078THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4079(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
4080OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4081
4082-------------------------------------------------------------------
4083
Elliott Hughes4e54b112014-03-06 15:06:11 -08004084Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com>
4085
4086Permission to use, copy, modify, and distribute this software for any
4087purpose with or without fee is hereby granted, provided that the above
4088copyright notice and this permission notice appear in all copies.
4089
4090THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
4091WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
4092MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
4093ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
4094WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
4095ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
4096OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
4097
4098-------------------------------------------------------------------
4099
Elliott Hughes54a74942014-01-03 16:40:37 -08004100Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004101All rights reserved.
4102
4103Redistribution and use in source and binary forms, with or without
4104modification, are permitted provided that the following conditions are met:
4105
Elliott Hughes3758a242014-07-22 21:24:47 -07004106 * Redistributions of source code must retain the above copyright notice,
4107 * this list of conditions and the following disclaimer.
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004108
Elliott Hughes3758a242014-07-22 21:24:47 -07004109 * Redistributions in binary form must reproduce the above copyright notice,
4110 * this list of conditions and the following disclaimer in the documentation
4111 * and/or other materials provided with the distribution.
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004112
Elliott Hughes3758a242014-07-22 21:24:47 -07004113 * Neither the name of Intel Corporation nor the names of its contributors
4114 * may be used to endorse or promote products derived from this software
4115 * without specific prior written permission.
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004116
4117THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
4118ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
4119WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4120DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
4121ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
4122(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
4123LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
4124ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4125(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4126SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4127
4128-------------------------------------------------------------------
4129
Elliott Hughes261e2232012-08-14 15:04:05 -07004130Copyright (c) 2010, Intel Corporation
4131All rights reserved.
4132
4133Redistribution and use in source and binary forms, with or without
4134modification, are permitted provided that the following conditions are met:
4135
Elliott Hughes3758a242014-07-22 21:24:47 -07004136 * Redistributions of source code must retain the above copyright notice,
4137 * this list of conditions and the following disclaimer.
Elliott Hughes261e2232012-08-14 15:04:05 -07004138
Elliott Hughes3758a242014-07-22 21:24:47 -07004139 * Redistributions in binary form must reproduce the above copyright notice,
4140 * this list of conditions and the following disclaimer in the documentation
4141 * and/or other materials provided with the distribution.
Elliott Hughes261e2232012-08-14 15:04:05 -07004142
Elliott Hughes3758a242014-07-22 21:24:47 -07004143 * Neither the name of Intel Corporation nor the names of its contributors
4144 * may be used to endorse or promote products derived from this software
4145 * without specific prior written permission.
Elliott Hughes261e2232012-08-14 15:04:05 -07004146
4147THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
4148ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
4149WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4150DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
4151ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
4152(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
4153LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
4154ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4155(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4156SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4157
4158-------------------------------------------------------------------
4159
Elliott Hughesbfa582d2014-05-05 14:58:17 -07004160Copyright (c) 2011 David Chisnall
4161All rights reserved.
4162
4163Redistribution and use in source and binary forms, with or without
4164modification, are permitted provided that the following conditions
4165are met:
41661. Redistributions of source code must retain the above copyright
4167 notice, this list of conditions and the following disclaimer.
41682. Redistributions in binary form must reproduce the above copyright
4169 notice, this list of conditions and the following disclaimer in the
4170 documentation and/or other materials provided with the distribution.
4171
4172THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
4173ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4174IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4175ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4176FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4177DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4178OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4179HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4180LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4181OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4182SUCH DAMAGE.
4183
4184-------------------------------------------------------------------
4185
Elliott Hughes15581382014-07-07 15:42:06 -07004186Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org>
4187 David Chisnall <theraven@FreeBSD.org>
4188All rights reserved.
4189
4190Redistribution and use in source and binary forms, with or without
4191modification, are permitted provided that the following conditions
4192are met:
41931. Redistributions of source code must retain the above copyright
4194 notice, this list of conditions and the following disclaimer.
41952. Redistributions in binary form must reproduce the above copyright
4196 notice, this list of conditions and the following disclaimer in the
4197 documentation and/or other materials provided with the distribution.
4198
4199THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
4200ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4201IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4202ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4203FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4204DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4205OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4206HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4207LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4208OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4209SUCH DAMAGE.
4210
4211-------------------------------------------------------------------
4212
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004213Copyright (c) 2011 Intel Corporation
4214All rights reserved.
4215
4216Redistribution and use in source and binary forms, with or without
4217modification, are permitted provided that the following conditions are met:
4218
Elliott Hughes3758a242014-07-22 21:24:47 -07004219 * Redistributions of source code must retain the above copyright notice,
4220 * this list of conditions and the following disclaimer.
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004221
Elliott Hughes3758a242014-07-22 21:24:47 -07004222 * Redistributions in binary form must reproduce the above copyright notice,
4223 * this list of conditions and the following disclaimer in the documentation
4224 * and/or other materials provided with the distribution.
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004225
Elliott Hughes3758a242014-07-22 21:24:47 -07004226 * Neither the name of Intel Corporation nor the names of its contributors
4227 * may be used to endorse or promote products derived from this software
4228 * without specific prior written permission.
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004229
4230THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
4231ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
4232WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4233DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
4234ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
4235(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
4236LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
4237ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4238(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4239SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4240
4241-------------------------------------------------------------------
4242
Elliott Hughes5c2264a2014-09-13 09:42:41 -07004243Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org>
4244
4245Permission to use, copy, modify, and distribute this software for any
4246purpose with or without fee is hereby granted, provided that the above
4247copyright notice and this permission notice appear in all copies.
4248
4249THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
4250WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
4251MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
4252ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
4253WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
4254ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
4255OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
4256
4257-------------------------------------------------------------------
4258
4259Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org>
4260Copyright (c) 2009 Ted Unangst
4261
4262Permission to use, copy, modify, and distribute this software for any
4263purpose with or without fee is hereby granted, provided that the above
4264copyright notice and this permission notice appear in all copies.
4265
4266THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
4267WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
4268MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
4269ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
4270WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
4271ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
4272OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
4273
4274-------------------------------------------------------------------
4275
Elliott Hughes261e2232012-08-14 15:04:05 -07004276Copyright (c) 2011 The Android Open Source Project
4277Copyright (c) 2008 ARM Ltd
4278All rights reserved.
4279
4280Redistribution and use in source and binary forms, with or without
4281modification, are permitted provided that the following conditions
4282are met:
42831. Redistributions of source code must retain the above copyright
4284 notice, this list of conditions and the following disclaimer.
42852. Redistributions in binary form must reproduce the above copyright
4286 notice, this list of conditions and the following disclaimer in the
4287 documentation and/or other materials provided with the distribution.
42883. The name of the company may not be used to endorse or promote
4289 products derived from this software without specific prior written
4290 permission.
4291
4292THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED
4293WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
4294MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
4295IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4296SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
4297TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
4298PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
4299LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
4300NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4301SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4302
4303-------------------------------------------------------------------
4304
Elliott Hughes54a74942014-01-03 16:40:37 -08004305Copyright (c) 2011, 2012, 2013 Intel Corporation
4306All rights reserved.
4307
4308Redistribution and use in source and binary forms, with or without
4309modification, are permitted provided that the following conditions are met:
4310
Elliott Hughes3758a242014-07-22 21:24:47 -07004311 * Redistributions of source code must retain the above copyright notice,
4312 * this list of conditions and the following disclaimer.
Elliott Hughes54a74942014-01-03 16:40:37 -08004313
Elliott Hughes3758a242014-07-22 21:24:47 -07004314 * Redistributions in binary form must reproduce the above copyright notice,
4315 * this list of conditions and the following disclaimer in the documentation
4316 * and/or other materials provided with the distribution.
Elliott Hughes54a74942014-01-03 16:40:37 -08004317
Elliott Hughes3758a242014-07-22 21:24:47 -07004318 * Neither the name of Intel Corporation nor the names of its contributors
4319 * may be used to endorse or promote products derived from this software
4320 * without specific prior written permission.
Elliott Hughes54a74942014-01-03 16:40:37 -08004321
4322THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
4323ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
4324WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4325DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
4326ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
4327(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
4328LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
4329ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4330(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4331SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4332
4333-------------------------------------------------------------------
4334
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004335Copyright (c) 2011, Intel Corporation
4336All rights reserved.
4337
4338Redistribution and use in source and binary forms, with or without
4339modification, are permitted provided that the following conditions are met:
4340
Elliott Hughes3758a242014-07-22 21:24:47 -07004341 * Redistributions of source code must retain the above copyright notice,
4342 * this list of conditions and the following disclaimer.
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004343
Elliott Hughes3758a242014-07-22 21:24:47 -07004344 * Redistributions in binary form must reproduce the above copyright notice,
4345 * this list of conditions and the following disclaimer in the documentation
4346 * and/or other materials provided with the distribution.
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004347
Elliott Hughes3758a242014-07-22 21:24:47 -07004348 * Neither the name of Intel Corporation nor the names of its contributors
4349 * may be used to endorse or promote products derived from this software
4350 * without specific prior written permission.
Elliott Hughes2815b1d2013-06-12 16:00:41 -07004351
4352THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
4353ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
4354WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4355DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
4356ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
4357(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
4358LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
4359ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4360(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4361SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4362
4363-------------------------------------------------------------------
4364
Elliott Hughes261e2232012-08-14 15:04:05 -07004365Copyright (c) 2011, VMware, Inc.
4366All rights reserved.
4367
4368Redistribution and use in source and binary forms, with or without
4369modification, are permitted provided that the following conditions are met:
Elliott Hughes3758a242014-07-22 21:24:47 -07004370 * Redistributions of source code must retain the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -07004371 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -07004372 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes261e2232012-08-14 15:04:05 -07004373 notice, this list of conditions and the following disclaimer in the
4374 documentation and/or other materials provided with the distribution.
Elliott Hughes3758a242014-07-22 21:24:47 -07004375 * Neither the name of the VMware, Inc. nor the names of its contributors
Elliott Hughes261e2232012-08-14 15:04:05 -07004376 may be used to endorse or promote products derived from this software
4377 without specific prior written permission.
4378
4379THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
4380AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4381IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4382ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR
4383ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
4384(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
4385LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
4386ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4387(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
4388THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4389
4390-------------------------------------------------------------------
4391
Elliott Hughes4e54b112014-03-06 15:06:11 -08004392Copyright (c) 2012, Linaro Limited
4393 All rights reserved.
4394
4395 Redistribution and use in source and binary forms, with or without
4396 modification, are permitted provided that the following conditions are met:
Elliott Hughes3758a242014-07-22 21:24:47 -07004397 * Redistributions of source code must retain the above copyright
Elliott Hughes4e54b112014-03-06 15:06:11 -08004398 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -07004399 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes4e54b112014-03-06 15:06:11 -08004400 notice, this list of conditions and the following disclaimer in the
4401 documentation and/or other materials provided with the distribution.
Elliott Hughes3758a242014-07-22 21:24:47 -07004402 * Neither the name of the Linaro nor the
Elliott Hughes4e54b112014-03-06 15:06:11 -08004403 names of its contributors may be used to endorse or promote products
4404 derived from this software without specific prior written permission.
4405
4406 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4407 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4408 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
4409 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
4410 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4411 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
4412 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
4413 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4414 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4415 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
4416 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4417
4418-------------------------------------------------------------------
4419
Elliott Hughes15581382014-07-07 15:42:06 -07004420Copyright (c) 2012, Linaro Limited
4421 All rights reserved.
4422 Copyright (c) 2014, NVIDIA Corporation. All rights reserved.
4423
4424 Redistribution and use in source and binary forms, with or without
4425 modification, are permitted provided that the following conditions are met:
Elliott Hughes3758a242014-07-22 21:24:47 -07004426 * Redistributions of source code must retain the above copyright
Elliott Hughes15581382014-07-07 15:42:06 -07004427 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -07004428 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes15581382014-07-07 15:42:06 -07004429 notice, this list of conditions and the following disclaimer in the
4430 documentation and/or other materials provided with the distribution.
Elliott Hughes3758a242014-07-22 21:24:47 -07004431 * Neither the name of the Linaro nor the
Elliott Hughes15581382014-07-07 15:42:06 -07004432 names of its contributors may be used to endorse or promote products
4433 derived from this software without specific prior written permission.
4434
4435 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4436 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4437 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
4438 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
4439 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4440 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
4441 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
4442 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4443 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4444 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
4445 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4446
4447-------------------------------------------------------------------
4448
Elliott Hughes44ead712015-08-28 20:23:52 -07004449Copyright (c) 2012-2015
4450 MIPS Technologies, Inc., California.
4451
4452Redistribution and use in source and binary forms, with or without
4453modification, are permitted provided that the following conditions
4454are met:
44551. Redistributions of source code must retain the above copyright
4456 notice, this list of conditions and the following disclaimer.
44572. Redistributions in binary form must reproduce the above copyright
4458 notice, this list of conditions and the following disclaimer in the
4459 documentation and/or other materials provided with the distribution.
44603. Neither the name of the MIPS Technologies, Inc., nor the names of its
4461 contributors may be used to endorse or promote products derived from
4462 this software without specific prior written permission.
4463
4464THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND
4465ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4466IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4467ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE
4468FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4469DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4470OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4471HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4472LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4473OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4474SUCH DAMAGE.
4475
4476-------------------------------------------------------------------
4477
4478Copyright (c) 2013
4479 MIPS Technologies, Inc., California.
4480
4481Redistribution and use in source and binary forms, with or without
4482modification, are permitted provided that the following conditions
4483are met:
44841. Redistributions of source code must retain the above copyright
4485 notice, this list of conditions and the following disclaimer.
44862. Redistributions in binary form must reproduce the above copyright
4487 notice, this list of conditions and the following disclaimer in the
4488 documentation and/or other materials provided with the distribution.
44893. Neither the name of the MIPS Technologies, Inc., nor the names of its
4490 contributors may be used to endorse or promote products derived from
4491 this software without specific prior written permission.
4492
4493THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND
4494ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4495IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4496ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE
4497FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4498DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4499OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4500HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4501LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4502OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4503SUCH DAMAGE.
4504
4505-------------------------------------------------------------------
4506
Elliott Hughes0493a6f2013-03-07 11:48:58 -08004507Copyright (c) 2013 ARM Ltd
4508All rights reserved.
4509
4510Redistribution and use in source and binary forms, with or without
4511modification, are permitted provided that the following conditions
4512are met:
45131. Redistributions of source code must retain the above copyright
4514 notice, this list of conditions and the following disclaimer.
45152. Redistributions in binary form must reproduce the above copyright
4516 notice, this list of conditions and the following disclaimer in the
4517 documentation and/or other materials provided with the distribution.
45183. The name of the company may not be used to endorse or promote
4519 products derived from this software without specific prior written
4520 permission.
4521
4522THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED
4523WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
4524MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
4525IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4526SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
4527TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
4528PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
4529LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
4530NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4531SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4532
4533-------------------------------------------------------------------
4534
Elliott Hughes4e54b112014-03-06 15:06:11 -08004535Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org>
4536
4537Permission to use, copy, modify, and distribute this software for any
4538purpose with or without fee is hereby granted, provided that the above
4539copyright notice and this permission notice appear in all copies.
4540
4541THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
4542WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
4543MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
4544ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
4545WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
4546ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
4547OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
4548
4549-------------------------------------------------------------------
4550
Elliott Hughes6b2b5852014-12-18 16:27:30 -08004551Copyright (c) 2013 The NetBSD Foundation, Inc.
4552All rights reserved.
Will Newton2753e122013-07-03 09:44:30 +01004553
Elliott Hughes6b2b5852014-12-18 16:27:30 -08004554This code is derived from software contributed to The NetBSD Foundation
4555by Christos Zoulas.
Will Newton2753e122013-07-03 09:44:30 +01004556
Elliott Hughes6b2b5852014-12-18 16:27:30 -08004557Redistribution and use in source and binary forms, with or without
4558modification, are permitted provided that the following conditions
4559are met:
45601. Redistributions of source code must retain the above copyright
4561 notice, this list of conditions and the following disclaimer.
45622. Redistributions in binary form must reproduce the above copyright
4563 notice, this list of conditions and the following disclaimer in the
4564 documentation and/or other materials provided with the distribution.
Will Newton2753e122013-07-03 09:44:30 +01004565
Elliott Hughes6b2b5852014-12-18 16:27:30 -08004566THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
4567``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
4568TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
4569PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
4570BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
4571CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
4572SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
4573INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
4574CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
4575ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4576POSSIBILITY OF SUCH DAMAGE.
Will Newton2753e122013-07-03 09:44:30 +01004577
4578-------------------------------------------------------------------
4579
Elliott Hughes44ead712015-08-28 20:23:52 -07004580Copyright (c) 2014
4581 Imagination Technologies Limited.
4582
4583Redistribution and use in source and binary forms, with or without
4584modification, are permitted provided that the following conditions
4585are met:
45861. Redistributions of source code must retain the above copyright
4587 notice, this list of conditions and the following disclaimer.
45882. Redistributions in binary form must reproduce the above copyright
4589 notice, this list of conditions and the following disclaimer in the
4590 documentation and/or other materials provided with the distribution.
45913. Neither the name of the MIPS Technologies, Inc., nor the names of its
4592 contributors may be used to endorse or promote products derived from
4593 this software without specific prior written permission.
4594
4595THIS SOFTWARE IS PROVIDED BY IMAGINATION TECHNOLOGIES LIMITED ``AS IS'' AND
4596ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4597IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4598ARE DISCLAIMED. IN NO EVENT SHALL IMAGINATION TECHNOLOGIES LIMITED BE LIABLE
4599FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4600DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4601OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4602HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4603LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4604OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4605SUCH DAMAGE.
4606
4607-------------------------------------------------------------------
4608
Elliott Hughes3758a242014-07-22 21:24:47 -07004609Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org>
4610Copyright (c) 2014 Bob Beck <beck@obtuse.com>
4611
4612Permission to use, copy, modify, and distribute this software for any
4613purpose with or without fee is hereby granted, provided that the above
4614copyright notice and this permission notice appear in all copies.
4615
4616THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
4617WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
4618MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
4619ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
4620WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
4621ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
4622OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
4623
4624Emulation of getentropy(2) as documented at:
4625http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man2/getentropy.2
4626
4627-------------------------------------------------------------------
4628
Elliott Hughes15581382014-07-07 15:42:06 -07004629Copyright (c) 2014, Intel Corporation
4630All rights reserved.
4631
4632Redistribution and use in source and binary forms, with or without
4633modification, are permitted provided that the following conditions are met:
4634
Elliott Hughes3758a242014-07-22 21:24:47 -07004635 * Redistributions of source code must retain the above copyright notice,
4636 * this list of conditions and the following disclaimer.
Elliott Hughes15581382014-07-07 15:42:06 -07004637
Elliott Hughes3758a242014-07-22 21:24:47 -07004638 * Redistributions in binary form must reproduce the above copyright notice,
4639 * this list of conditions and the following disclaimer in the documentation
4640 * and/or other materials provided with the distribution.
Elliott Hughes15581382014-07-07 15:42:06 -07004641
Elliott Hughes3758a242014-07-22 21:24:47 -07004642 * Neither the name of Intel Corporation nor the names of its contributors
4643 * may be used to endorse or promote products derived from this software
4644 * without specific prior written permission.
Elliott Hughes15581382014-07-07 15:42:06 -07004645
4646THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
4647ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
4648WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4649DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
4650ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
4651(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
4652LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
4653ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4654(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4655SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4656
4657-------------------------------------------------------------------
4658
Elliott Hughes4e54b112014-03-06 15:06:11 -08004659Copyright (c) 2014, Linaro Limited
4660 All rights reserved.
4661
4662 Redistribution and use in source and binary forms, with or without
4663 modification, are permitted provided that the following conditions are met:
Elliott Hughes3758a242014-07-22 21:24:47 -07004664 * Redistributions of source code must retain the above copyright
Elliott Hughes4e54b112014-03-06 15:06:11 -08004665 notice, this list of conditions and the following disclaimer.
Elliott Hughes3758a242014-07-22 21:24:47 -07004666 * Redistributions in binary form must reproduce the above copyright
Elliott Hughes4e54b112014-03-06 15:06:11 -08004667 notice, this list of conditions and the following disclaimer in the
4668 documentation and/or other materials provided with the distribution.
Elliott Hughes3758a242014-07-22 21:24:47 -07004669 * Neither the name of the Linaro nor the
Elliott Hughes4e54b112014-03-06 15:06:11 -08004670 names of its contributors may be used to endorse or promote products
4671 derived from this software without specific prior written permission.
4672
4673 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4674 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4675 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
4676 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
4677 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4678 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
4679 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
4680 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4681 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4682 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
4683 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4684
4685-------------------------------------------------------------------
4686
Elliott Hughes80775d62016-02-08 17:00:12 -08004687Copyright (c) 2015 Joerg Sonnenberger <joerg@NetBSD.org>.
4688All rights reserved.
4689
4690Redistribution and use in source and binary forms, with or without
4691modification, are permitted provided that the following conditions
4692are met:
4693
46941. Redistributions of source code must retain the above copyright
4695 notice, this list of conditions and the following disclaimer.
46962. Redistributions in binary form must reproduce the above copyright
4697 notice, this list of conditions and the following disclaimer in
4698 the documentation and/or other materials provided with the
4699 distribution.
4700
4701THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4702``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4703LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
4704FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
4705COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
4706INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
4707BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
4708LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
4709AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
4710OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
4711OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4712SUCH DAMAGE.
4713
4714-------------------------------------------------------------------
4715
Elliott Hughes261e2232012-08-14 15:04:05 -07004716Copyright (c)1999 Citrus Project,
4717All rights reserved.
4718
4719Redistribution and use in source and binary forms, with or without
4720modification, are permitted provided that the following conditions
4721are met:
47221. Redistributions of source code must retain the above copyright
4723 notice, this list of conditions and the following disclaimer.
47242. Redistributions in binary form must reproduce the above copyright
4725 notice, this list of conditions and the following disclaimer in the
4726 documentation and/or other materials provided with the distribution.
4727
4728THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
4729ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4730IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4731ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4732FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4733DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4734OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4735HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4736LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4737OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4738SUCH DAMAGE.
4739
4740-------------------------------------------------------------------
4741
Elliott Hughesbfa582d2014-05-05 14:58:17 -07004742Copyright (c)1999, 2000, 2001 Citrus Project,
4743All rights reserved.
4744
4745Redistribution and use in source and binary forms, with or without
4746modification, are permitted provided that the following conditions
4747are met:
47481. Redistributions of source code must retain the above copyright
4749 notice, this list of conditions and the following disclaimer.
47502. Redistributions in binary form must reproduce the above copyright
4751 notice, this list of conditions and the following disclaimer in the
4752 documentation and/or other materials provided with the distribution.
4753
4754THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
4755ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4756IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4757ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4758FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4759DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4760OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4761HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4762LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4763OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4764SUCH DAMAGE.
4765
4766-------------------------------------------------------------------
4767
Elliott Hughes261e2232012-08-14 15:04:05 -07004768Copyright (c)2001 Citrus Project,
4769All rights reserved.
4770
4771Redistribution and use in source and binary forms, with or without
4772modification, are permitted provided that the following conditions
4773are met:
47741. Redistributions of source code must retain the above copyright
4775 notice, this list of conditions and the following disclaimer.
47762. Redistributions in binary form must reproduce the above copyright
4777 notice, this list of conditions and the following disclaimer in the
4778 documentation and/or other materials provided with the distribution.
4779
4780THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
4781ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4782IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4783ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4784FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4785DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4786OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4787HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4788LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4789OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4790SUCH DAMAGE.
4791
4792-------------------------------------------------------------------
4793
Elliott Hughesacbe3222014-04-16 17:01:12 -07004794Copyright (c)2003 Citrus Project,
4795All rights reserved.
4796
4797Redistribution and use in source and binary forms, with or without
4798modification, are permitted provided that the following conditions
4799are met:
48001. Redistributions of source code must retain the above copyright
4801 notice, this list of conditions and the following disclaimer.
48022. Redistributions in binary form must reproduce the above copyright
4803 notice, this list of conditions and the following disclaimer in the
4804 documentation and/or other materials provided with the distribution.
4805
4806THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
4807ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4808IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4809ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4810FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4811DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4812OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4813HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4814LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4815OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4816SUCH DAMAGE.
4817
4818-------------------------------------------------------------------
4819
Elliott Hughes5c2264a2014-09-13 09:42:41 -07004820Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
4821Copyright 2008 Damien Miller <djm@openbsd.org>
4822All rights reserved.
4823
4824Theo de Raadt <deraadt@openbsd.org> came up with the idea of using
4825such a mathematical system to generate more random (yet non-repeating)
4826ids to solve the resolver/named problem. But Niels designed the
4827actual system based on the constraints.
4828
4829Later modified by Damien Miller to wrap the LCG output in a 15-bit
4830permutation generator based on a Luby-Rackoff block cipher. This
4831ensures the output is non-repeating and preserves the MSB twiddle
4832trick, but makes it more resistant to LCG prediction.
4833
4834Redistribution and use in source and binary forms, with or without
4835modification, are permitted provided that the following conditions
4836are met:
48371. Redistributions of source code must retain the above copyright
4838 notice, this list of conditions and the following disclaimer.
48392. Redistributions in binary form must reproduce the above copyright
4840 notice, this list of conditions and the following disclaimer in the
4841 documentation and/or other materials provided with the distribution.
4842
4843THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
4844IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
4845OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
4846IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
4847INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
4848NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
4849DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4850THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4851(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
4852THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4853
4854-------------------------------------------------------------------
4855
Elliott Hughes261e2232012-08-14 15:04:05 -07004856Copyright 2008 Android Open Source Project (source port randomization)
4857Copyright (c) 1985, 1989, 1993
4858 The Regents of the University of California. All rights reserved.
4859
4860Redistribution and use in source and binary forms, with or without
4861modification, are permitted provided that the following conditions
4862are met:
48631. Redistributions of source code must retain the above copyright
4864 notice, this list of conditions and the following disclaimer.
48652. Redistributions in binary form must reproduce the above copyright
4866 notice, this list of conditions and the following disclaimer in the
4867 documentation and/or other materials provided with the distribution.
48683. All advertising materials mentioning features or use of this software
4869 must display the following acknowledgement:
4870 This product includes software developed by the University of
4871 California, Berkeley and its contributors.
48724. Neither the name of the University nor the names of its contributors
4873 may be used to endorse or promote products derived from this software
4874 without specific prior written permission.
4875
4876THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
4877ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4878IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4879ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
4880FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4881DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4882OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4883HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4884LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4885OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4886SUCH DAMAGE.
4887
4888-------------------------------------------------------------------
4889
Calin Juravlec4fbf922014-03-10 11:23:52 +00004890Portions Copyright (C) 2004, 2005, 2008, 2009 Internet Systems Consortium, Inc. ("ISC")
4891Portions Copyright (C) 1996-2003 Internet Software Consortium.
4892
4893Permission to use, copy, modify, and/or distribute this software for any
4894purpose with or without fee is hereby granted, provided that the above
4895copyright notice and this permission notice appear in all copies.
4896
4897THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
4898REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
4899AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
4900INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
4901LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
4902OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
4903PERFORMANCE OF THIS SOFTWARE.
4904
4905-------------------------------------------------------------------
4906
Elliott Hughes261e2232012-08-14 15:04:05 -07004907Portions Copyright (c) 1993 by Digital Equipment Corporation.
4908
4909Permission to use, copy, modify, and distribute this software for any
4910purpose with or without fee is hereby granted, provided that the above
4911copyright notice and this permission notice appear in all copies, and that
4912the name of Digital Equipment Corporation not be used in advertising or
4913publicity pertaining to distribution of the document or software without
4914specific, written prior permission.
4915
4916THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
4917WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
4918OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
4919CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
4920DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
4921PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
4922ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
4923SOFTWARE.
4924
4925-------------------------------------------------------------------
4926
4927Portions Copyright (c) 1995 by International Business Machines, Inc.
4928
4929International Business Machines, Inc. (hereinafter called IBM) grants
4930permission under its copyrights to use, copy, modify, and distribute this
4931Software with or without fee, provided that the above copyright notice and
4932all paragraphs of this notice appear in all copies, and that the name of IBM
4933not be used in connection with the marketing of any product incorporating
4934the Software or modifications thereof, without specific, written prior
4935permission.
4936
4937To the extent it has a right to do so, IBM grants an immunity from suit
4938under its patents, if any, for the use, sale or manufacture of products to
4939the extent that such products are used for performing Domain Name System
4940dynamic updates in TCP/IP networks by means of the Software. No immunity is
4941granted for any product per se or for any other function of any product.
4942
4943THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES,
4944INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
4945PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,
4946DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING
4947OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN
4948IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.
4949
4950-------------------------------------------------------------------
4951
4952Portions Copyright(C) 1995, Jason Downs. All rights reserved.
4953
4954Redistribution and use in source and binary forms, with or without
4955modification, are permitted provided that the following conditions
4956are met:
49571. Redistributions of source code must retain the above copyright
4958 notice, this list of conditions and the following disclaimer.
49592. Redistributions in binary form must reproduce the above copyright
4960 notice, this list of conditions and the following disclaimer in the
4961 documentation and/or other materials provided with the distribution.
4962
4963THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
4964OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
4965WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4966DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
4967INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
4968(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
4969SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
4970CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4971LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
4972OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4973SUCH DAMAGE.
4974
4975-------------------------------------------------------------------
4976
4977The author of this software is David M. Gay.
4978
Elliott Hughesacbe3222014-04-16 17:01:12 -07004979Copyright (C) 1998 by Lucent Technologies
4980All Rights Reserved
Elliott Hughes261e2232012-08-14 15:04:05 -07004981
Elliott Hughesacbe3222014-04-16 17:01:12 -07004982Permission to use, copy, modify, and distribute this software and
4983its documentation for any purpose and without fee is hereby
4984granted, provided that the above copyright notice appear in all
4985copies and that both that the copyright notice and this
4986permission notice and warranty disclaimer appear in supporting
4987documentation, and that the name of Lucent or any of its entities
4988not be used in advertising or publicity pertaining to
4989distribution of the software without specific, written prior
4990permission.
Elliott Hughes261e2232012-08-14 15:04:05 -07004991
Elliott Hughesacbe3222014-04-16 17:01:12 -07004992LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
4993INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
4994IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
4995SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
4996WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
4997IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
4998ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
4999THIS SOFTWARE.
5000
5001-------------------------------------------------------------------
5002
5003The author of this software is David M. Gay.
5004
5005Copyright (C) 1998, 1999 by Lucent Technologies
5006All Rights Reserved
5007
5008Permission to use, copy, modify, and distribute this software and
5009its documentation for any purpose and without fee is hereby
5010granted, provided that the above copyright notice appear in all
5011copies and that both that the copyright notice and this
5012permission notice and warranty disclaimer appear in supporting
5013documentation, and that the name of Lucent or any of its entities
5014not be used in advertising or publicity pertaining to
5015distribution of the software without specific, written prior
5016permission.
5017
5018LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
5019INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
5020IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
5021SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
5022WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
5023IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
5024ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
5025THIS SOFTWARE.
5026
5027-------------------------------------------------------------------
5028
5029The author of this software is David M. Gay.
5030
5031Copyright (C) 1998, 2000 by Lucent Technologies
5032All Rights Reserved
5033
5034Permission to use, copy, modify, and distribute this software and
5035its documentation for any purpose and without fee is hereby
5036granted, provided that the above copyright notice appear in all
5037copies and that both that the copyright notice and this
5038permission notice and warranty disclaimer appear in supporting
5039documentation, and that the name of Lucent or any of its entities
5040not be used in advertising or publicity pertaining to
5041distribution of the software without specific, written prior
5042permission.
5043
5044LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
5045INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
5046IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
5047SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
5048WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
5049IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
5050ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
5051THIS SOFTWARE.
5052
5053-------------------------------------------------------------------
5054
5055The author of this software is David M. Gay.
5056
5057Copyright (C) 1998-2000 by Lucent Technologies
5058All Rights Reserved
5059
5060Permission to use, copy, modify, and distribute this software and
5061its documentation for any purpose and without fee is hereby
5062granted, provided that the above copyright notice appear in all
5063copies and that both that the copyright notice and this
5064permission notice and warranty disclaimer appear in supporting
5065documentation, and that the name of Lucent or any of its entities
5066not be used in advertising or publicity pertaining to
5067distribution of the software without specific, written prior
5068permission.
5069
5070LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
5071INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
5072IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
5073SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
5074WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
5075IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
5076ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
5077THIS SOFTWARE.
5078
5079-------------------------------------------------------------------
5080
5081The author of this software is David M. Gay.
5082
5083Copyright (C) 1998-2001 by Lucent Technologies
5084All Rights Reserved
5085
5086Permission to use, copy, modify, and distribute this software and
5087its documentation for any purpose and without fee is hereby
5088granted, provided that the above copyright notice appear in all
5089copies and that both that the copyright notice and this
5090permission notice and warranty disclaimer appear in supporting
5091documentation, and that the name of Lucent or any of its entities
5092not be used in advertising or publicity pertaining to
5093distribution of the software without specific, written prior
5094permission.
5095
5096LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
5097INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
5098IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
5099SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
5100WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
5101IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
5102ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
5103THIS SOFTWARE.
5104
5105-------------------------------------------------------------------
5106
5107The author of this software is David M. Gay.
5108
5109Copyright (C) 2000 by Lucent Technologies
5110All Rights Reserved
5111
5112Permission to use, copy, modify, and distribute this software and
5113its documentation for any purpose and without fee is hereby
5114granted, provided that the above copyright notice appear in all
5115copies and that both that the copyright notice and this
5116permission notice and warranty disclaimer appear in supporting
5117documentation, and that the name of Lucent or any of its entities
5118not be used in advertising or publicity pertaining to
5119distribution of the software without specific, written prior
5120permission.
5121
5122LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
5123INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
5124IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
5125SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
5126WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
5127IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
5128ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
5129THIS SOFTWARE.
Elliott Hughes261e2232012-08-14 15:04:05 -07005130
5131-------------------------------------------------------------------
5132
Elliott Hughes3758a242014-07-22 21:24:47 -07005133memchr - find a character in a memory zone
5134
5135Copyright (c) 2014, ARM Limited
5136All rights Reserved.
5137Copyright (c) 2014, Linaro Ltd.
5138
5139Redistribution and use in source and binary forms, with or without
5140modification, are permitted provided that the following conditions are met:
5141 * Redistributions of source code must retain the above copyright
5142 notice, this list of conditions and the following disclaimer.
5143 * Redistributions in binary form must reproduce the above copyright
5144 notice, this list of conditions and the following disclaimer in the
5145 documentation and/or other materials provided with the distribution.
5146 * Neither the name of the company nor the names of its contributors
5147 may be used to endorse or promote products derived from this
5148 software without specific prior written permission.
5149
5150THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
5151"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5152LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
5153A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
5154HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
5155SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
5156LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
5157DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
5158THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5159(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
5160OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5161
5162-------------------------------------------------------------------