Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 1 | 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 Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 6 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 7 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 8 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 9 | notice, this list of conditions and the following disclaimer in the |
| 10 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 11 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 12 | 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 Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 37 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 38 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 39 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 40 | notice, this list of conditions and the following disclaimer in the |
| 41 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 42 | * Neither the name of the company nor the names of its contributors |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 43 | 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 Hughes | 3e424d0 | 2014-07-23 16:02:26 -0700 | [diff] [blame] | 60 | 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 | |
| 74 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR |
| 75 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 76 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 77 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, |
| 78 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 79 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 80 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 81 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 82 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 83 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 84 | POSSIBILITY OF SUCH DAMAGE. |
| 85 | |
| 86 | ------------------------------------------------------------------- |
| 87 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 88 | 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 | |
Neil Fuller | 7336db7 | 2017-04-05 14:57:00 +0100 | [diff] [blame] | 115 | <?xml version="1.0" encoding="utf-8"?> |
| 116 | <!-- |
| 117 | |
| 118 | Copyright 2006, The Android Open Source Project |
| 119 | |
| 120 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 121 | you may not use this file except in compliance with the License. |
| 122 | You may obtain a copy of the License at |
| 123 | |
| 124 | http://www.apache.org/licenses/LICENSE-2.0 |
| 125 | |
| 126 | Unless required by applicable law or agreed to in writing, software |
| 127 | distributed under the License is distributed on an "AS IS" BASIS, |
| 128 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 129 | See the License for the specific language governing permissions and |
| 130 | limitations under the License. |
| 131 | |
| 132 | ------------------------------------------------------------------- |
| 133 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 134 | ==================================================== |
| 135 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 136 | |
| 137 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 138 | Permission to use, copy, modify, and distribute this |
| 139 | software is freely granted, provided that this notice |
| 140 | is preserved. |
| 141 | |
| 142 | ------------------------------------------------------------------- |
| 143 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 144 | ==================================================== |
| 145 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 146 | |
| 147 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 148 | Permission to use, copy, modify, and distribute this |
| 149 | software is freely granted, provided that this notice |
| 150 | is preserved. |
| 151 | ==================================================== |
| 152 | |
| 153 | Optimized by Bruce D. Evans. |
| 154 | |
| 155 | ------------------------------------------------------------------- |
| 156 | |
| 157 | ==================================================== |
| 158 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 159 | |
| 160 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 161 | Permission to use, copy, modify, and distribute this |
| 162 | software is freely granted, provided that this notice |
| 163 | is preserved. |
| 164 | |
| 165 | ------------------------------------------------------------------- |
| 166 | |
| 167 | ==================================================== |
| 168 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 169 | |
| 170 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 171 | Permission to use, copy, modify, and distribute this |
| 172 | software is freely granted, provided that this notice |
| 173 | is preserved. |
| 174 | ==================================================== |
| 175 | |
| 176 | Optimized by Bruce D. Evans. |
| 177 | |
| 178 | ------------------------------------------------------------------- |
| 179 | |
| 180 | ==================================================== |
| 181 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 182 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 183 | |
| 184 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 185 | Permission to use, copy, modify, and distribute this |
| 186 | software is freely granted, provided that this notice |
| 187 | is preserved. |
| 188 | |
| 189 | ------------------------------------------------------------------- |
| 190 | |
| 191 | ==================================================== |
| 192 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 193 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 194 | |
| 195 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 196 | Permission to use, copy, modify, and distribute this |
| 197 | software is freely granted, provided that this notice |
| 198 | is preserved. |
| 199 | ==================================================== |
| 200 | |
| 201 | Optimized by Bruce D. Evans. |
| 202 | |
| 203 | ------------------------------------------------------------------- |
| 204 | |
| 205 | ==================================================== |
| 206 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 207 | Copyright (c) 2009-2011, Bruce D. Evans, Steven G. Kargl, David Schultz. |
| 208 | |
| 209 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 210 | Permission to use, copy, modify, and distribute this |
| 211 | software is freely granted, provided that this notice |
| 212 | is preserved. |
| 213 | ==================================================== |
| 214 | |
| 215 | The argument reduction and testing for exceptional cases was |
| 216 | written by Steven G. Kargl with input from Bruce D. Evans |
| 217 | and David A. Schultz. |
| 218 | |
| 219 | ------------------------------------------------------------------- |
| 220 | |
| 221 | ==================================================== |
| 222 | Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved. |
| 223 | |
| 224 | Permission to use, copy, modify, and distribute this |
| 225 | software is freely granted, provided that this notice |
| 226 | is preserved. |
| 227 | |
| 228 | ------------------------------------------------------------------- |
| 229 | |
| 230 | ==================================================== |
| 231 | Copyright 2004 Sun Microsystems, Inc. All Rights Reserved. |
| 232 | |
| 233 | Permission to use, copy, modify, and distribute this |
| 234 | software is freely granted, provided that this notice |
| 235 | is preserved. |
| 236 | |
| 237 | ------------------------------------------------------------------- |
| 238 | |
| 239 | ==================================================== |
| 240 | Copyright 2004 Sun Microsystems, Inc. All Rights Reserved. |
| 241 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 242 | |
| 243 | Permission to use, copy, modify, and distribute this |
| 244 | software is freely granted, provided that this notice |
| 245 | is preserved. |
| 246 | |
| 247 | ------------------------------------------------------------------- |
| 248 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 249 | Based on the UCB version with the ID appearing below. |
| 250 | This is ANSIish only when "multibyte character == plain character". |
| 251 | |
| 252 | Copyright (c) 1989, 1993 |
| 253 | The Regents of the University of California. All rights reserved. |
| 254 | |
| 255 | Redistribution and use in source and binary forms, with or without |
| 256 | modification, are permitted provided that the following conditions |
| 257 | are met: |
| 258 | 1. Redistributions of source code must retain the above copyright |
| 259 | notice, this list of conditions and the following disclaimer. |
| 260 | 2. Redistributions in binary form must reproduce the above copyright |
| 261 | notice, this list of conditions and the following disclaimer in the |
| 262 | documentation and/or other materials provided with the distribution. |
| 263 | 3. Neither the name of the University nor the names of its contributors |
| 264 | may be used to endorse or promote products derived from this software |
| 265 | without specific prior written permission. |
| 266 | |
| 267 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 268 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 269 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 270 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 271 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 272 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 273 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 274 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 275 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 276 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 277 | SUCH DAMAGE. |
| 278 | |
| 279 | ------------------------------------------------------------------- |
| 280 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 281 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 282 | All rights reserved. |
| 283 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 284 | Redistribution and use in source and binary forms, with or without |
| 285 | modification, are permitted provided that the following conditions |
| 286 | are met: |
| 287 | 1. Redistributions of source code must retain the above copyright |
| 288 | notice, this list of conditions and the following disclaimer. |
| 289 | 2. Redistributions in binary form must reproduce the above copyright |
| 290 | notice, this list of conditions and the following disclaimer in the |
| 291 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 292 | 3. Neither the name of the project nor the names of its contributors |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 293 | may be used to endorse or promote products derived from this software |
| 294 | without specific prior written permission. |
| 295 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 296 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 297 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 298 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 299 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 300 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 301 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 302 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 303 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 304 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 305 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 306 | SUCH DAMAGE. |
| 307 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 308 | ------------------------------------------------------------------- |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 309 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 310 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 311 | Copyright (C) 1995-1999, 2001, 2003 Internet Software Consortium. |
| 312 | |
| 313 | Permission to use, copy, modify, and/or distribute this software for any |
| 314 | purpose with or without fee is hereby granted, provided that the above |
| 315 | copyright notice and this permission notice appear in all copies. |
| 316 | |
| 317 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 318 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 319 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 320 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 321 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 322 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 323 | PERFORMANCE OF THIS SOFTWARE. |
| 324 | |
| 325 | ------------------------------------------------------------------- |
| 326 | |
| 327 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 328 | Copyright (C) 1997-2001 Internet Software Consortium. |
| 329 | |
| 330 | Permission to use, copy, modify, and/or distribute this software for any |
| 331 | purpose with or without fee is hereby granted, provided that the above |
| 332 | copyright notice and this permission notice appear in all copies. |
| 333 | |
| 334 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 335 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 336 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 337 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 338 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 339 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 340 | PERFORMANCE OF THIS SOFTWARE. |
| 341 | |
| 342 | ------------------------------------------------------------------- |
| 343 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 344 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 345 | |
| 346 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 347 | you may not use this file except in compliance with the License. |
| 348 | You may obtain a copy of the License at |
| 349 | |
| 350 | http://www.apache.org/licenses/LICENSE-2.0 |
| 351 | |
| 352 | Unless required by applicable law or agreed to in writing, software |
| 353 | distributed under the License is distributed on an "AS IS" BASIS, |
| 354 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 355 | See the License for the specific language governing permissions and |
| 356 | limitations under the License. |
| 357 | |
| 358 | ------------------------------------------------------------------- |
| 359 | |
| 360 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 361 | All rights reserved. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 362 | |
| 363 | Redistribution and use in source and binary forms, with or without |
| 364 | modification, are permitted provided that the following conditions |
| 365 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 366 | * Redistributions of source code must retain the above copyright |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 367 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 368 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 369 | notice, this list of conditions and the following disclaimer in |
| 370 | the documentation and/or other materials provided with the |
| 371 | distribution. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 372 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 373 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 374 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 375 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 376 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 377 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 378 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 379 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 380 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 381 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 382 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 383 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 384 | SUCH DAMAGE. |
| 385 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 386 | ------------------------------------------------------------------- |
| 387 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 388 | Copyright (C) 2007 The Android Open Source Project |
| 389 | |
| 390 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 391 | you may not use this file except in compliance with the License. |
| 392 | You may obtain a copy of the License at |
| 393 | |
| 394 | http://www.apache.org/licenses/LICENSE-2.0 |
| 395 | |
| 396 | Unless required by applicable law or agreed to in writing, software |
| 397 | distributed under the License is distributed on an "AS IS" BASIS, |
| 398 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 399 | See the License for the specific language governing permissions and |
| 400 | limitations under the License. |
| 401 | |
| 402 | ------------------------------------------------------------------- |
| 403 | |
Dimitry Ivanov | bcc4da9 | 2017-02-15 15:31:13 -0800 | [diff] [blame] | 404 | Copyright (C) 2007 The Android Open Source Project |
| 405 | All rights reserved. |
| 406 | |
| 407 | Redistribution and use in source and binary forms, with or without |
| 408 | modification, are permitted provided that the following conditions |
| 409 | are met: |
| 410 | * Redistributions of source code must retain the above copyright |
| 411 | notice, this list of conditions and the following disclaimer. |
| 412 | * Redistributions in binary form must reproduce the above copyright |
| 413 | notice, this list of conditions and the following disclaimer in |
| 414 | the documentation and/or other materials provided with the |
| 415 | distribution. |
| 416 | |
| 417 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 418 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 419 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 420 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 421 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 422 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 423 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 424 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 425 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 426 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 427 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 428 | SUCH DAMAGE. |
| 429 | |
| 430 | ------------------------------------------------------------------- |
| 431 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 432 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 433 | |
| 434 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 435 | you may not use this file except in compliance with the License. |
| 436 | You may obtain a copy of the License at |
| 437 | |
| 438 | http://www.apache.org/licenses/LICENSE-2.0 |
| 439 | |
| 440 | Unless required by applicable law or agreed to in writing, software |
| 441 | distributed under the License is distributed on an "AS IS" BASIS, |
| 442 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 443 | See the License for the specific language governing permissions and |
| 444 | limitations under the License. |
| 445 | |
| 446 | ------------------------------------------------------------------- |
| 447 | |
| 448 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 449 | All rights reserved. |
| 450 | |
| 451 | Redistribution and use in source and binary forms, with or without |
| 452 | modification, are permitted provided that the following conditions |
| 453 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 454 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 455 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 456 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 457 | notice, this list of conditions and the following disclaimer in |
| 458 | the documentation and/or other materials provided with the |
| 459 | distribution. |
| 460 | |
| 461 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 462 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 463 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 464 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 465 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 466 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 467 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 468 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 469 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 470 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 471 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 472 | SUCH DAMAGE. |
| 473 | |
| 474 | ------------------------------------------------------------------- |
| 475 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 476 | Copyright (C) 2008 The Android Open Source Project |
| 477 | All rights reserved. |
| 478 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 479 | |
| 480 | Redistribution and use in source and binary forms, with or without |
| 481 | modification, are permitted provided that the following conditions |
| 482 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 483 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 484 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 485 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 486 | notice, this list of conditions and the following disclaimer in |
| 487 | the documentation and/or other materials provided with the |
| 488 | distribution. |
| 489 | |
| 490 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 491 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 492 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 493 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 494 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 495 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 496 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 497 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 498 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 499 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 500 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 501 | SUCH DAMAGE. |
| 502 | |
| 503 | ------------------------------------------------------------------- |
| 504 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 505 | Copyright (C) 2009 The Android Open Source Project |
| 506 | All rights reserved. |
| 507 | |
| 508 | Redistribution and use in source and binary forms, with or without |
| 509 | modification, are permitted provided that the following conditions |
| 510 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 511 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 512 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 513 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 514 | notice, this list of conditions and the following disclaimer in |
| 515 | the documentation and/or other materials provided with the |
| 516 | distribution. |
| 517 | |
| 518 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 519 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 520 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 521 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 522 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 523 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 524 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 525 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 526 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 527 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 528 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 529 | SUCH DAMAGE. |
| 530 | |
| 531 | ------------------------------------------------------------------- |
| 532 | |
| 533 | Copyright (C) 2010 The Android Open Source Project |
| 534 | |
| 535 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 536 | you may not use this file except in compliance with the License. |
| 537 | You may obtain a copy of the License at |
| 538 | |
| 539 | http://www.apache.org/licenses/LICENSE-2.0 |
| 540 | |
| 541 | Unless required by applicable law or agreed to in writing, software |
| 542 | distributed under the License is distributed on an "AS IS" BASIS, |
| 543 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 544 | See the License for the specific language governing permissions and |
| 545 | limitations under the License. |
| 546 | |
| 547 | ------------------------------------------------------------------- |
| 548 | |
| 549 | Copyright (C) 2010 The Android Open Source Project |
| 550 | All rights reserved. |
| 551 | |
| 552 | Redistribution and use in source and binary forms, with or without |
| 553 | modification, are permitted provided that the following conditions |
| 554 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 555 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 556 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 557 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 558 | notice, this list of conditions and the following disclaimer in |
| 559 | the documentation and/or other materials provided with the |
| 560 | distribution. |
| 561 | |
| 562 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 563 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 564 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 565 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 566 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 567 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 568 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 569 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 570 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 571 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 572 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 573 | SUCH DAMAGE. |
| 574 | |
| 575 | ------------------------------------------------------------------- |
| 576 | |
| 577 | Copyright (C) 2010 The Android Open Source Project |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 578 | All rights reserved. |
| 579 | |
| 580 | Redistribution and use in source and binary forms, with or without |
| 581 | modification, are permitted provided that the following conditions |
| 582 | are met: |
| 583 | 1. Redistributions of source code must retain the above copyright |
| 584 | notice, this list of conditions and the following disclaimer. |
| 585 | 2. Redistributions in binary form must reproduce the above copyright |
| 586 | notice, this list of conditions and the following disclaimer in the |
| 587 | documentation and/or other materials provided with the distribution. |
| 588 | |
| 589 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 590 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 591 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 592 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 593 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 594 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 595 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 596 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 597 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 598 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 599 | SUCH DAMAGE. |
| 600 | |
| 601 | ------------------------------------------------------------------- |
| 602 | |
| 603 | Copyright (C) 2010 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 604 | Copyright (c) 2008 ARM Ltd |
| 605 | All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 606 | |
| 607 | Redistribution and use in source and binary forms, with or without |
| 608 | modification, are permitted provided that the following conditions |
| 609 | are met: |
| 610 | 1. Redistributions of source code must retain the above copyright |
| 611 | notice, this list of conditions and the following disclaimer. |
| 612 | 2. Redistributions in binary form must reproduce the above copyright |
| 613 | notice, this list of conditions and the following disclaimer in the |
| 614 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 615 | 3. The name of the company may not be used to endorse or promote |
| 616 | products derived from this software without specific prior written |
| 617 | permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 618 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 619 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 620 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 621 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 622 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 623 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 624 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 625 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 626 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 627 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 628 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 629 | |
| 630 | Android adaptation and tweak by Jim Huang <jserv@0xlab.org>. |
| 631 | |
| 632 | ------------------------------------------------------------------- |
| 633 | |
| 634 | Copyright (C) 2011 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 635 | All rights reserved. |
| 636 | |
| 637 | Redistribution and use in source and binary forms, with or without |
| 638 | modification, are permitted provided that the following conditions |
| 639 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 640 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 641 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 642 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 643 | notice, this list of conditions and the following disclaimer in |
| 644 | the documentation and/or other materials provided with the |
| 645 | distribution. |
| 646 | |
| 647 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 648 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 649 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 650 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 651 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 652 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 653 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 654 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 655 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 656 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 657 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 658 | SUCH DAMAGE. |
| 659 | |
| 660 | ------------------------------------------------------------------- |
| 661 | |
| 662 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 663 | |
| 664 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 665 | you may not use this file except in compliance with the License. |
| 666 | You may obtain a copy of the License at |
| 667 | |
| 668 | http://www.apache.org/licenses/LICENSE-2.0 |
| 669 | |
| 670 | Unless required by applicable law or agreed to in writing, software |
| 671 | distributed under the License is distributed on an "AS IS" BASIS, |
| 672 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 673 | See the License for the specific language governing permissions and |
| 674 | limitations under the License. |
| 675 | |
| 676 | ------------------------------------------------------------------- |
| 677 | |
| 678 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 679 | All rights reserved. |
| 680 | |
| 681 | Redistribution and use in source and binary forms, with or without |
| 682 | modification, are permitted provided that the following conditions |
| 683 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 684 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 685 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 686 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 687 | notice, this list of conditions and the following disclaimer in |
| 688 | the documentation and/or other materials provided with the |
| 689 | distribution. |
| 690 | |
| 691 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 692 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 693 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 694 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 695 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 696 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 697 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 698 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 699 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 700 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 701 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 702 | SUCH DAMAGE. |
| 703 | |
| 704 | ------------------------------------------------------------------- |
| 705 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 706 | Copyright (C) 2013 The Android Open Source Project |
| 707 | |
| 708 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 709 | you may not use this file except in compliance with the License. |
| 710 | You may obtain a copy of the License at |
| 711 | |
| 712 | http://www.apache.org/licenses/LICENSE-2.0 |
| 713 | |
| 714 | Unless required by applicable law or agreed to in writing, software |
| 715 | distributed under the License is distributed on an "AS IS" BASIS, |
| 716 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 717 | See the License for the specific language governing permissions and |
| 718 | limitations under the License. |
| 719 | |
| 720 | ------------------------------------------------------------------- |
| 721 | |
| 722 | Copyright (C) 2013 The Android Open Source Project |
| 723 | All rights reserved. |
| 724 | |
| 725 | Redistribution and use in source and binary forms, with or without |
| 726 | modification, are permitted provided that the following conditions |
| 727 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 728 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 729 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 730 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 731 | notice, this list of conditions and the following disclaimer in |
| 732 | the documentation and/or other materials provided with the |
| 733 | distribution. |
| 734 | |
| 735 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 736 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 737 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 738 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 739 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 740 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 741 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 742 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 743 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 744 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 745 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 746 | SUCH DAMAGE. |
| 747 | |
| 748 | ------------------------------------------------------------------- |
| 749 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 750 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 751 | All rights reserved. |
| 752 | Copyright (c) 2013-2014 NVIDIA Corporation. All rights reserved. |
| 753 | |
| 754 | Redistribution and use in source and binary forms, with or without |
| 755 | modification, are permitted provided that the following conditions |
| 756 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 757 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 758 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 759 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 760 | notice, this list of conditions and the following disclaimer in |
| 761 | the documentation and/or other materials provided with the |
| 762 | distribution. |
| 763 | |
| 764 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 765 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 766 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 767 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 768 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 769 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 770 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 771 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 772 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 773 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 774 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 775 | SUCH DAMAGE. |
| 776 | |
| 777 | ------------------------------------------------------------------- |
| 778 | |
| 779 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 780 | Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. |
| 781 | All rights reserved. |
| 782 | |
| 783 | Redistribution and use in source and binary forms, with or without |
| 784 | modification, are permitted provided that the following conditions |
| 785 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 786 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 787 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 788 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 789 | notice, this list of conditions and the following disclaimer in |
| 790 | the documentation and/or other materials provided with the |
| 791 | distribution. |
| 792 | |
| 793 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 794 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 795 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 796 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 797 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 798 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 799 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 800 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 801 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 802 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 803 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 804 | SUCH DAMAGE. |
| 805 | |
| 806 | ------------------------------------------------------------------- |
| 807 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 808 | Copyright (C) 2014 The Android Open Source Project |
| 809 | |
| 810 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 811 | you may not use this file except in compliance with the License. |
| 812 | You may obtain a copy of the License at |
| 813 | |
| 814 | http://www.apache.org/licenses/LICENSE-2.0 |
| 815 | |
| 816 | Unless required by applicable law or agreed to in writing, software |
| 817 | distributed under the License is distributed on an "AS IS" BASIS, |
| 818 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 819 | See the License for the specific language governing permissions and |
| 820 | limitations under the License. |
| 821 | |
| 822 | ------------------------------------------------------------------- |
| 823 | |
| 824 | Copyright (C) 2014 The Android Open Source Project |
| 825 | All rights reserved. |
| 826 | |
| 827 | Redistribution and use in source and binary forms, with or without |
| 828 | modification, are permitted provided that the following conditions |
| 829 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 830 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 831 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 832 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 833 | notice, this list of conditions and the following disclaimer in |
| 834 | the documentation and/or other materials provided with the |
| 835 | distribution. |
| 836 | |
| 837 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 838 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 839 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 840 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 841 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 842 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 843 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 844 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 845 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 846 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 847 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 848 | SUCH DAMAGE. |
| 849 | |
| 850 | ------------------------------------------------------------------- |
| 851 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 852 | Copyright (C) 2014 The Android Open Source Project |
| 853 | All rights reserved. |
| 854 | |
| 855 | Redistribution and use in source and binary forms, with or without |
| 856 | modification, are permitted provided that the following conditions |
| 857 | are met: |
| 858 | 1. Redistributions of source code must retain the above copyright |
| 859 | notice, this list of conditions and the following disclaimer. |
| 860 | 2. Redistributions in binary form must reproduce the above copyright |
| 861 | notice, this list of conditions and the following disclaimer in the |
| 862 | documentation and/or other materials provided with the distribution. |
| 863 | |
| 864 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 865 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 866 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 867 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 868 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 869 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 870 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 871 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 872 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 873 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 874 | SUCH DAMAGE. |
| 875 | |
| 876 | ------------------------------------------------------------------- |
| 877 | |
| 878 | Copyright (C) 2015 The Android Open Source Project |
| 879 | |
| 880 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 881 | you may not use this file except in compliance with the License. |
| 882 | You may obtain a copy of the License at |
| 883 | |
| 884 | http://www.apache.org/licenses/LICENSE-2.0 |
| 885 | |
| 886 | Unless required by applicable law or agreed to in writing, software |
| 887 | distributed under the License is distributed on an "AS IS" BASIS, |
| 888 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 889 | See the License for the specific language governing permissions and |
| 890 | limitations under the License. |
| 891 | |
| 892 | ------------------------------------------------------------------- |
| 893 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 894 | Copyright (C) 2015 The Android Open Source Project |
| 895 | |
| 896 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 897 | you may not use this file except in compliance with the License. |
| 898 | You may obtain a copy of the License at |
| 899 | |
| 900 | http://www.apache.org/licenses/LICENSE-2.0 |
| 901 | |
| 902 | Unless required by applicable law or agreed to in writing, software |
| 903 | distributed under the License is distributed on an "AS IS" BASIS, |
| 904 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 905 | See the License for the specific language governing permissions and |
| 906 | limitations under the License. |
| 907 | |
| 908 | ------------------------------------------------------------------- |
| 909 | |
| 910 | Copyright (C) 2015 The Android Open Source Project |
| 911 | All rights reserved. |
| 912 | |
| 913 | Redistribution and use in source and binary forms, with or without |
| 914 | modification, are permitted provided that the following conditions |
| 915 | are met: |
| 916 | * Redistributions of source code must retain the above copyright |
| 917 | notice, this list of conditions and the following disclaimer. |
| 918 | * Redistributions in binary form must reproduce the above copyright |
| 919 | notice, this list of conditions and the following disclaimer in |
| 920 | the documentation and/or other materials provided with the |
| 921 | distribution. |
| 922 | |
| 923 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 924 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 925 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 926 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 927 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 928 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 929 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 930 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 931 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 932 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 933 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 934 | SUCH DAMAGE. |
| 935 | |
| 936 | ------------------------------------------------------------------- |
| 937 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 938 | Copyright (C) 2016 The Android Open Source Project |
| 939 | |
| 940 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 941 | you may not use this file except in compliance with the License. |
| 942 | You may obtain a copy of the License at |
| 943 | |
| 944 | http://www.apache.org/licenses/LICENSE-2.0 |
| 945 | |
| 946 | Unless required by applicable law or agreed to in writing, software |
| 947 | distributed under the License is distributed on an "AS IS" BASIS, |
| 948 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 949 | See the License for the specific language governing permissions and |
| 950 | limitations under the License. |
| 951 | |
| 952 | ------------------------------------------------------------------- |
| 953 | |
| 954 | Copyright (C) 2016 The Android Open Source Project |
| 955 | All rights reserved. |
| 956 | |
| 957 | Redistribution and use in source and binary forms, with or without |
| 958 | modification, are permitted provided that the following conditions |
| 959 | are met: |
| 960 | * Redistributions of source code must retain the above copyright |
| 961 | notice, this list of conditions and the following disclaimer. |
| 962 | * Redistributions in binary form must reproduce the above copyright |
| 963 | notice, this list of conditions and the following disclaimer in |
| 964 | the documentation and/or other materials provided with the |
| 965 | distribution. |
| 966 | |
| 967 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 968 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 969 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 970 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 971 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 972 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 973 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 974 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 975 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 976 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 977 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 978 | SUCH DAMAGE. |
| 979 | |
| 980 | ------------------------------------------------------------------- |
| 981 | |
mspector | 2e3d6a1 | 2017-01-24 21:51:51 -0800 | [diff] [blame] | 982 | Copyright (C) 2017 The Android Open Source Project |
Paul Lawrence | dfe8434 | 2017-02-16 09:24:39 -0800 | [diff] [blame] | 983 | |
| 984 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 985 | you may not use this file except in compliance with the License. |
| 986 | You may obtain a copy of the License at |
| 987 | |
| 988 | http://www.apache.org/licenses/LICENSE-2.0 |
| 989 | |
| 990 | Unless required by applicable law or agreed to in writing, software |
| 991 | distributed under the License is distributed on an "AS IS" BASIS, |
| 992 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 993 | See the License for the specific language governing permissions and |
| 994 | limitations under the License. |
| 995 | |
| 996 | ------------------------------------------------------------------- |
| 997 | |
| 998 | Copyright (C) 2017 The Android Open Source Project |
mspector | 2e3d6a1 | 2017-01-24 21:51:51 -0800 | [diff] [blame] | 999 | All rights reserved. |
| 1000 | |
| 1001 | Redistribution and use in source and binary forms, with or without |
| 1002 | modification, are permitted provided that the following conditions |
| 1003 | are met: |
| 1004 | * Redistributions of source code must retain the above copyright |
| 1005 | notice, this list of conditions and the following disclaimer. |
| 1006 | * Redistributions in binary form must reproduce the above copyright |
| 1007 | notice, this list of conditions and the following disclaimer in |
| 1008 | the documentation and/or other materials provided with the |
| 1009 | distribution. |
| 1010 | |
| 1011 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 1012 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 1013 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 1014 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 1015 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 1016 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 1017 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 1018 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 1019 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 1020 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 1021 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1022 | SUCH DAMAGE. |
| 1023 | |
| 1024 | ------------------------------------------------------------------- |
| 1025 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1026 | Copyright (c) 1980, 1983, 1988, 1993 |
| 1027 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1028 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1029 | Redistribution and use in source and binary forms, with or without |
| 1030 | modification, are permitted provided that the following conditions |
| 1031 | are met: |
| 1032 | 1. Redistributions of source code must retain the above copyright |
| 1033 | notice, this list of conditions and the following disclaimer. |
| 1034 | 2. Redistributions in binary form must reproduce the above copyright |
| 1035 | notice, this list of conditions and the following disclaimer in the |
| 1036 | documentation and/or other materials provided with the distribution. |
| 1037 | 3. All advertising materials mentioning features or use of this software |
| 1038 | must display the following acknowledgement: |
| 1039 | This product includes software developed by the University of |
| 1040 | California, Berkeley and its contributors. |
| 1041 | 4. Neither the name of the University nor the names of its contributors |
| 1042 | may be used to endorse or promote products derived from this software |
| 1043 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1044 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1045 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1046 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1047 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1048 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1049 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1050 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1051 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1052 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1053 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1054 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1055 | SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1056 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1057 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1058 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1059 | |
| 1060 | Permission to use, copy, modify, and distribute this software for any |
| 1061 | purpose with or without fee is hereby granted, provided that the above |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1062 | copyright notice and this permission notice appear in all copies, and that |
| 1063 | the name of Digital Equipment Corporation not be used in advertising or |
| 1064 | publicity pertaining to distribution of the document or software without |
| 1065 | specific, written prior permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1066 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1067 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1068 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1069 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1070 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1071 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1072 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1073 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1074 | SOFTWARE. |
| 1075 | |
| 1076 | ------------------------------------------------------------------- |
| 1077 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1078 | Copyright (c) 1982, 1986, 1993 |
| 1079 | The Regents of the University of California. All rights reserved. |
| 1080 | |
| 1081 | Redistribution and use in source and binary forms, with or without |
| 1082 | modification, are permitted provided that the following conditions |
| 1083 | are met: |
| 1084 | 1. Redistributions of source code must retain the above copyright |
| 1085 | notice, this list of conditions and the following disclaimer. |
| 1086 | 2. Redistributions in binary form must reproduce the above copyright |
| 1087 | notice, this list of conditions and the following disclaimer in the |
| 1088 | documentation and/or other materials provided with the distribution. |
| 1089 | 3. Neither the name of the University nor the names of its contributors |
| 1090 | may be used to endorse or promote products derived from this software |
| 1091 | without specific prior written permission. |
| 1092 | |
| 1093 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1094 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1095 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1096 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1097 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1098 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1099 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1100 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1101 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1102 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1103 | SUCH DAMAGE. |
| 1104 | |
| 1105 | ------------------------------------------------------------------- |
| 1106 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 1107 | Copyright (c) 1982, 1986, 1993 |
| 1108 | The Regents of the University of California. All rights reserved. |
| 1109 | (c) UNIX System Laboratories, Inc. |
| 1110 | All or some portions of this file are derived from material licensed |
| 1111 | to the University of California by American Telephone and Telegraph |
| 1112 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1113 | the permission of UNIX System Laboratories, Inc. |
| 1114 | |
| 1115 | Redistribution and use in source and binary forms, with or without |
| 1116 | modification, are permitted provided that the following conditions |
| 1117 | are met: |
| 1118 | 1. Redistributions of source code must retain the above copyright |
| 1119 | notice, this list of conditions and the following disclaimer. |
| 1120 | 2. Redistributions in binary form must reproduce the above copyright |
| 1121 | notice, this list of conditions and the following disclaimer in the |
| 1122 | documentation and/or other materials provided with the distribution. |
| 1123 | 3. Neither the name of the University nor the names of its contributors |
| 1124 | may be used to endorse or promote products derived from this software |
| 1125 | without specific prior written permission. |
| 1126 | |
| 1127 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1128 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1129 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1130 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1131 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1132 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1133 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1134 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1135 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1136 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1137 | SUCH DAMAGE. |
| 1138 | |
| 1139 | ------------------------------------------------------------------- |
| 1140 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1141 | Copyright (c) 1983, 1987, 1989 |
| 1142 | The Regents of the University of California. All rights reserved. |
| 1143 | |
| 1144 | Redistribution and use in source and binary forms, with or without |
| 1145 | modification, are permitted provided that the following conditions |
| 1146 | are met: |
| 1147 | 1. Redistributions of source code must retain the above copyright |
| 1148 | notice, this list of conditions and the following disclaimer. |
| 1149 | 2. Redistributions in binary form must reproduce the above copyright |
| 1150 | notice, this list of conditions and the following disclaimer in the |
| 1151 | documentation and/or other materials provided with the distribution. |
| 1152 | 3. Neither the name of the University nor the names of its contributors |
| 1153 | may be used to endorse or promote products derived from this software |
| 1154 | without specific prior written permission. |
| 1155 | |
| 1156 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1157 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1158 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1159 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1160 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1161 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1162 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1163 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1164 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1165 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1166 | SUCH DAMAGE. |
| 1167 | |
| 1168 | ------------------------------------------------------------------- |
| 1169 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1170 | Copyright (c) 1983, 1989 |
| 1171 | The Regents of the University of California. All rights reserved. |
| 1172 | |
| 1173 | Redistribution and use in source and binary forms, with or without |
| 1174 | modification, are permitted provided that the following conditions |
| 1175 | are met: |
| 1176 | 1. Redistributions of source code must retain the above copyright |
| 1177 | notice, this list of conditions and the following disclaimer. |
| 1178 | 2. Redistributions in binary form must reproduce the above copyright |
| 1179 | notice, this list of conditions and the following disclaimer in the |
| 1180 | documentation and/or other materials provided with the distribution. |
| 1181 | 3. All advertising materials mentioning features or use of this software |
| 1182 | must display the following acknowledgement: |
| 1183 | This product includes software developed by the University of |
| 1184 | California, Berkeley and its contributors. |
| 1185 | 4. Neither the name of the University nor the names of its contributors |
| 1186 | may be used to endorse or promote products derived from this software |
| 1187 | without specific prior written permission. |
| 1188 | |
| 1189 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1190 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1191 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1192 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1193 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1194 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1195 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1196 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1197 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1198 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1199 | SUCH DAMAGE. |
| 1200 | |
| 1201 | ------------------------------------------------------------------- |
| 1202 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1203 | Copyright (c) 1983, 1989, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1204 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1205 | |
| 1206 | Redistribution and use in source and binary forms, with or without |
| 1207 | modification, are permitted provided that the following conditions |
| 1208 | are met: |
| 1209 | 1. Redistributions of source code must retain the above copyright |
| 1210 | notice, this list of conditions and the following disclaimer. |
| 1211 | 2. Redistributions in binary form must reproduce the above copyright |
| 1212 | notice, this list of conditions and the following disclaimer in the |
| 1213 | documentation and/or other materials provided with the distribution. |
| 1214 | 3. Neither the name of the University nor the names of its contributors |
| 1215 | may be used to endorse or promote products derived from this software |
| 1216 | without specific prior written permission. |
| 1217 | |
| 1218 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1219 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1220 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1221 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1222 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1223 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1224 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1225 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1226 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1227 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1228 | SUCH DAMAGE. |
| 1229 | |
| 1230 | ------------------------------------------------------------------- |
| 1231 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1232 | Copyright (c) 1983, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1233 | The Regents of the University of California. All rights reserved. |
| 1234 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1235 | Redistribution and use in source and binary forms, with or without |
| 1236 | modification, are permitted provided that the following conditions |
| 1237 | are met: |
| 1238 | 1. Redistributions of source code must retain the above copyright |
| 1239 | notice, this list of conditions and the following disclaimer. |
| 1240 | 2. Redistributions in binary form must reproduce the above copyright |
| 1241 | notice, this list of conditions and the following disclaimer in the |
| 1242 | documentation and/or other materials provided with the distribution. |
| 1243 | 3. Neither the name of the University nor the names of its contributors |
| 1244 | may be used to endorse or promote products derived from this software |
| 1245 | without specific prior written permission. |
| 1246 | |
| 1247 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1248 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1249 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1250 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1251 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1252 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1253 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1254 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1255 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1256 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1257 | SUCH DAMAGE. |
| 1258 | |
| 1259 | ------------------------------------------------------------------- |
| 1260 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1261 | Copyright (c) 1983, 1993 |
| 1262 | The Regents of the University of California. All rights reserved. |
| 1263 | |
| 1264 | Redistribution and use in source and binary forms, with or without |
| 1265 | modification, are permitted provided that the following conditions |
| 1266 | are met: |
| 1267 | 1. Redistributions of source code must retain the above copyright |
| 1268 | notice, this list of conditions and the following disclaimer. |
| 1269 | 2. Redistributions in binary form must reproduce the above copyright |
| 1270 | notice, this list of conditions and the following disclaimer in the |
| 1271 | documentation and/or other materials provided with the distribution. |
| 1272 | 4. Neither the name of the University nor the names of its contributors |
| 1273 | may be used to endorse or promote products derived from this software |
| 1274 | without specific prior written permission. |
| 1275 | |
| 1276 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1277 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1278 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1279 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1280 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1281 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1282 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1283 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1284 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1285 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1286 | SUCH DAMAGE. |
| 1287 | |
| 1288 | ------------------------------------------------------------------- |
| 1289 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1290 | Copyright (c) 1985 |
| 1291 | The Regents of the University of California. All rights reserved. |
| 1292 | |
| 1293 | Redistribution and use in source and binary forms, with or without |
| 1294 | modification, are permitted provided that the following conditions |
| 1295 | are met: |
| 1296 | 1. Redistributions of source code must retain the above copyright |
| 1297 | notice, this list of conditions and the following disclaimer. |
| 1298 | 2. Redistributions in binary form must reproduce the above copyright |
| 1299 | notice, this list of conditions and the following disclaimer in the |
| 1300 | documentation and/or other materials provided with the distribution. |
| 1301 | 3. All advertising materials mentioning features or use of this software |
| 1302 | must display the following acknowledgement: |
| 1303 | This product includes software developed by the University of |
| 1304 | California, Berkeley and its contributors. |
| 1305 | 4. Neither the name of the University nor the names of its contributors |
| 1306 | may be used to endorse or promote products derived from this software |
| 1307 | without specific prior written permission. |
| 1308 | |
| 1309 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1310 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1311 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1312 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1313 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1314 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1315 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1316 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1317 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1318 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1319 | SUCH DAMAGE. |
| 1320 | |
| 1321 | ------------------------------------------------------------------- |
| 1322 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1323 | Copyright (c) 1985 Regents of the University of California. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1324 | All rights reserved. |
| 1325 | |
| 1326 | Redistribution and use in source and binary forms, with or without |
| 1327 | modification, are permitted provided that the following conditions |
| 1328 | are met: |
| 1329 | 1. Redistributions of source code must retain the above copyright |
| 1330 | notice, this list of conditions and the following disclaimer. |
| 1331 | 2. Redistributions in binary form must reproduce the above copyright |
| 1332 | notice, this list of conditions and the following disclaimer in the |
| 1333 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1334 | 3. Neither the name of the University nor the names of its contributors |
| 1335 | may be used to endorse or promote products derived from this software |
| 1336 | without specific prior written permission. |
| 1337 | |
| 1338 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1339 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1340 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1341 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1342 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1343 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1344 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1345 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1346 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1347 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1348 | SUCH DAMAGE. |
| 1349 | |
| 1350 | ------------------------------------------------------------------- |
| 1351 | |
| 1352 | Copyright (c) 1985, 1988, 1993 |
| 1353 | The Regents of the University of California. All rights reserved. |
| 1354 | |
| 1355 | Redistribution and use in source and binary forms, with or without |
| 1356 | modification, are permitted provided that the following conditions |
| 1357 | are met: |
| 1358 | 1. Redistributions of source code must retain the above copyright |
| 1359 | notice, this list of conditions and the following disclaimer. |
| 1360 | 2. Redistributions in binary form must reproduce the above copyright |
| 1361 | notice, this list of conditions and the following disclaimer in the |
| 1362 | documentation and/or other materials provided with the distribution. |
| 1363 | 3. Neither the name of the University nor the names of its contributors |
| 1364 | may be used to endorse or promote products derived from this software |
| 1365 | without specific prior written permission. |
| 1366 | |
| 1367 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1368 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1369 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1370 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1371 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1372 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1373 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1374 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1375 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1376 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1377 | SUCH DAMAGE. |
| 1378 | |
| 1379 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 1380 | |
| 1381 | Permission to use, copy, modify, and distribute this software for any |
| 1382 | purpose with or without fee is hereby granted, provided that the above |
| 1383 | copyright notice and this permission notice appear in all copies, and that |
| 1384 | the name of Digital Equipment Corporation not be used in advertising or |
| 1385 | publicity pertaining to distribution of the document or software without |
| 1386 | specific, written prior permission. |
| 1387 | |
| 1388 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1389 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1390 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1391 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1392 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1393 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1394 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1395 | SOFTWARE. |
| 1396 | |
| 1397 | ------------------------------------------------------------------- |
| 1398 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1399 | Copyright (c) 1985, 1989, 1993 |
| 1400 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1401 | |
| 1402 | Redistribution and use in source and binary forms, with or without |
| 1403 | modification, are permitted provided that the following conditions |
| 1404 | are met: |
| 1405 | 1. Redistributions of source code must retain the above copyright |
| 1406 | notice, this list of conditions and the following disclaimer. |
| 1407 | 2. Redistributions in binary form must reproduce the above copyright |
| 1408 | notice, this list of conditions and the following disclaimer in the |
| 1409 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1410 | 3. All advertising materials mentioning features or use of this software |
| 1411 | must display the following acknowledgement: |
| 1412 | This product includes software developed by the University of |
| 1413 | California, Berkeley and its contributors. |
| 1414 | 4. Neither the name of the University nor the names of its contributors |
| 1415 | may be used to endorse or promote products derived from this software |
| 1416 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1417 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1418 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1419 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1420 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1421 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1422 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1423 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1424 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1425 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1426 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1427 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1428 | SUCH DAMAGE. |
| 1429 | |
| 1430 | ------------------------------------------------------------------- |
| 1431 | |
| 1432 | Copyright (c) 1985, 1993 |
| 1433 | The Regents of the University of California. All rights reserved. |
| 1434 | |
| 1435 | Redistribution and use in source and binary forms, with or without |
| 1436 | modification, are permitted provided that the following conditions |
| 1437 | are met: |
| 1438 | 1. Redistributions of source code must retain the above copyright |
| 1439 | notice, this list of conditions and the following disclaimer. |
| 1440 | 2. Redistributions in binary form must reproduce the above copyright |
| 1441 | notice, this list of conditions and the following disclaimer in the |
| 1442 | documentation and/or other materials provided with the distribution. |
| 1443 | 3. All advertising materials mentioning features or use of this software |
| 1444 | must display the following acknowledgement: |
| 1445 | This product includes software developed by the University of |
| 1446 | California, Berkeley and its contributors. |
| 1447 | 4. Neither the name of the University nor the names of its contributors |
| 1448 | may be used to endorse or promote products derived from this software |
| 1449 | without specific prior written permission. |
| 1450 | |
| 1451 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1452 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1453 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1454 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1455 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1456 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1457 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1458 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1459 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1460 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1461 | SUCH DAMAGE. |
| 1462 | |
| 1463 | ------------------------------------------------------------------- |
| 1464 | |
| 1465 | Copyright (c) 1985, 1993 |
| 1466 | The Regents of the University of California. All rights reserved. |
| 1467 | |
| 1468 | Redistribution and use in source and binary forms, with or without |
| 1469 | modification, are permitted provided that the following conditions |
| 1470 | are met: |
| 1471 | 1. Redistributions of source code must retain the above copyright |
| 1472 | notice, this list of conditions and the following disclaimer. |
| 1473 | 2. Redistributions in binary form must reproduce the above copyright |
| 1474 | notice, this list of conditions and the following disclaimer in the |
| 1475 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 1476 | 3. All advertising materials mentioning features or use of this software |
| 1477 | must display the following acknowledgement: |
| 1478 | This product includes software developed by the University of |
| 1479 | California, Berkeley and its contributors. |
| 1480 | 4. Neither the name of the University nor the names of its contributors |
| 1481 | may be used to endorse or promote products derived from this software |
| 1482 | without specific prior written permission. |
| 1483 | |
| 1484 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1485 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1486 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1487 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1488 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1489 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1490 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1491 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1492 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1493 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1494 | SUCH DAMAGE. |
| 1495 | |
| 1496 | ------------------------------------------------------------------- |
| 1497 | |
| 1498 | Copyright (c) 1985, 1993 |
| 1499 | The Regents of the University of California. All rights reserved. |
| 1500 | |
| 1501 | Redistribution and use in source and binary forms, with or without |
| 1502 | modification, are permitted provided that the following conditions |
| 1503 | are met: |
| 1504 | 1. Redistributions of source code must retain the above copyright |
| 1505 | notice, this list of conditions and the following disclaimer. |
| 1506 | 2. Redistributions in binary form must reproduce the above copyright |
| 1507 | notice, this list of conditions and the following disclaimer in the |
| 1508 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1509 | 3. Neither the name of the University nor the names of its contributors |
| 1510 | may be used to endorse or promote products derived from this software |
| 1511 | without specific prior written permission. |
| 1512 | |
| 1513 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1514 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1515 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1516 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1517 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1518 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1519 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1520 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1521 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1522 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1523 | SUCH DAMAGE. |
| 1524 | |
| 1525 | ------------------------------------------------------------------- |
| 1526 | |
| 1527 | Copyright (c) 1987 Regents of the University of California. |
| 1528 | All rights reserved. |
| 1529 | |
| 1530 | Redistribution and use in source and binary forms, with or without |
| 1531 | modification, are permitted provided that the following conditions |
| 1532 | are met: |
| 1533 | 1. Redistributions of source code must retain the above copyright |
| 1534 | notice, this list of conditions and the following disclaimer. |
| 1535 | 2. Redistributions in binary form must reproduce the above copyright |
| 1536 | notice, this list of conditions and the following disclaimer in the |
| 1537 | documentation and/or other materials provided with the distribution. |
| 1538 | 3. Neither the name of the University nor the names of its contributors |
| 1539 | may be used to endorse or promote products derived from this software |
| 1540 | without specific prior written permission. |
| 1541 | |
| 1542 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1543 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1544 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1545 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1546 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1547 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1548 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1549 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1550 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1551 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1552 | SUCH DAMAGE. |
| 1553 | |
| 1554 | ------------------------------------------------------------------- |
| 1555 | |
| 1556 | Copyright (c) 1987, 1993 |
| 1557 | The Regents of the University of California. All rights reserved. |
| 1558 | |
| 1559 | Redistribution and use in source and binary forms, with or without |
| 1560 | modification, are permitted provided that the following conditions |
| 1561 | are met: |
| 1562 | 1. Redistributions of source code must retain the above copyright |
| 1563 | notice, this list of conditions and the following disclaimer. |
| 1564 | 2. Redistributions in binary form must reproduce the above copyright |
| 1565 | notice, this list of conditions and the following disclaimer in the |
| 1566 | documentation and/or other materials provided with the distribution. |
| 1567 | 3. All advertising materials mentioning features or use of this software |
| 1568 | must display the following acknowledgement: |
| 1569 | This product includes software developed by the University of |
| 1570 | California, Berkeley and its contributors. |
| 1571 | 4. Neither the name of the University nor the names of its contributors |
| 1572 | may be used to endorse or promote products derived from this software |
| 1573 | without specific prior written permission. |
| 1574 | |
| 1575 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1576 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1577 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1578 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1579 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1580 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1581 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1582 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1583 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1584 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1585 | SUCH DAMAGE. |
| 1586 | |
| 1587 | ------------------------------------------------------------------- |
| 1588 | |
| 1589 | Copyright (c) 1987, 1993 |
| 1590 | The Regents of the University of California. All rights reserved. |
| 1591 | |
| 1592 | Redistribution and use in source and binary forms, with or without |
| 1593 | modification, are permitted provided that the following conditions |
| 1594 | are met: |
| 1595 | 1. Redistributions of source code must retain the above copyright |
| 1596 | notice, this list of conditions and the following disclaimer. |
| 1597 | 2. Redistributions in binary form must reproduce the above copyright |
| 1598 | notice, this list of conditions and the following disclaimer in the |
| 1599 | documentation and/or other materials provided with the distribution. |
| 1600 | 3. Neither the name of the University nor the names of its contributors |
| 1601 | may be used to endorse or promote products derived from this software |
| 1602 | without specific prior written permission. |
| 1603 | |
| 1604 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1605 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1606 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1607 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1608 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1609 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1610 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1611 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1612 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1613 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1614 | SUCH DAMAGE. |
| 1615 | |
| 1616 | ------------------------------------------------------------------- |
| 1617 | |
| 1618 | Copyright (c) 1988 Regents of the University of California. |
| 1619 | All rights reserved. |
| 1620 | |
| 1621 | Redistribution and use in source and binary forms, with or without |
| 1622 | modification, are permitted provided that the following conditions |
| 1623 | are met: |
| 1624 | 1. Redistributions of source code must retain the above copyright |
| 1625 | notice, this list of conditions and the following disclaimer. |
| 1626 | 2. Redistributions in binary form must reproduce the above copyright |
| 1627 | notice, this list of conditions and the following disclaimer in the |
| 1628 | documentation and/or other materials provided with the distribution. |
| 1629 | 3. Neither the name of the University nor the names of its contributors |
| 1630 | may be used to endorse or promote products derived from this software |
| 1631 | without specific prior written permission. |
| 1632 | |
| 1633 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1634 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1635 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1636 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1637 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1638 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1639 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1640 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1641 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1642 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1643 | SUCH DAMAGE. |
| 1644 | |
| 1645 | ------------------------------------------------------------------- |
| 1646 | |
| 1647 | Copyright (c) 1988 The Regents of the University of California. |
| 1648 | All rights reserved. |
| 1649 | |
| 1650 | Redistribution and use in source and binary forms, with or without |
| 1651 | modification, are permitted provided that the following conditions |
| 1652 | are met: |
| 1653 | 1. Redistributions of source code must retain the above copyright |
| 1654 | notice, this list of conditions and the following disclaimer. |
| 1655 | 2. Redistributions in binary form must reproduce the above copyright |
| 1656 | notice, this list of conditions and the following disclaimer in the |
| 1657 | documentation and/or other materials provided with the distribution. |
| 1658 | 3. Neither the name of the University nor the names of its contributors |
| 1659 | may be used to endorse or promote products derived from this software |
| 1660 | without specific prior written permission. |
| 1661 | |
| 1662 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1663 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1664 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1665 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1666 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1667 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1668 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1669 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1670 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1671 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1672 | SUCH DAMAGE. |
| 1673 | |
| 1674 | ------------------------------------------------------------------- |
| 1675 | |
| 1676 | Copyright (c) 1988, 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1677 | The Regents of the University of California. All rights reserved. |
| 1678 | |
| 1679 | Redistribution and use in source and binary forms, with or without |
| 1680 | modification, are permitted provided that the following conditions |
| 1681 | are met: |
| 1682 | 1. Redistributions of source code must retain the above copyright |
| 1683 | notice, this list of conditions and the following disclaimer. |
| 1684 | 2. Redistributions in binary form must reproduce the above copyright |
| 1685 | notice, this list of conditions and the following disclaimer in the |
| 1686 | documentation and/or other materials provided with the distribution. |
| 1687 | 3. All advertising materials mentioning features or use of this software |
| 1688 | must display the following acknowledgement: |
| 1689 | This product includes software developed by the University of |
| 1690 | California, Berkeley and its contributors. |
| 1691 | 4. Neither the name of the University nor the names of its contributors |
| 1692 | may be used to endorse or promote products derived from this software |
| 1693 | without specific prior written permission. |
| 1694 | |
| 1695 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1696 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1697 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1698 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1699 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1700 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1701 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1702 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1703 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1704 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1705 | SUCH DAMAGE. |
| 1706 | |
| 1707 | ------------------------------------------------------------------- |
| 1708 | |
| 1709 | Copyright (c) 1988, 1993 |
| 1710 | The Regents of the University of California. All rights reserved. |
| 1711 | |
| 1712 | Redistribution and use in source and binary forms, with or without |
| 1713 | modification, are permitted provided that the following conditions |
| 1714 | are met: |
| 1715 | 1. Redistributions of source code must retain the above copyright |
| 1716 | notice, this list of conditions and the following disclaimer. |
| 1717 | 2. Redistributions in binary form must reproduce the above copyright |
| 1718 | notice, this list of conditions and the following disclaimer in the |
| 1719 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 1720 | 3. All advertising materials mentioning features or use of this software |
| 1721 | must display the following acknowledgement: |
| 1722 | This product includes software developed by the University of |
| 1723 | California, Berkeley and its contributors. |
| 1724 | 4. Neither the name of the University nor the names of its contributors |
| 1725 | may be used to endorse or promote products derived from this software |
| 1726 | without specific prior written permission. |
| 1727 | |
| 1728 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1729 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1730 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1731 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1732 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1733 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1734 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1735 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1736 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1737 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1738 | SUCH DAMAGE. |
| 1739 | |
| 1740 | ------------------------------------------------------------------- |
| 1741 | |
| 1742 | Copyright (c) 1988, 1993 |
| 1743 | The Regents of the University of California. All rights reserved. |
| 1744 | |
| 1745 | Redistribution and use in source and binary forms, with or without |
| 1746 | modification, are permitted provided that the following conditions |
| 1747 | are met: |
| 1748 | 1. Redistributions of source code must retain the above copyright |
| 1749 | notice, this list of conditions and the following disclaimer. |
| 1750 | 2. Redistributions in binary form must reproduce the above copyright |
| 1751 | notice, this list of conditions and the following disclaimer in the |
| 1752 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1753 | 3. Neither the name of the University nor the names of its contributors |
| 1754 | may be used to endorse or promote products derived from this software |
| 1755 | without specific prior written permission. |
| 1756 | |
| 1757 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1758 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1759 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1760 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1761 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1762 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1763 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1764 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1765 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1766 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1767 | SUCH DAMAGE. |
| 1768 | |
| 1769 | ------------------------------------------------------------------- |
| 1770 | |
| 1771 | Copyright (c) 1988, 1993 |
| 1772 | The Regents of the University of California. All rights reserved. |
| 1773 | |
| 1774 | This code is derived from software written by Ken Arnold and |
| 1775 | published in UNIX Review, Vol. 6, No. 8. |
| 1776 | |
| 1777 | Redistribution and use in source and binary forms, with or without |
| 1778 | modification, are permitted provided that the following conditions |
| 1779 | are met: |
| 1780 | 1. Redistributions of source code must retain the above copyright |
| 1781 | notice, this list of conditions and the following disclaimer. |
| 1782 | 2. Redistributions in binary form must reproduce the above copyright |
| 1783 | notice, this list of conditions and the following disclaimer in the |
| 1784 | documentation and/or other materials provided with the distribution. |
| 1785 | 3. Neither the name of the University nor the names of its contributors |
| 1786 | may be used to endorse or promote products derived from this software |
| 1787 | without specific prior written permission. |
| 1788 | |
| 1789 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1790 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1791 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1792 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1793 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1794 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1795 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1796 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1797 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1798 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1799 | SUCH DAMAGE. |
| 1800 | |
| 1801 | ------------------------------------------------------------------- |
| 1802 | |
| 1803 | Copyright (c) 1989 The Regents of the University of California. |
| 1804 | All rights reserved. |
| 1805 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1806 | Redistribution and use in source and binary forms, with or without |
| 1807 | modification, are permitted provided that the following conditions |
| 1808 | are met: |
| 1809 | 1. Redistributions of source code must retain the above copyright |
| 1810 | notice, this list of conditions and the following disclaimer. |
| 1811 | 2. Redistributions in binary form must reproduce the above copyright |
| 1812 | notice, this list of conditions and the following disclaimer in the |
| 1813 | documentation and/or other materials provided with the distribution. |
| 1814 | 3. Neither the name of the University nor the names of its contributors |
| 1815 | may be used to endorse or promote products derived from this software |
| 1816 | without specific prior written permission. |
| 1817 | |
| 1818 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1819 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1820 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1821 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1822 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1823 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1824 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1825 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1826 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1827 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1828 | SUCH DAMAGE. |
| 1829 | |
| 1830 | ------------------------------------------------------------------- |
| 1831 | |
| 1832 | Copyright (c) 1989 The Regents of the University of California. |
| 1833 | All rights reserved. |
| 1834 | (c) UNIX System Laboratories, Inc. |
| 1835 | All or some portions of this file are derived from material licensed |
| 1836 | to the University of California by American Telephone and Telegraph |
| 1837 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1838 | the permission of UNIX System Laboratories, Inc. |
| 1839 | |
| 1840 | Redistribution and use in source and binary forms, with or without |
| 1841 | modification, are permitted provided that the following conditions |
| 1842 | are met: |
| 1843 | 1. Redistributions of source code must retain the above copyright |
| 1844 | notice, this list of conditions and the following disclaimer. |
| 1845 | 2. Redistributions in binary form must reproduce the above copyright |
| 1846 | notice, this list of conditions and the following disclaimer in the |
| 1847 | documentation and/or other materials provided with the distribution. |
| 1848 | 3. Neither the name of the University nor the names of its contributors |
| 1849 | may be used to endorse or promote products derived from this software |
| 1850 | without specific prior written permission. |
| 1851 | |
| 1852 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1853 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1854 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1855 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1856 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1857 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1858 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1859 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1860 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1861 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1862 | SUCH DAMAGE. |
| 1863 | |
| 1864 | ------------------------------------------------------------------- |
| 1865 | |
| 1866 | Copyright (c) 1989, 1993 |
| 1867 | The Regents of the University of California. All rights reserved. |
| 1868 | |
| 1869 | Redistribution and use in source and binary forms, with or without |
| 1870 | modification, are permitted provided that the following conditions |
| 1871 | are met: |
| 1872 | 1. Redistributions of source code must retain the above copyright |
| 1873 | notice, this list of conditions and the following disclaimer. |
| 1874 | 2. Redistributions in binary form must reproduce the above copyright |
| 1875 | notice, this list of conditions and the following disclaimer in the |
| 1876 | documentation and/or other materials provided with the distribution. |
| 1877 | 3. Neither the name of the University nor the names of its contributors |
| 1878 | may be used to endorse or promote products derived from this software |
| 1879 | without specific prior written permission. |
| 1880 | |
| 1881 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1882 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1883 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1884 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1885 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1886 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1887 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1888 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1889 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1890 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1891 | SUCH DAMAGE. |
| 1892 | |
| 1893 | ------------------------------------------------------------------- |
| 1894 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1895 | Copyright (c) 1989, 1993 |
| 1896 | The Regents of the University of California. All rights reserved. |
| 1897 | |
| 1898 | Redistribution and use in source and binary forms, with or without |
| 1899 | modification, are permitted provided that the following conditions |
| 1900 | are met: |
| 1901 | 1. Redistributions of source code must retain the above copyright |
| 1902 | notice, this list of conditions and the following disclaimer. |
| 1903 | 2. Redistributions in binary form must reproduce the above copyright |
| 1904 | notice, this list of conditions and the following disclaimer in the |
| 1905 | documentation and/or other materials provided with the distribution. |
| 1906 | 4. Neither the name of the University nor the names of its contributors |
| 1907 | may be used to endorse or promote products derived from this software |
| 1908 | without specific prior written permission. |
| 1909 | |
| 1910 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1911 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1912 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1913 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1914 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1915 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1916 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1917 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1918 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1919 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1920 | SUCH DAMAGE. |
| 1921 | |
| 1922 | ------------------------------------------------------------------- |
| 1923 | |
| 1924 | Copyright (c) 1989, 1993 |
| 1925 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 1926 | |
| 1927 | This code is derived from software contributed to Berkeley by |
| 1928 | Roger L. Snyder. |
| 1929 | |
| 1930 | Redistribution and use in source and binary forms, with or without |
| 1931 | modification, are permitted provided that the following conditions |
| 1932 | are met: |
| 1933 | 1. Redistributions of source code must retain the above copyright |
| 1934 | notice, this list of conditions and the following disclaimer. |
| 1935 | 2. Redistributions in binary form must reproduce the above copyright |
| 1936 | notice, this list of conditions and the following disclaimer in the |
| 1937 | documentation and/or other materials provided with the distribution. |
| 1938 | 3. Neither the name of the University nor the names of its contributors |
| 1939 | may be used to endorse or promote products derived from this software |
| 1940 | without specific prior written permission. |
| 1941 | |
| 1942 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1943 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1944 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1945 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1946 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1947 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1948 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1949 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1950 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1951 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1952 | SUCH DAMAGE. |
| 1953 | |
| 1954 | ------------------------------------------------------------------- |
| 1955 | |
| 1956 | Copyright (c) 1989, 1993 |
| 1957 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1958 | (c) UNIX System Laboratories, Inc. |
| 1959 | All or some portions of this file are derived from material licensed |
| 1960 | to the University of California by American Telephone and Telegraph |
| 1961 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1962 | the permission of UNIX System Laboratories, Inc. |
| 1963 | |
| 1964 | Redistribution and use in source and binary forms, with or without |
| 1965 | modification, are permitted provided that the following conditions |
| 1966 | are met: |
| 1967 | 1. Redistributions of source code must retain the above copyright |
| 1968 | notice, this list of conditions and the following disclaimer. |
| 1969 | 2. Redistributions in binary form must reproduce the above copyright |
| 1970 | notice, this list of conditions and the following disclaimer in the |
| 1971 | documentation and/or other materials provided with the distribution. |
| 1972 | 3. Neither the name of the University nor the names of its contributors |
| 1973 | may be used to endorse or promote products derived from this software |
| 1974 | without specific prior written permission. |
| 1975 | |
| 1976 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1977 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1978 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1979 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1980 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1981 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1982 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1983 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1984 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1985 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1986 | SUCH DAMAGE. |
| 1987 | |
| 1988 | ------------------------------------------------------------------- |
| 1989 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 1990 | Copyright (c) 1990 Regents of the University of California. |
| 1991 | All rights reserved. |
| 1992 | |
| 1993 | This code is derived from software contributed to Berkeley by |
| 1994 | Chris Torek. |
| 1995 | |
| 1996 | Redistribution and use in source and binary forms, with or without |
| 1997 | modification, are permitted provided that the following conditions |
| 1998 | are met: |
| 1999 | 1. Redistributions of source code must retain the above copyright |
| 2000 | notice, this list of conditions and the following disclaimer. |
| 2001 | 2. Redistributions in binary form must reproduce the above copyright |
| 2002 | notice, this list of conditions and the following disclaimer in the |
| 2003 | documentation and/or other materials provided with the distribution. |
| 2004 | 3. Neither the name of the University nor the names of its contributors |
| 2005 | may be used to endorse or promote products derived from this software |
| 2006 | without specific prior written permission. |
| 2007 | |
| 2008 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2009 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2010 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2011 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2012 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2013 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2014 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2015 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2016 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2017 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2018 | SUCH DAMAGE. |
| 2019 | |
| 2020 | ------------------------------------------------------------------- |
| 2021 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2022 | Copyright (c) 1990 The Regents of the University of California. |
| 2023 | All rights reserved. |
| 2024 | |
| 2025 | Redistribution and use in source and binary forms, with or without |
| 2026 | modification, are permitted provided that the following conditions |
| 2027 | are met: |
| 2028 | 1. Redistributions of source code must retain the above copyright |
| 2029 | notice, this list of conditions and the following disclaimer. |
| 2030 | 2. Redistributions in binary form must reproduce the above copyright |
| 2031 | notice, this list of conditions and the following disclaimer in the |
| 2032 | documentation and/or other materials provided with the distribution. |
| 2033 | 3. Neither the name of the University nor the names of its contributors |
| 2034 | may be used to endorse or promote products derived from this software |
| 2035 | without specific prior written permission. |
| 2036 | |
| 2037 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2038 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2039 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2040 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2041 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2042 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2043 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2044 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2045 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2046 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2047 | SUCH DAMAGE. |
| 2048 | |
| 2049 | ------------------------------------------------------------------- |
| 2050 | |
| 2051 | Copyright (c) 1990 The Regents of the University of California. |
| 2052 | All rights reserved. |
| 2053 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2054 | This code is derived from software contributed to Berkeley by |
| 2055 | Chris Torek. |
| 2056 | |
| 2057 | Redistribution and use in source and binary forms, with or without |
| 2058 | modification, are permitted provided that the following conditions |
| 2059 | are met: |
| 2060 | 1. Redistributions of source code must retain the above copyright |
| 2061 | notice, this list of conditions and the following disclaimer. |
| 2062 | 2. Redistributions in binary form must reproduce the above copyright |
| 2063 | notice, this list of conditions and the following disclaimer in the |
| 2064 | documentation and/or other materials provided with the distribution. |
| 2065 | 3. Neither the name of the University nor the names of its contributors |
| 2066 | may be used to endorse or promote products derived from this software |
| 2067 | without specific prior written permission. |
| 2068 | |
| 2069 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2070 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2071 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2072 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2073 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2074 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2075 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2076 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2077 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2078 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2079 | SUCH DAMAGE. |
| 2080 | |
| 2081 | ------------------------------------------------------------------- |
| 2082 | |
| 2083 | Copyright (c) 1990 The Regents of the University of California. |
| 2084 | All rights reserved. |
| 2085 | |
| 2086 | This code is derived from software contributed to Berkeley by |
| 2087 | William Jolitz. |
| 2088 | |
| 2089 | Redistribution and use in source and binary forms, with or without |
| 2090 | modification, are permitted provided that the following conditions |
| 2091 | are met: |
| 2092 | 1. Redistributions of source code must retain the above copyright |
| 2093 | notice, this list of conditions and the following disclaimer. |
| 2094 | 2. Redistributions in binary form must reproduce the above copyright |
| 2095 | notice, this list of conditions and the following disclaimer in the |
| 2096 | documentation and/or other materials provided with the distribution. |
| 2097 | 3. Neither the name of the University nor the names of its contributors |
| 2098 | may be used to endorse or promote products derived from this software |
| 2099 | without specific prior written permission. |
| 2100 | |
| 2101 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2102 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2103 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2104 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2105 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2106 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2107 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2108 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2109 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2110 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2111 | SUCH DAMAGE. |
| 2112 | |
| 2113 | ------------------------------------------------------------------- |
| 2114 | |
| 2115 | Copyright (c) 1990, 1993 |
| 2116 | The Regents of the University of California. All rights reserved. |
| 2117 | |
| 2118 | Redistribution and use in source and binary forms, with or without |
| 2119 | modification, are permitted provided that the following conditions |
| 2120 | are met: |
| 2121 | 1. Redistributions of source code must retain the above copyright |
| 2122 | notice, this list of conditions and the following disclaimer. |
| 2123 | 2. Redistributions in binary form must reproduce the above copyright |
| 2124 | notice, this list of conditions and the following disclaimer in the |
| 2125 | documentation and/or other materials provided with the distribution. |
| 2126 | 3. Neither the name of the University nor the names of its contributors |
| 2127 | may be used to endorse or promote products derived from this software |
| 2128 | without specific prior written permission. |
| 2129 | |
| 2130 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2131 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2132 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2133 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2134 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2135 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2136 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2137 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2138 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2139 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2140 | SUCH DAMAGE. |
| 2141 | |
| 2142 | ------------------------------------------------------------------- |
| 2143 | |
| 2144 | Copyright (c) 1990, 1993 |
| 2145 | The Regents of the University of California. All rights reserved. |
| 2146 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2147 | This code is derived from software contributed to Berkeley by |
| 2148 | Chris Torek. |
| 2149 | |
| 2150 | Redistribution and use in source and binary forms, with or without |
| 2151 | modification, are permitted provided that the following conditions |
| 2152 | are met: |
| 2153 | 1. Redistributions of source code must retain the above copyright |
| 2154 | notice, this list of conditions and the following disclaimer. |
| 2155 | 2. Redistributions in binary form must reproduce the above copyright |
| 2156 | notice, this list of conditions and the following disclaimer in the |
| 2157 | documentation and/or other materials provided with the distribution. |
| 2158 | 3. Neither the name of the University nor the names of its contributors |
| 2159 | may be used to endorse or promote products derived from this software |
| 2160 | without specific prior written permission. |
| 2161 | |
| 2162 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2163 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2164 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2165 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2166 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2167 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2168 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2169 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2170 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2171 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2172 | SUCH DAMAGE. |
| 2173 | |
| 2174 | ------------------------------------------------------------------- |
| 2175 | |
| 2176 | Copyright (c) 1990, 1993 |
| 2177 | The Regents of the University of California. All rights reserved. |
| 2178 | |
| 2179 | This code is derived from software contributed to Berkeley by |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2180 | Donn Seeley at UUNET Technologies, Inc. |
| 2181 | |
| 2182 | Redistribution and use in source and binary forms, with or without |
| 2183 | modification, are permitted provided that the following conditions |
| 2184 | are met: |
| 2185 | 1. Redistributions of source code must retain the above copyright |
| 2186 | notice, this list of conditions and the following disclaimer. |
| 2187 | 2. Redistributions in binary form must reproduce the above copyright |
| 2188 | notice, this list of conditions and the following disclaimer in the |
| 2189 | documentation and/or other materials provided with the distribution. |
| 2190 | 3. Neither the name of the University nor the names of its contributors |
| 2191 | may be used to endorse or promote products derived from this software |
| 2192 | without specific prior written permission. |
| 2193 | |
| 2194 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2195 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2196 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2197 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2198 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2199 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2200 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2201 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2202 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2203 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2204 | SUCH DAMAGE. |
| 2205 | |
| 2206 | ------------------------------------------------------------------- |
| 2207 | |
| 2208 | Copyright (c) 1990, 1993 |
| 2209 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2210 | |
| 2211 | This code is derived from software contributed to Berkeley by |
| 2212 | Donn Seeley at UUNET Technologies, Inc. |
| 2213 | |
| 2214 | Redistribution and use in source and binary forms, with or without |
| 2215 | modification, are permitted provided that the following conditions |
| 2216 | are met: |
| 2217 | 1. Redistributions of source code must retain the above copyright |
| 2218 | notice, this list of conditions and the following disclaimer. |
| 2219 | 2. Redistributions in binary form must reproduce the above copyright |
| 2220 | notice, this list of conditions and the following disclaimer in the |
| 2221 | documentation and/or other materials provided with the distribution. |
| 2222 | 4. Neither the name of the University nor the names of its contributors |
| 2223 | may be used to endorse or promote products derived from this software |
| 2224 | without specific prior written permission. |
| 2225 | |
| 2226 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2227 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2228 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2229 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2230 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2231 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2232 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2233 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2234 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2235 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2236 | SUCH DAMAGE. |
| 2237 | |
| 2238 | ------------------------------------------------------------------- |
| 2239 | |
| 2240 | Copyright (c) 1990, 1993 |
| 2241 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2242 | (c) UNIX System Laboratories, Inc. |
| 2243 | All or some portions of this file are derived from material licensed |
| 2244 | to the University of California by American Telephone and Telegraph |
| 2245 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2246 | the permission of UNIX System Laboratories, Inc. |
| 2247 | |
| 2248 | Redistribution and use in source and binary forms, with or without |
| 2249 | modification, are permitted provided that the following conditions |
| 2250 | are met: |
| 2251 | 1. Redistributions of source code must retain the above copyright |
| 2252 | notice, this list of conditions and the following disclaimer. |
| 2253 | 2. Redistributions in binary form must reproduce the above copyright |
| 2254 | notice, this list of conditions and the following disclaimer in the |
| 2255 | documentation and/or other materials provided with the distribution. |
| 2256 | 3. Neither the name of the University nor the names of its contributors |
| 2257 | may be used to endorse or promote products derived from this software |
| 2258 | without specific prior written permission. |
| 2259 | |
| 2260 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2261 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2262 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2263 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2264 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2265 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2266 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2267 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2268 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2269 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2270 | SUCH DAMAGE. |
| 2271 | |
| 2272 | ------------------------------------------------------------------- |
| 2273 | |
| 2274 | Copyright (c) 1990, 1993, 1994 |
| 2275 | The Regents of the University of California. All rights reserved. |
| 2276 | |
| 2277 | Redistribution and use in source and binary forms, with or without |
| 2278 | modification, are permitted provided that the following conditions |
| 2279 | are met: |
| 2280 | 1. Redistributions of source code must retain the above copyright |
| 2281 | notice, this list of conditions and the following disclaimer. |
| 2282 | 2. Redistributions in binary form must reproduce the above copyright |
| 2283 | notice, this list of conditions and the following disclaimer in the |
| 2284 | documentation and/or other materials provided with the distribution. |
| 2285 | 3. Neither the name of the University nor the names of its contributors |
| 2286 | may be used to endorse or promote products derived from this software |
| 2287 | without specific prior written permission. |
| 2288 | |
| 2289 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2290 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2291 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2292 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2293 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2294 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2295 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2296 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2297 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2298 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2299 | SUCH DAMAGE. |
| 2300 | |
| 2301 | ------------------------------------------------------------------- |
| 2302 | |
| 2303 | Copyright (c) 1990, 1993, 1994 |
| 2304 | The Regents of the University of California. All rights reserved. |
| 2305 | |
| 2306 | This code is derived from software contributed to Berkeley by |
| 2307 | Chris Torek. |
| 2308 | |
| 2309 | Redistribution and use in source and binary forms, with or without |
| 2310 | modification, are permitted provided that the following conditions |
| 2311 | are met: |
| 2312 | 1. Redistributions of source code must retain the above copyright |
| 2313 | notice, this list of conditions and the following disclaimer. |
| 2314 | 2. Redistributions in binary form must reproduce the above copyright |
| 2315 | notice, this list of conditions and the following disclaimer in the |
| 2316 | documentation and/or other materials provided with the distribution. |
| 2317 | 3. Neither the name of the University nor the names of its contributors |
| 2318 | may be used to endorse or promote products derived from this software |
| 2319 | without specific prior written permission. |
| 2320 | |
| 2321 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2322 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2323 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2324 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2325 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2326 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2327 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2328 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2329 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2330 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2331 | SUCH DAMAGE. |
| 2332 | |
| 2333 | ------------------------------------------------------------------- |
| 2334 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2335 | Copyright (c) 1991 The Regents of the University of California. |
| 2336 | All rights reserved. |
| 2337 | |
| 2338 | Redistribution and use in source and binary forms, with or without |
| 2339 | modification, are permitted provided that the following conditions |
| 2340 | are met: |
| 2341 | 1. Redistributions of source code must retain the above copyright |
| 2342 | notice, this list of conditions and the following disclaimer. |
| 2343 | 2. Redistributions in binary form must reproduce the above copyright |
| 2344 | notice, this list of conditions and the following disclaimer in the |
| 2345 | documentation and/or other materials provided with the distribution. |
| 2346 | 3. Neither the name of the University nor the names of its contributors |
| 2347 | may be used to endorse or promote products derived from this software |
| 2348 | without specific prior written permission. |
| 2349 | |
| 2350 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2351 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2352 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2353 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2354 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2355 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2356 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2357 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2358 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2359 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2360 | SUCH DAMAGE. |
| 2361 | |
| 2362 | ------------------------------------------------------------------- |
| 2363 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2364 | Copyright (c) 1991, 1993 |
| 2365 | The Regents of the University of California. All rights reserved. |
| 2366 | |
| 2367 | Redistribution and use in source and binary forms, with or without |
| 2368 | modification, are permitted provided that the following conditions |
| 2369 | are met: |
| 2370 | 1. Redistributions of source code must retain the above copyright |
| 2371 | notice, this list of conditions and the following disclaimer. |
| 2372 | 2. Redistributions in binary form must reproduce the above copyright |
| 2373 | notice, this list of conditions and the following disclaimer in the |
| 2374 | documentation and/or other materials provided with the distribution. |
| 2375 | 3. Neither the name of the University nor the names of its contributors |
| 2376 | may be used to endorse or promote products derived from this software |
| 2377 | without specific prior written permission. |
| 2378 | |
| 2379 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2380 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2381 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2382 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2383 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2384 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2385 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2386 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2387 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2388 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2389 | SUCH DAMAGE. |
| 2390 | |
| 2391 | ------------------------------------------------------------------- |
| 2392 | |
| 2393 | Copyright (c) 1991, 1993 |
| 2394 | The Regents of the University of California. All rights reserved. |
| 2395 | |
| 2396 | This code is derived from software contributed to Berkeley by |
| 2397 | Berkeley Software Design, Inc. |
| 2398 | |
| 2399 | Redistribution and use in source and binary forms, with or without |
| 2400 | modification, are permitted provided that the following conditions |
| 2401 | are met: |
| 2402 | 1. Redistributions of source code must retain the above copyright |
| 2403 | notice, this list of conditions and the following disclaimer. |
| 2404 | 2. Redistributions in binary form must reproduce the above copyright |
| 2405 | notice, this list of conditions and the following disclaimer in the |
| 2406 | documentation and/or other materials provided with the distribution. |
| 2407 | 3. Neither the name of the University nor the names of its contributors |
| 2408 | may be used to endorse or promote products derived from this software |
| 2409 | without specific prior written permission. |
| 2410 | |
| 2411 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2412 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2413 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2414 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2415 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2416 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2417 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2418 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2419 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2420 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2421 | SUCH DAMAGE. |
| 2422 | |
| 2423 | ------------------------------------------------------------------- |
| 2424 | |
| 2425 | Copyright (c) 1991, 1993 |
| 2426 | The Regents of the University of California. All rights reserved. |
| 2427 | (c) UNIX System Laboratories, Inc. |
| 2428 | All or some portions of this file are derived from material licensed |
| 2429 | to the University of California by American Telephone and Telegraph |
| 2430 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2431 | the permission of UNIX System Laboratories, Inc. |
| 2432 | |
| 2433 | This code is derived from software contributed to Berkeley by |
| 2434 | Hugh Smith at The University of Guelph. |
| 2435 | |
| 2436 | Redistribution and use in source and binary forms, with or without |
| 2437 | modification, are permitted provided that the following conditions |
| 2438 | are met: |
| 2439 | 1. Redistributions of source code must retain the above copyright |
| 2440 | notice, this list of conditions and the following disclaimer. |
| 2441 | 2. Redistributions in binary form must reproduce the above copyright |
| 2442 | notice, this list of conditions and the following disclaimer in the |
| 2443 | documentation and/or other materials provided with the distribution. |
| 2444 | 3. Neither the name of the University nor the names of its contributors |
| 2445 | may be used to endorse or promote products derived from this software |
| 2446 | without specific prior written permission. |
| 2447 | |
| 2448 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2449 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2450 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2451 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2452 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2453 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2454 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2455 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2456 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2457 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2458 | SUCH DAMAGE. |
| 2459 | |
| 2460 | ------------------------------------------------------------------- |
| 2461 | |
| 2462 | Copyright (c) 1991, 1993, 1995, |
| 2463 | The Regents of the University of California. All rights reserved. |
| 2464 | |
| 2465 | This code is derived from software contributed to Berkeley by |
| 2466 | Havard Eidnes. |
| 2467 | |
| 2468 | Redistribution and use in source and binary forms, with or without |
| 2469 | modification, are permitted provided that the following conditions |
| 2470 | are met: |
| 2471 | 1. Redistributions of source code must retain the above copyright |
| 2472 | notice, this list of conditions and the following disclaimer. |
| 2473 | 2. Redistributions in binary form must reproduce the above copyright |
| 2474 | notice, this list of conditions and the following disclaimer in the |
| 2475 | documentation and/or other materials provided with the distribution. |
| 2476 | 3. Neither the name of the University nor the names of its contributors |
| 2477 | may be used to endorse or promote products derived from this software |
| 2478 | without specific prior written permission. |
| 2479 | |
| 2480 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2481 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2482 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2483 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2484 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2485 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2486 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2487 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2488 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2489 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2490 | SUCH DAMAGE. |
| 2491 | |
| 2492 | ------------------------------------------------------------------- |
| 2493 | |
| 2494 | Copyright (c) 1992 Henry Spencer. |
| 2495 | Copyright (c) 1992, 1993 |
| 2496 | The Regents of the University of California. All rights reserved. |
| 2497 | |
| 2498 | This code is derived from software contributed to Berkeley by |
| 2499 | Henry Spencer of the University of Toronto. |
| 2500 | |
| 2501 | Redistribution and use in source and binary forms, with or without |
| 2502 | modification, are permitted provided that the following conditions |
| 2503 | are met: |
| 2504 | 1. Redistributions of source code must retain the above copyright |
| 2505 | notice, this list of conditions and the following disclaimer. |
| 2506 | 2. Redistributions in binary form must reproduce the above copyright |
| 2507 | notice, this list of conditions and the following disclaimer in the |
| 2508 | documentation and/or other materials provided with the distribution. |
| 2509 | 3. Neither the name of the University nor the names of its contributors |
| 2510 | may be used to endorse or promote products derived from this software |
| 2511 | without specific prior written permission. |
| 2512 | |
| 2513 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2514 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2515 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2516 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2517 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2518 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2519 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2520 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2521 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2522 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2523 | SUCH DAMAGE. |
| 2524 | |
| 2525 | ------------------------------------------------------------------- |
| 2526 | |
| 2527 | Copyright (c) 1992 The Regents of the University of California. |
| 2528 | All rights reserved. |
| 2529 | |
| 2530 | Redistribution and use in source and binary forms, with or without |
| 2531 | modification, are permitted provided that the following conditions |
| 2532 | are met: |
| 2533 | 1. Redistributions of source code must retain the above copyright |
| 2534 | notice, this list of conditions and the following disclaimer. |
| 2535 | 2. Redistributions in binary form must reproduce the above copyright |
| 2536 | notice, this list of conditions and the following disclaimer in the |
| 2537 | documentation and/or other materials provided with the distribution. |
| 2538 | 3. Neither the name of the University nor the names of its contributors |
| 2539 | may be used to endorse or promote products derived from this software |
| 2540 | without specific prior written permission. |
| 2541 | |
| 2542 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2543 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2544 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2545 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2546 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2547 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2548 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2549 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2550 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2551 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2552 | SUCH DAMAGE. |
| 2553 | |
| 2554 | ------------------------------------------------------------------- |
| 2555 | |
| 2556 | Copyright (c) 1992, 1993 |
| 2557 | The Regents of the University of California. All rights reserved. |
| 2558 | |
| 2559 | Redistribution and use in source and binary forms, with or without |
| 2560 | modification, are permitted provided that the following conditions |
| 2561 | are met: |
| 2562 | 1. Redistributions of source code must retain the above copyright |
| 2563 | notice, this list of conditions and the following disclaimer. |
| 2564 | 2. Redistributions in binary form must reproduce the above copyright |
| 2565 | notice, this list of conditions and the following disclaimer in the |
| 2566 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 2567 | 3. All advertising materials mentioning features or use of this software |
| 2568 | must display the following acknowledgement: |
| 2569 | This product includes software developed by the University of |
| 2570 | California, Berkeley and its contributors. |
| 2571 | 4. Neither the name of the University nor the names of its contributors |
| 2572 | may be used to endorse or promote products derived from this software |
| 2573 | without specific prior written permission. |
| 2574 | |
| 2575 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2576 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2577 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2578 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2579 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2580 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2581 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2582 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2583 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2584 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2585 | SUCH DAMAGE. |
| 2586 | |
| 2587 | ------------------------------------------------------------------- |
| 2588 | |
| 2589 | Copyright (c) 1992, 1993 |
| 2590 | The Regents of the University of California. All rights reserved. |
| 2591 | |
| 2592 | Redistribution and use in source and binary forms, with or without |
| 2593 | modification, are permitted provided that the following conditions |
| 2594 | are met: |
| 2595 | 1. Redistributions of source code must retain the above copyright |
| 2596 | notice, this list of conditions and the following disclaimer. |
| 2597 | 2. Redistributions in binary form must reproduce the above copyright |
| 2598 | notice, this list of conditions and the following disclaimer in the |
| 2599 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2600 | 3. Neither the name of the University nor the names of its contributors |
| 2601 | may be used to endorse or promote products derived from this software |
| 2602 | without specific prior written permission. |
| 2603 | |
| 2604 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2605 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2606 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2607 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2608 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2609 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2610 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2611 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2612 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2613 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2614 | SUCH DAMAGE. |
| 2615 | |
| 2616 | ------------------------------------------------------------------- |
| 2617 | |
| 2618 | Copyright (c) 1992, 1993 |
| 2619 | The Regents of the University of California. All rights reserved. |
| 2620 | |
| 2621 | This code is derived from software contributed to Berkeley by |
| 2622 | Ralph Campbell. |
| 2623 | |
| 2624 | Redistribution and use in source and binary forms, with or without |
| 2625 | modification, are permitted provided that the following conditions |
| 2626 | are met: |
| 2627 | 1. Redistributions of source code must retain the above copyright |
| 2628 | notice, this list of conditions and the following disclaimer. |
| 2629 | 2. Redistributions in binary form must reproduce the above copyright |
| 2630 | notice, this list of conditions and the following disclaimer in the |
| 2631 | documentation and/or other materials provided with the distribution. |
| 2632 | 3. Neither the name of the University nor the names of its contributors |
| 2633 | may be used to endorse or promote products derived from this software |
| 2634 | without specific prior written permission. |
| 2635 | |
| 2636 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2637 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2638 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2639 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2640 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2641 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2642 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2643 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2644 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2645 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2646 | SUCH DAMAGE. |
| 2647 | |
| 2648 | ------------------------------------------------------------------- |
| 2649 | |
| 2650 | Copyright (c) 1992, 1993 |
| 2651 | The Regents of the University of California. All rights reserved. |
| 2652 | |
| 2653 | This code is derived from software contributed to Berkeley by |
| 2654 | Ralph Campbell. This file is derived from the MIPS RISC |
| 2655 | Architecture book by Gerry Kane. |
| 2656 | |
| 2657 | Redistribution and use in source and binary forms, with or without |
| 2658 | modification, are permitted provided that the following conditions |
| 2659 | are met: |
| 2660 | 1. Redistributions of source code must retain the above copyright |
| 2661 | notice, this list of conditions and the following disclaimer. |
| 2662 | 2. Redistributions in binary form must reproduce the above copyright |
| 2663 | notice, this list of conditions and the following disclaimer in the |
| 2664 | documentation and/or other materials provided with the distribution. |
| 2665 | 3. Neither the name of the University nor the names of its contributors |
| 2666 | may be used to endorse or promote products derived from this software |
| 2667 | without specific prior written permission. |
| 2668 | |
| 2669 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2670 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2671 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2672 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2673 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2674 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2675 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2676 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2677 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2678 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2679 | SUCH DAMAGE. |
| 2680 | |
| 2681 | ------------------------------------------------------------------- |
| 2682 | |
| 2683 | Copyright (c) 1992, 1993 |
| 2684 | The Regents of the University of California. All rights reserved. |
| 2685 | |
| 2686 | This software was developed by the Computer Systems Engineering group |
| 2687 | at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and |
| 2688 | contributed to Berkeley. |
| 2689 | |
| 2690 | All advertising materials mentioning features or use of this software |
| 2691 | must display the following acknowledgement: |
| 2692 | This product includes software developed by the University of |
| 2693 | California, Lawrence Berkeley Laboratory. |
| 2694 | |
| 2695 | Redistribution and use in source and binary forms, with or without |
| 2696 | modification, are permitted provided that the following conditions |
| 2697 | are met: |
| 2698 | 1. Redistributions of source code must retain the above copyright |
| 2699 | notice, this list of conditions and the following disclaimer. |
| 2700 | 2. Redistributions in binary form must reproduce the above copyright |
| 2701 | notice, this list of conditions and the following disclaimer in the |
| 2702 | documentation and/or other materials provided with the distribution. |
| 2703 | 3. All advertising materials mentioning features or use of this software |
| 2704 | must display the following acknowledgement: |
| 2705 | This product includes software developed by the University of |
| 2706 | California, Berkeley and its contributors. |
| 2707 | 4. Neither the name of the University nor the names of its contributors |
| 2708 | may be used to endorse or promote products derived from this software |
| 2709 | without specific prior written permission. |
| 2710 | |
| 2711 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2712 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2713 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2714 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2715 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2716 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2717 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2718 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2719 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2720 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2721 | SUCH DAMAGE. |
| 2722 | |
| 2723 | ------------------------------------------------------------------- |
| 2724 | |
| 2725 | Copyright (c) 1992, 1993 |
| 2726 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2727 | (c) UNIX System Laboratories, Inc. |
| 2728 | All or some portions of this file are derived from material licensed |
| 2729 | to the University of California by American Telephone and Telegraph |
| 2730 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2731 | the permission of UNIX System Laboratories, Inc. |
| 2732 | |
| 2733 | Redistribution and use in source and binary forms, with or without |
| 2734 | modification, are permitted provided that the following conditions |
| 2735 | are met: |
| 2736 | 1. Redistributions of source code must retain the above copyright |
| 2737 | notice, this list of conditions and the following disclaimer. |
| 2738 | 2. Redistributions in binary form must reproduce the above copyright |
| 2739 | notice, this list of conditions and the following disclaimer in the |
| 2740 | documentation and/or other materials provided with the distribution. |
| 2741 | 3. Neither the name of the University nor the names of its contributors |
| 2742 | may be used to endorse or promote products derived from this software |
| 2743 | without specific prior written permission. |
| 2744 | |
| 2745 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2746 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2747 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2748 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2749 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2750 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2751 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2752 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2753 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2754 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2755 | SUCH DAMAGE. |
| 2756 | |
| 2757 | ------------------------------------------------------------------- |
| 2758 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2759 | Copyright (c) 1992, 1993, 1994 |
| 2760 | The Regents of the University of California. All rights reserved. |
| 2761 | |
| 2762 | This code is derived from software contributed to Berkeley by |
| 2763 | Henry Spencer. |
| 2764 | |
| 2765 | Redistribution and use in source and binary forms, with or without |
| 2766 | modification, are permitted provided that the following conditions |
| 2767 | are met: |
| 2768 | 1. Redistributions of source code must retain the above copyright |
| 2769 | notice, this list of conditions and the following disclaimer. |
| 2770 | 2. Redistributions in binary form must reproduce the above copyright |
| 2771 | notice, this list of conditions and the following disclaimer in the |
| 2772 | documentation and/or other materials provided with the distribution. |
| 2773 | 3. Neither the name of the University nor the names of its contributors |
| 2774 | may be used to endorse or promote products derived from this software |
| 2775 | without specific prior written permission. |
| 2776 | |
| 2777 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2778 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2779 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2780 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2781 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2782 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2783 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2784 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2785 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2786 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2787 | SUCH DAMAGE. |
| 2788 | |
| 2789 | ------------------------------------------------------------------- |
| 2790 | |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 2791 | Copyright (c) 1992, 1993, 1994 Henry Spencer. |
| 2792 | |
| 2793 | This code is derived from software contributed to Berkeley by |
| 2794 | Henry Spencer. |
| 2795 | |
| 2796 | Redistribution and use in source and binary forms, with or without |
| 2797 | modification, are permitted provided that the following conditions |
| 2798 | are met: |
| 2799 | 1. Redistributions of source code must retain the above copyright |
| 2800 | notice, this list of conditions and the following disclaimer. |
| 2801 | 2. Redistributions in binary form must reproduce the above copyright |
| 2802 | notice, this list of conditions and the following disclaimer in the |
| 2803 | documentation and/or other materials provided with the distribution. |
| 2804 | 3. All advertising materials mentioning features or use of this software |
| 2805 | must display the following acknowledgement: |
| 2806 | This product includes software developed by the University of |
| 2807 | California, Berkeley and its contributors. |
| 2808 | 4. Neither the name of the University nor the names of its contributors |
| 2809 | may be used to endorse or promote products derived from this software |
| 2810 | without specific prior written permission. |
| 2811 | |
| 2812 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2813 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2814 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2815 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2816 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2817 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2818 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2819 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2820 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2821 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2822 | SUCH DAMAGE. |
| 2823 | |
| 2824 | ------------------------------------------------------------------- |
| 2825 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2826 | Copyright (c) 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2827 | The Regents of the University of California. All rights reserved. |
| 2828 | |
| 2829 | Redistribution and use in source and binary forms, with or without |
| 2830 | modification, are permitted provided that the following conditions |
| 2831 | are met: |
| 2832 | 1. Redistributions of source code must retain the above copyright |
| 2833 | notice, this list of conditions and the following disclaimer. |
| 2834 | 2. Redistributions in binary form must reproduce the above copyright |
| 2835 | notice, this list of conditions and the following disclaimer in the |
| 2836 | documentation and/or other materials provided with the distribution. |
| 2837 | 3. Neither the name of the University nor the names of its contributors |
| 2838 | may be used to endorse or promote products derived from this software |
| 2839 | without specific prior written permission. |
| 2840 | |
| 2841 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2842 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2843 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2844 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2845 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2846 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2847 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2848 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2849 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2850 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2851 | SUCH DAMAGE. |
| 2852 | |
| 2853 | ------------------------------------------------------------------- |
| 2854 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2855 | Copyright (c) 1993 Martin Birgmeier |
| 2856 | All rights reserved. |
| 2857 | |
| 2858 | You may redistribute unmodified or modified versions of this source |
| 2859 | code provided that the above copyright notice and this and the |
| 2860 | following conditions are retained. |
| 2861 | |
| 2862 | This software is provided ``as is'', and comes with no warranties |
| 2863 | of any kind. I shall in no event be liable for anything that happens |
| 2864 | to anyone/anything when using this software. |
| 2865 | |
| 2866 | ------------------------------------------------------------------- |
| 2867 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2868 | Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2869 | All rights reserved. |
| 2870 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2871 | Redistribution and use in source and binary forms, with or without |
| 2872 | modification, are permitted provided that the following conditions |
| 2873 | are met: |
| 2874 | 1. Redistributions of source code must retain the above copyright |
| 2875 | notice, this list of conditions and the following disclaimer. |
| 2876 | 2. Redistributions in binary form must reproduce the above copyright |
| 2877 | notice, this list of conditions and the following disclaimer in the |
| 2878 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2879 | 3. The name of the author may not be used to endorse or promote products |
| 2880 | derived from this software without specific prior written permission. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2881 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2882 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2883 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2884 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2885 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2886 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2887 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2888 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2889 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2890 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2891 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2892 | |
| 2893 | ------------------------------------------------------------------- |
| 2894 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2895 | Copyright (c) 1996 by Internet Software Consortium. |
| 2896 | |
| 2897 | Permission to use, copy, modify, and distribute this software for any |
| 2898 | purpose with or without fee is hereby granted, provided that the above |
| 2899 | copyright notice and this permission notice appear in all copies. |
| 2900 | |
| 2901 | THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS |
| 2902 | ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES |
| 2903 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE |
| 2904 | CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 2905 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 2906 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 2907 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 2908 | SOFTWARE. |
| 2909 | |
| 2910 | ------------------------------------------------------------------- |
| 2911 | |
| 2912 | Copyright (c) 1996, David Mazieres <dm@uun.org> |
| 2913 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 2914 | Copyright (c) 2013, Markus Friedl <markus@openbsd.org> |
| 2915 | |
| 2916 | Permission to use, copy, modify, and distribute this software for any |
| 2917 | purpose with or without fee is hereby granted, provided that the above |
| 2918 | copyright notice and this permission notice appear in all copies. |
| 2919 | |
| 2920 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2921 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2922 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2923 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2924 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2925 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2926 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2927 | |
| 2928 | ------------------------------------------------------------------- |
| 2929 | |
| 2930 | Copyright (c) 1996-1998, 2008 Theo de Raadt |
| 2931 | Copyright (c) 1997, 2008-2009 Todd C. Miller |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2932 | |
| 2933 | Permission to use, copy, modify, and distribute this software for any |
| 2934 | purpose with or without fee is hereby granted, provided that the above |
| 2935 | copyright notice and this permission notice appear in all copies. |
| 2936 | |
| 2937 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2938 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2939 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2940 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2941 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2942 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2943 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2944 | |
| 2945 | ------------------------------------------------------------------- |
| 2946 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2947 | Copyright (c) 1997 Mark Brinicombe |
Elliott Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 2948 | Copyright (C) 2010 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2949 | All rights reserved. |
| 2950 | |
| 2951 | Redistribution and use in source and binary forms, with or without |
| 2952 | modification, are permitted provided that the following conditions |
| 2953 | are met: |
| 2954 | 1. Redistributions of source code must retain the above copyright |
| 2955 | notice, this list of conditions and the following disclaimer. |
| 2956 | 2. Redistributions in binary form must reproduce the above copyright |
| 2957 | notice, this list of conditions and the following disclaimer in the |
| 2958 | documentation and/or other materials provided with the distribution. |
| 2959 | 3. All advertising materials mentioning features or use of this software |
| 2960 | must display the following acknowledgement: |
| 2961 | This product includes software developed by Mark Brinicombe |
| 2962 | 4. Neither the name of the University nor the names of its contributors |
| 2963 | may be used to endorse or promote products derived from this software |
| 2964 | without specific prior written permission. |
| 2965 | |
| 2966 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 2967 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2968 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2969 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 2970 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2971 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2972 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2973 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2974 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2975 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2976 | SUCH DAMAGE. |
| 2977 | |
| 2978 | ------------------------------------------------------------------- |
| 2979 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2980 | Copyright (c) 1997 Niklas Hallqvist. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2981 | |
| 2982 | Redistribution and use in source and binary forms, with or without |
| 2983 | modification, are permitted provided that the following conditions |
| 2984 | are met: |
| 2985 | 1. Redistributions of source code must retain the above copyright |
| 2986 | notice, this list of conditions and the following disclaimer. |
| 2987 | 2. Redistributions in binary form must reproduce the above copyright |
| 2988 | notice, this list of conditions and the following disclaimer in the |
| 2989 | documentation and/or other materials provided with the distribution. |
| 2990 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2991 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2992 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2993 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2994 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 2995 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 2996 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 2997 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 2998 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 2999 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3000 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3001 | |
| 3002 | ------------------------------------------------------------------- |
| 3003 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3004 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3005 | |
| 3006 | Permission to use, copy, modify, and distribute this software for any |
| 3007 | purpose with or without fee is hereby granted, provided that the above |
| 3008 | copyright notice and this permission notice appear in all copies. |
| 3009 | |
| 3010 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3011 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3012 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3013 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3014 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3015 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3016 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3017 | |
| 3018 | ------------------------------------------------------------------- |
| 3019 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3020 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3021 | All rights reserved. |
| 3022 | |
| 3023 | Redistribution and use in source and binary forms, with or without |
| 3024 | modification, are permitted provided that the following conditions |
| 3025 | are met: |
| 3026 | 1. Redistributions of source code must retain the above copyright |
| 3027 | notice, this list of conditions and the following disclaimer. |
| 3028 | 2. Redistributions in binary form must reproduce the above copyright |
| 3029 | notice, this list of conditions and the following disclaimer in the |
| 3030 | documentation and/or other materials provided with the distribution. |
| 3031 | 3. The name of the author may not be used to endorse or promote products |
| 3032 | derived from this software without specific prior written permission. |
| 3033 | |
| 3034 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 3035 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 3036 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 3037 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 3038 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 3039 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 3040 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3041 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3042 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3043 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3044 | |
| 3045 | ------------------------------------------------------------------- |
| 3046 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3047 | Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3048 | All rights reserved. |
| 3049 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3050 | This code was contributed to The NetBSD Foundation by Klaus Klein. |
| 3051 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3052 | Redistribution and use in source and binary forms, with or without |
| 3053 | modification, are permitted provided that the following conditions |
| 3054 | are met: |
| 3055 | 1. Redistributions of source code must retain the above copyright |
| 3056 | notice, this list of conditions and the following disclaimer. |
| 3057 | 2. Redistributions in binary form must reproduce the above copyright |
| 3058 | notice, this list of conditions and the following disclaimer in the |
| 3059 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3060 | 3. All advertising materials mentioning features or use of this software |
| 3061 | must display the following acknowledgement: |
| 3062 | This product includes software developed by the NetBSD |
| 3063 | Foundation, Inc. and its contributors. |
| 3064 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3065 | contributors may be used to endorse or promote products derived |
| 3066 | from this software without specific prior written permission. |
| 3067 | |
| 3068 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3069 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3070 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3071 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3072 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3073 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3074 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3075 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3076 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3077 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3078 | POSSIBILITY OF SUCH DAMAGE. |
| 3079 | |
| 3080 | ------------------------------------------------------------------- |
| 3081 | |
| 3082 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 3083 | All rights reserved. |
| 3084 | |
| 3085 | This code is derived from software contributed to The NetBSD Foundation |
| 3086 | by Luke Mewburn. |
| 3087 | |
| 3088 | Redistribution and use in source and binary forms, with or without |
| 3089 | modification, are permitted provided that the following conditions |
| 3090 | are met: |
| 3091 | 1. Redistributions of source code must retain the above copyright |
| 3092 | notice, this list of conditions and the following disclaimer. |
| 3093 | 2. Redistributions in binary form must reproduce the above copyright |
| 3094 | notice, this list of conditions and the following disclaimer in the |
| 3095 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3096 | |
| 3097 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3098 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3099 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3100 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3101 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3102 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3103 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3104 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3105 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3106 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3107 | POSSIBILITY OF SUCH DAMAGE. |
| 3108 | |
| 3109 | ------------------------------------------------------------------- |
| 3110 | |
| 3111 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 3112 | All rights reserved. |
| 3113 | |
| 3114 | This code is derived from software contributed to The NetBSD Foundation |
| 3115 | by Luke Mewburn; and by Jason R. Thorpe. |
| 3116 | |
| 3117 | Redistribution and use in source and binary forms, with or without |
| 3118 | modification, are permitted provided that the following conditions |
| 3119 | are met: |
| 3120 | 1. Redistributions of source code must retain the above copyright |
| 3121 | notice, this list of conditions and the following disclaimer. |
| 3122 | 2. Redistributions in binary form must reproduce the above copyright |
| 3123 | notice, this list of conditions and the following disclaimer in the |
| 3124 | documentation and/or other materials provided with the distribution. |
| 3125 | 3. All advertising materials mentioning features or use of this software |
| 3126 | must display the following acknowledgement: |
| 3127 | This product includes software developed by the NetBSD |
| 3128 | Foundation, Inc. and its contributors. |
| 3129 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3130 | contributors may be used to endorse or promote products derived |
| 3131 | from this software without specific prior written permission. |
| 3132 | |
| 3133 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3134 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3135 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3136 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3137 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3138 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3139 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3140 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3141 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3142 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3143 | POSSIBILITY OF SUCH DAMAGE. |
| 3144 | |
| 3145 | ------------------------------------------------------------------- |
| 3146 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3147 | Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3148 | |
| 3149 | Permission to use, copy, modify, and distribute this software for any |
| 3150 | purpose with or without fee is hereby granted, provided that the above |
| 3151 | copyright notice and this permission notice appear in all copies. |
| 3152 | |
| 3153 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3154 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3155 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3156 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3157 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3158 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3159 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3160 | |
| 3161 | ------------------------------------------------------------------- |
| 3162 | |
| 3163 | Copyright (c) 1998 Softweyr LLC. All rights reserved. |
| 3164 | |
| 3165 | strtok_r, from Berkeley strtok |
| 3166 | Oct 13, 1998 by Wes Peters <wes@softweyr.com> |
| 3167 | |
| 3168 | Copyright (c) 1988, 1993 |
| 3169 | The Regents of the University of California. All rights reserved. |
| 3170 | |
| 3171 | Redistribution and use in source and binary forms, with or without |
| 3172 | modification, are permitted provided that the following conditions |
| 3173 | are met: |
| 3174 | 1. Redistributions of source code must retain the above copyright |
| 3175 | notices, this list of conditions and the following disclaimer. |
| 3176 | 2. Redistributions in binary form must reproduce the above copyright |
| 3177 | notices, this list of conditions and the following disclaimer in the |
| 3178 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 3179 | 3. Neither the name of the University nor the names of its contributors |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3180 | may be used to endorse or promote products derived from this software |
| 3181 | without specific prior written permission. |
| 3182 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3183 | THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS |
| 3184 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3185 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 3186 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE |
| 3187 | REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 3188 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 3189 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 3190 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 3191 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 3192 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 3193 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3194 | |
| 3195 | ------------------------------------------------------------------- |
| 3196 | |
| 3197 | Copyright (c) 1998 The NetBSD Foundation, Inc. |
| 3198 | All rights reserved. |
| 3199 | |
| 3200 | This code is derived from software contributed to The NetBSD Foundation |
| 3201 | by Klaus Klein. |
| 3202 | |
| 3203 | Redistribution and use in source and binary forms, with or without |
| 3204 | modification, are permitted provided that the following conditions |
| 3205 | are met: |
| 3206 | 1. Redistributions of source code must retain the above copyright |
| 3207 | notice, this list of conditions and the following disclaimer. |
| 3208 | 2. Redistributions in binary form must reproduce the above copyright |
| 3209 | notice, this list of conditions and the following disclaimer in the |
| 3210 | documentation and/or other materials provided with the distribution. |
| 3211 | 3. All advertising materials mentioning features or use of this software |
| 3212 | must display the following acknowledgement: |
| 3213 | This product includes software developed by the NetBSD |
| 3214 | Foundation, Inc. and its contributors. |
| 3215 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3216 | contributors may be used to endorse or promote products derived |
| 3217 | from this software without specific prior written permission. |
| 3218 | |
| 3219 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3220 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3221 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3222 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3223 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3224 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3225 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3226 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3227 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3228 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3229 | POSSIBILITY OF SUCH DAMAGE. |
| 3230 | |
| 3231 | ------------------------------------------------------------------- |
| 3232 | |
| 3233 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3234 | All rights reserved. |
| 3235 | |
| 3236 | Redistribution and use in source and binary forms, with or without |
| 3237 | modification, are permitted provided that the following conditions |
| 3238 | are met: |
| 3239 | 1. Redistributions of source code must retain the above copyright |
| 3240 | notice, this list of conditions and the following disclaimer. |
| 3241 | 2. Redistributions in binary form must reproduce the above copyright |
| 3242 | notice, this list of conditions and the following disclaimer in the |
| 3243 | documentation and/or other materials provided with the distribution. |
| 3244 | 3. The name of the author may not be used to endorse or promote products |
| 3245 | derived from this software without specific prior written permission. |
| 3246 | |
| 3247 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 3248 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 3249 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 3250 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 3251 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 3252 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 3253 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3254 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3255 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3256 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3257 | |
| 3258 | ------------------------------------------------------------------- |
| 3259 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 3260 | Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3261 | |
| 3262 | Permission to use, copy, modify, and distribute this software for any |
| 3263 | purpose with or without fee is hereby granted, provided that the above |
| 3264 | copyright notice and this permission notice appear in all copies. |
| 3265 | |
| 3266 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3267 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3268 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3269 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3270 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3271 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3272 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3273 | |
| 3274 | ------------------------------------------------------------------- |
| 3275 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3276 | Copyright (c) 1999 |
| 3277 | David E. O'Brien |
| 3278 | Copyright (c) 1988, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3279 | The Regents of the University of California. All rights reserved. |
| 3280 | |
| 3281 | Redistribution and use in source and binary forms, with or without |
| 3282 | modification, are permitted provided that the following conditions |
| 3283 | are met: |
| 3284 | 1. Redistributions of source code must retain the above copyright |
| 3285 | notice, this list of conditions and the following disclaimer. |
| 3286 | 2. Redistributions in binary form must reproduce the above copyright |
| 3287 | notice, this list of conditions and the following disclaimer in the |
| 3288 | documentation and/or other materials provided with the distribution. |
| 3289 | 3. Neither the name of the University nor the names of its contributors |
| 3290 | may be used to endorse or promote products derived from this software |
| 3291 | without specific prior written permission. |
| 3292 | |
| 3293 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 3294 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3295 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3296 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 3297 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3298 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3299 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3300 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3301 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3302 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3303 | SUCH DAMAGE. |
| 3304 | |
| 3305 | ------------------------------------------------------------------- |
| 3306 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3307 | Copyright (c) 2000 Ben Harris. |
| 3308 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
| 3309 | All rights reserved. |
| 3310 | |
| 3311 | Redistribution and use in source and binary forms, with or without |
| 3312 | modification, are permitted provided that the following conditions |
| 3313 | are met: |
| 3314 | 1. Redistributions of source code must retain the above copyright |
| 3315 | notice, this list of conditions and the following disclaimer. |
| 3316 | 2. Redistributions in binary form must reproduce the above copyright |
| 3317 | notice, this list of conditions and the following disclaimer in the |
| 3318 | documentation and/or other materials provided with the distribution. |
| 3319 | 3. Neither the name of the project nor the names of its contributors |
| 3320 | may be used to endorse or promote products derived from this software |
| 3321 | without specific prior written permission. |
| 3322 | |
| 3323 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
| 3324 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3325 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3326 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
| 3327 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3328 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3329 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3330 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3331 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3332 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3333 | SUCH DAMAGE. |
| 3334 | |
| 3335 | ------------------------------------------------------------------- |
| 3336 | |
| 3337 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 3338 | All rights reserved. |
| 3339 | |
| 3340 | This code is derived from software contributed to The NetBSD Foundation |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3341 | by Dieter Baron and Thomas Klausner. |
| 3342 | |
| 3343 | Redistribution and use in source and binary forms, with or without |
| 3344 | modification, are permitted provided that the following conditions |
| 3345 | are met: |
| 3346 | 1. Redistributions of source code must retain the above copyright |
| 3347 | notice, this list of conditions and the following disclaimer. |
| 3348 | 2. Redistributions in binary form must reproduce the above copyright |
| 3349 | notice, this list of conditions and the following disclaimer in the |
| 3350 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3351 | |
| 3352 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3353 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3354 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3355 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3356 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3357 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3358 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3359 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3360 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3361 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3362 | POSSIBILITY OF SUCH DAMAGE. |
| 3363 | |
| 3364 | ------------------------------------------------------------------- |
| 3365 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3366 | Copyright (c) 2001 Wasabi Systems, Inc. |
| 3367 | All rights reserved. |
| 3368 | |
| 3369 | Written by Frank van der Linden for Wasabi Systems, Inc. |
| 3370 | |
| 3371 | Redistribution and use in source and binary forms, with or without |
| 3372 | modification, are permitted provided that the following conditions |
| 3373 | are met: |
| 3374 | 1. Redistributions of source code must retain the above copyright |
| 3375 | notice, this list of conditions and the following disclaimer. |
| 3376 | 2. Redistributions in binary form must reproduce the above copyright |
| 3377 | notice, this list of conditions and the following disclaimer in the |
| 3378 | documentation and/or other materials provided with the distribution. |
| 3379 | 3. All advertising materials mentioning features or use of this software |
| 3380 | must display the following acknowledgement: |
| 3381 | This product includes software developed for the NetBSD Project by |
| 3382 | Wasabi Systems, Inc. |
| 3383 | 4. The name of Wasabi Systems, Inc. may not be used to endorse |
| 3384 | or promote products derived from this software without specific prior |
| 3385 | written permission. |
| 3386 | |
| 3387 | THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND |
| 3388 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3389 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3390 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC |
| 3391 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3392 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3393 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3394 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3395 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3396 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3397 | POSSIBILITY OF SUCH DAMAGE. |
| 3398 | |
| 3399 | ------------------------------------------------------------------- |
| 3400 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3401 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3402 | |
| 3403 | Redistribution and use in source and binary forms, with or without |
| 3404 | modification, are permitted provided that the following conditions |
| 3405 | are met: |
| 3406 | 1. Redistributions of source code must retain the above copyright |
| 3407 | notice, this list of conditions and the following disclaimer. |
| 3408 | 2. Redistributions in binary form must reproduce the above copyright |
| 3409 | notice, this list of conditions and the following disclaimer in the |
| 3410 | documentation and/or other materials provided with the distribution. |
| 3411 | |
| 3412 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3413 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3414 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3415 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3416 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3417 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3418 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3419 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3420 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3421 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3422 | SUCH DAMAGE. |
| 3423 | |
| 3424 | ------------------------------------------------------------------- |
| 3425 | |
| 3426 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3427 | |
| 3428 | Redistribution and use in source and binary forms, with or without |
| 3429 | modification, are permitted provided that the following conditions |
| 3430 | are met: |
| 3431 | 1. Redistributions of source code must retain the above copyright |
| 3432 | notice, this list of conditions and the following disclaimer. |
| 3433 | 2. 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 | 3. Neither the name of Opsycon AB nor the names of its contributors |
| 3437 | may be used to endorse or promote products derived from this software |
| 3438 | without specific prior written permission. |
| 3439 | |
| 3440 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3441 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3442 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3443 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3444 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3445 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3446 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3447 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3448 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3449 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3450 | SUCH DAMAGE. |
| 3451 | |
| 3452 | ------------------------------------------------------------------- |
| 3453 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3454 | Copyright (c) 2001-2011 The FreeBSD Project. |
| 3455 | All rights reserved. |
| 3456 | |
| 3457 | Redistribution and use in source and binary forms, with or without |
| 3458 | modification, are permitted provided that the following conditions |
| 3459 | are met: |
| 3460 | 1. Redistributions of source code must retain the above copyright |
| 3461 | notice, this list of conditions and the following disclaimer. |
| 3462 | 2. Redistributions in binary form must reproduce the above copyright |
| 3463 | notice, this list of conditions and the following disclaimer in the |
| 3464 | documentation and/or other materials provided with the distribution. |
| 3465 | |
| 3466 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3467 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3468 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3469 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3470 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3471 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3472 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3473 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3474 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3475 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3476 | SUCH DAMAGE. |
| 3477 | |
| 3478 | ------------------------------------------------------------------- |
| 3479 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3480 | Copyright (c) 2002 Daniel Hartmeier |
| 3481 | All rights reserved. |
| 3482 | |
| 3483 | Redistribution and use in source and binary forms, with or without |
| 3484 | modification, are permitted provided that the following conditions |
| 3485 | are met: |
| 3486 | |
| 3487 | - Redistributions of source code must retain the above copyright |
| 3488 | notice, this list of conditions and the following disclaimer. |
| 3489 | - Redistributions in binary form must reproduce the above |
| 3490 | copyright notice, this list of conditions and the following |
| 3491 | disclaimer in the documentation and/or other materials provided |
| 3492 | with the distribution. |
| 3493 | |
| 3494 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 3495 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3496 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 3497 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 3498 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3499 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 3500 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 3501 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 3502 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3503 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 3504 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3505 | POSSIBILITY OF SUCH DAMAGE. |
| 3506 | |
| 3507 | ------------------------------------------------------------------- |
| 3508 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3509 | Copyright (c) 2002 The NetBSD Foundation, Inc. |
| 3510 | All rights reserved. |
| 3511 | |
| 3512 | This code is derived from software contributed to The NetBSD Foundation |
| 3513 | by Christos Zoulas. |
| 3514 | |
| 3515 | Redistribution and use in source and binary forms, with or without |
| 3516 | modification, are permitted provided that the following conditions |
| 3517 | are met: |
| 3518 | 1. Redistributions of source code must retain the above copyright |
| 3519 | notice, this list of conditions and the following disclaimer. |
| 3520 | 2. Redistributions in binary form must reproduce the above copyright |
| 3521 | notice, this list of conditions and the following disclaimer in the |
| 3522 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3523 | |
| 3524 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3525 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3526 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3527 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3528 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3529 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3530 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3531 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3532 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3533 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3534 | POSSIBILITY OF SUCH DAMAGE. |
| 3535 | |
| 3536 | ------------------------------------------------------------------- |
| 3537 | |
| 3538 | Copyright (c) 2002 Tim J. Robbins |
| 3539 | All rights reserved. |
| 3540 | |
| 3541 | Redistribution and use in source and binary forms, with or without |
| 3542 | modification, are permitted provided that the following conditions |
| 3543 | are met: |
| 3544 | 1. Redistributions of source code must retain the above copyright |
| 3545 | notice, this list of conditions and the following disclaimer. |
| 3546 | 2. Redistributions in binary form must reproduce the above copyright |
| 3547 | notice, this list of conditions and the following disclaimer in the |
| 3548 | documentation and/or other materials provided with the distribution. |
| 3549 | |
| 3550 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3551 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3552 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3553 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3554 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3555 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3556 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3557 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3558 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3559 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3560 | SUCH DAMAGE. |
| 3561 | |
| 3562 | ------------------------------------------------------------------- |
| 3563 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3564 | Copyright (c) 2002 Tim J. Robbins. |
| 3565 | All rights reserved. |
| 3566 | |
| 3567 | Redistribution and use in source and binary forms, with or without |
| 3568 | modification, are permitted provided that the following conditions |
| 3569 | are met: |
| 3570 | 1. Redistributions of source code must retain the above copyright |
| 3571 | notice, this list of conditions and the following disclaimer. |
| 3572 | 2. Redistributions in binary form must reproduce the above copyright |
| 3573 | notice, this list of conditions and the following disclaimer in the |
| 3574 | documentation and/or other materials provided with the distribution. |
| 3575 | |
| 3576 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3577 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3578 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3579 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3580 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3581 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3582 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3583 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3584 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3585 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3586 | SUCH DAMAGE. |
| 3587 | |
| 3588 | ------------------------------------------------------------------- |
| 3589 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3590 | Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3591 | |
| 3592 | Permission to use, copy, modify, and distribute this software for any |
| 3593 | purpose with or without fee is hereby granted, provided that the above |
| 3594 | copyright notice and this permission notice appear in all copies. |
| 3595 | |
| 3596 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3597 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3598 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3599 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3600 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3601 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3602 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3603 | |
| 3604 | Sponsored in part by the Defense Advanced Research Projects |
| 3605 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3606 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3607 | |
| 3608 | ------------------------------------------------------------------- |
| 3609 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3610 | Copyright (c) 2002, 2003 Tim J. Robbins. |
| 3611 | All rights reserved. |
| 3612 | |
| 3613 | Redistribution and use in source and binary forms, with or without |
| 3614 | modification, are permitted provided that the following conditions |
| 3615 | are met: |
| 3616 | 1. Redistributions of source code must retain the above copyright |
| 3617 | notice, this list of conditions and the following disclaimer. |
| 3618 | 2. Redistributions in binary form must reproduce the above copyright |
| 3619 | notice, this list of conditions and the following disclaimer in the |
| 3620 | documentation and/or other materials provided with the distribution. |
| 3621 | |
| 3622 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3623 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3624 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3625 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3626 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3627 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3628 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3629 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3630 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3631 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3632 | SUCH DAMAGE. |
| 3633 | |
| 3634 | ------------------------------------------------------------------- |
| 3635 | |
| 3636 | Copyright (c) 2002-2004 Tim J. Robbins |
| 3637 | All rights reserved. |
| 3638 | |
| 3639 | Redistribution and use in source and binary forms, with or without |
| 3640 | modification, are permitted provided that the following conditions |
| 3641 | are met: |
| 3642 | 1. Redistributions of source code must retain the above copyright |
| 3643 | notice, this list of conditions and the following disclaimer. |
| 3644 | 2. Redistributions in binary form must reproduce the above copyright |
| 3645 | notice, this list of conditions and the following disclaimer in the |
| 3646 | documentation and/or other materials provided with the distribution. |
| 3647 | |
| 3648 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3649 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3650 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3651 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3652 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3653 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3654 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3655 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3656 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3657 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3658 | SUCH DAMAGE. |
| 3659 | |
| 3660 | ------------------------------------------------------------------- |
| 3661 | |
| 3662 | Copyright (c) 2002-2004 Tim J. Robbins. |
| 3663 | All rights reserved. |
| 3664 | |
| 3665 | Redistribution and use in source and binary forms, with or without |
| 3666 | modification, are permitted provided that the following conditions |
| 3667 | are met: |
| 3668 | 1. Redistributions of source code must retain the above copyright |
| 3669 | notice, this list of conditions and the following disclaimer. |
| 3670 | 2. Redistributions in binary form must reproduce the above copyright |
| 3671 | notice, this list of conditions and the following disclaimer in the |
| 3672 | documentation and/or other materials provided with the distribution. |
| 3673 | |
| 3674 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3675 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3676 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3677 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3678 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3679 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3680 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3681 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3682 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3683 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3684 | SUCH DAMAGE. |
| 3685 | |
| 3686 | ------------------------------------------------------------------- |
| 3687 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3688 | Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
| 3689 | |
| 3690 | Redistribution and use in source and binary forms, with or without |
| 3691 | modification, are permitted provided that the following conditions |
| 3692 | are met: |
| 3693 | 1. Redistributions of source code must retain the above copyright |
| 3694 | notice, this list of conditions and the following disclaimer. |
| 3695 | 2. Redistributions in binary form must reproduce the above copyright |
| 3696 | notice, this list of conditions and the following disclaimer in the |
| 3697 | documentation and/or other materials provided with the distribution. |
| 3698 | 3. The names of the authors may not be used to endorse or promote |
| 3699 | products derived from this software without specific prior written |
| 3700 | permission. |
| 3701 | |
| 3702 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3703 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3704 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3705 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3706 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3707 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3708 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3709 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3710 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3711 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3712 | SUCH DAMAGE. |
| 3713 | |
| 3714 | ------------------------------------------------------------------- |
| 3715 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3716 | Copyright (c) 2003 Dag-Erling Smørgrav |
| 3717 | All rights reserved. |
| 3718 | |
| 3719 | Redistribution and use in source and binary forms, with or without |
| 3720 | modification, are permitted provided that the following conditions |
| 3721 | are met: |
| 3722 | 1. Redistributions of source code must retain the above copyright |
| 3723 | notice, this list of conditions and the following disclaimer |
| 3724 | in this position and unchanged. |
| 3725 | 2. Redistributions in binary form must reproduce the above copyright |
| 3726 | notice, this list of conditions and the following disclaimer in the |
| 3727 | documentation and/or other materials provided with the distribution. |
| 3728 | 3. The name of the author may not be used to endorse or promote products |
| 3729 | derived from this software without specific prior written permission. |
| 3730 | |
| 3731 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3732 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3733 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3734 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3735 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3736 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3737 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3738 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3739 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3740 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3741 | |
| 3742 | ------------------------------------------------------------------- |
| 3743 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3744 | Copyright (c) 2003 David Schultz <das@FreeBSD.ORG> |
| 3745 | All rights reserved. |
| 3746 | |
| 3747 | Redistribution and use in source and binary forms, with or without |
| 3748 | modification, are permitted provided that the following conditions |
| 3749 | are met: |
| 3750 | 1. Redistributions of source code must retain the above copyright |
| 3751 | notice, this list of conditions and the following disclaimer. |
| 3752 | 2. Redistributions in binary form must reproduce the above copyright |
| 3753 | notice, this list of conditions and the following disclaimer in the |
| 3754 | documentation and/or other materials provided with the distribution. |
| 3755 | |
| 3756 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3757 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3758 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3759 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3760 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3761 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3762 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3763 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3764 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3765 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3766 | SUCH DAMAGE. |
| 3767 | |
| 3768 | ------------------------------------------------------------------- |
| 3769 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3770 | Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> |
| 3771 | All rights reserved. |
| 3772 | |
| 3773 | Redistribution and use in source and binary forms, with or without |
| 3774 | modification, are permitted provided that the following conditions |
| 3775 | are met: |
| 3776 | 1. Redistributions of source code must retain the above copyright |
| 3777 | notice, this list of conditions and the following disclaimer. |
| 3778 | 2. Redistributions in binary form must reproduce the above copyright |
| 3779 | notice, this list of conditions and the following disclaimer in the |
| 3780 | documentation and/or other materials provided with the distribution. |
| 3781 | |
| 3782 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3783 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3784 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3785 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3786 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3787 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3788 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3789 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3790 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3791 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3792 | SUCH DAMAGE. |
| 3793 | |
| 3794 | ------------------------------------------------------------------- |
| 3795 | |
| 3796 | Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> |
| 3797 | Copyright (c) 2002 David Schultz <das@FreeBSD.ORG> |
| 3798 | All rights reserved. |
| 3799 | |
| 3800 | Redistribution and use in source and binary forms, with or without |
| 3801 | modification, are permitted provided that the following conditions |
| 3802 | are met: |
| 3803 | 1. Redistributions of source code must retain the above copyright |
| 3804 | notice, this list of conditions and the following disclaimer. |
| 3805 | 2. Redistributions in binary form must reproduce the above copyright |
| 3806 | notice, this list of conditions and the following disclaimer in the |
| 3807 | documentation and/or other materials provided with the distribution. |
| 3808 | |
| 3809 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3810 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3811 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3812 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3813 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3814 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3815 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3816 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3817 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3818 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3819 | SUCH DAMAGE. |
| 3820 | |
| 3821 | ------------------------------------------------------------------- |
| 3822 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3823 | Copyright (c) 2003 Networks Associates Technology, Inc. |
| 3824 | All rights reserved. |
| 3825 | |
| 3826 | Portions of this software were developed for the FreeBSD Project by |
| 3827 | Jacques A. Vidrine, Safeport Network Services, and Network |
| 3828 | Associates Laboratories, the Security Research Division of Network |
| 3829 | Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 |
| 3830 | ("CBOSS"), as part of the DARPA CHATS research program. |
| 3831 | |
| 3832 | Redistribution and use in source and binary forms, with or without |
| 3833 | modification, are permitted provided that the following conditions |
| 3834 | are met: |
| 3835 | 1. Redistributions of source code must retain the above copyright |
| 3836 | notice, this list of conditions and the following disclaimer. |
| 3837 | 2. Redistributions in binary form must reproduce the above copyright |
| 3838 | notice, this list of conditions and the following disclaimer in the |
| 3839 | documentation and/or other materials provided with the distribution. |
| 3840 | |
| 3841 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3842 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3843 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3844 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3845 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3846 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3847 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3848 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3849 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3850 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3851 | SUCH DAMAGE. |
| 3852 | |
| 3853 | ------------------------------------------------------------------- |
| 3854 | |
Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 3855 | Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3856 | |
| 3857 | Permission to use, copy, modify, and distribute this software for any |
| 3858 | purpose with or without fee is hereby granted, provided that the above |
| 3859 | copyright notice and this permission notice appear in all copies. |
| 3860 | |
| 3861 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3862 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3863 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3864 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3865 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3866 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3867 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3868 | |
| 3869 | Sponsored in part by the Defense Advanced Research Projects |
| 3870 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3871 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3872 | |
| 3873 | ------------------------------------------------------------------- |
| 3874 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3875 | Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3876 | |
| 3877 | Permission to use, copy, modify, and distribute this software for any |
| 3878 | purpose with or without fee is hereby granted, provided that the above |
| 3879 | copyright notice and this permission notice appear in all copies. |
| 3880 | |
| 3881 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3882 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3883 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3884 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3885 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3886 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3887 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3888 | |
| 3889 | Sponsored in part by the Defense Advanced Research Projects |
| 3890 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3891 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3892 | |
| 3893 | ------------------------------------------------------------------- |
| 3894 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3895 | Copyright (c) 2003, Steven G. Kargl |
| 3896 | All rights reserved. |
| 3897 | |
| 3898 | Redistribution and use in source and binary forms, with or without |
| 3899 | modification, are permitted provided that the following conditions |
| 3900 | are met: |
| 3901 | 1. Redistributions of source code must retain the above copyright |
| 3902 | notice unmodified, this list of conditions, and the following |
| 3903 | disclaimer. |
| 3904 | 2. Redistributions in binary form must reproduce the above copyright |
| 3905 | notice, this list of conditions and the following disclaimer in the |
| 3906 | documentation and/or other materials provided with the distribution. |
| 3907 | |
| 3908 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3909 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3910 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3911 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3912 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3913 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3914 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3915 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3916 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3917 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3918 | |
| 3919 | ------------------------------------------------------------------- |
| 3920 | |
| 3921 | Copyright (c) 2004 David Schultz <das@FreeBSD.ORG> |
| 3922 | All rights reserved. |
| 3923 | |
| 3924 | Redistribution and use in source and binary forms, with or without |
| 3925 | modification, are permitted provided that the following conditions |
| 3926 | are met: |
| 3927 | 1. Redistributions of source code must retain the above copyright |
| 3928 | notice, this list of conditions and the following disclaimer. |
| 3929 | 2. Redistributions in binary form must reproduce the above copyright |
| 3930 | notice, this list of conditions and the following disclaimer in the |
| 3931 | documentation and/or other materials provided with the distribution. |
| 3932 | |
| 3933 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3934 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3935 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3936 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3937 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3938 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3939 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3940 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3941 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3942 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3943 | SUCH DAMAGE. |
| 3944 | |
| 3945 | ------------------------------------------------------------------- |
| 3946 | |
| 3947 | Copyright (c) 2004 Stefan Farfeleder |
| 3948 | All rights reserved. |
| 3949 | |
| 3950 | Redistribution and use in source and binary forms, with or without |
| 3951 | modification, are permitted provided that the following conditions |
| 3952 | are met: |
| 3953 | 1. Redistributions of source code must retain the above copyright |
| 3954 | notice, this list of conditions and the following disclaimer. |
| 3955 | 2. Redistributions in binary form must reproduce the above copyright |
| 3956 | notice, this list of conditions and the following disclaimer in the |
| 3957 | documentation and/or other materials provided with the distribution. |
| 3958 | |
| 3959 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3960 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3961 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3962 | ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3963 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3964 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3965 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3966 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3967 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3968 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3969 | SUCH DAMAGE. |
| 3970 | |
| 3971 | ------------------------------------------------------------------- |
| 3972 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3973 | Copyright (c) 2004 The NetBSD Foundation, Inc. |
| 3974 | All rights reserved. |
| 3975 | |
| 3976 | This code is derived from software contributed to The NetBSD Foundation |
| 3977 | by Christos Zoulas. |
| 3978 | |
| 3979 | Redistribution and use in source and binary forms, with or without |
| 3980 | modification, are permitted provided that the following conditions |
| 3981 | are met: |
| 3982 | 1. Redistributions of source code must retain the above copyright |
| 3983 | notice, this list of conditions and the following disclaimer. |
| 3984 | 2. Redistributions in binary form must reproduce the above copyright |
| 3985 | notice, this list of conditions and the following disclaimer in the |
| 3986 | documentation and/or other materials provided with the distribution. |
| 3987 | 3. All advertising materials mentioning features or use of this software |
| 3988 | must display the following acknowledgement: |
| 3989 | This product includes software developed by the NetBSD |
| 3990 | Foundation, Inc. and its contributors. |
| 3991 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3992 | contributors may be used to endorse or promote products derived |
| 3993 | from this software without specific prior written permission. |
| 3994 | |
| 3995 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3996 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3997 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3998 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3999 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4000 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4001 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4002 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4003 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4004 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4005 | POSSIBILITY OF SUCH DAMAGE. |
| 4006 | |
| 4007 | ------------------------------------------------------------------- |
| 4008 | |
| 4009 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4010 | Copyright (c) 1995,1999 by Internet Software Consortium. |
| 4011 | |
| 4012 | Permission to use, copy, modify, and distribute this software for any |
| 4013 | purpose with or without fee is hereby granted, provided that the above |
| 4014 | copyright notice and this permission notice appear in all copies. |
| 4015 | |
| 4016 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4017 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4018 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4019 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4020 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4021 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4022 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4023 | |
| 4024 | ------------------------------------------------------------------- |
| 4025 | |
| 4026 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4027 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 4028 | |
| 4029 | Permission to use, copy, modify, and distribute this software for any |
| 4030 | purpose with or without fee is hereby granted, provided that the above |
| 4031 | copyright notice and this permission notice appear in all copies. |
| 4032 | |
| 4033 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4034 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4035 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4036 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4037 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4038 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4039 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4040 | |
| 4041 | ------------------------------------------------------------------- |
| 4042 | |
| 4043 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4044 | Copyright (c) 1995-1999 by Internet Software Consortium. |
| 4045 | |
| 4046 | Permission to use, copy, modify, and distribute this software for any |
| 4047 | purpose with or without fee is hereby granted, provided that the above |
| 4048 | copyright notice and this permission notice appear in all copies. |
| 4049 | |
| 4050 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4051 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4052 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4053 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4054 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4055 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4056 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4057 | |
| 4058 | ------------------------------------------------------------------- |
| 4059 | |
| 4060 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4061 | Copyright (c) 1996,1999 by Internet Software Consortium. |
| 4062 | |
| 4063 | Permission to use, copy, modify, and distribute this software for any |
| 4064 | purpose with or without fee is hereby granted, provided that the above |
| 4065 | copyright notice and this permission notice appear in all copies. |
| 4066 | |
| 4067 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4068 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4069 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4070 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4071 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4072 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4073 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4074 | |
| 4075 | ------------------------------------------------------------------- |
| 4076 | |
| 4077 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4078 | Copyright (c) 1996-1999 by Internet Software Consortium |
| 4079 | |
| 4080 | Permission to use, copy, modify, and distribute this software for any |
| 4081 | purpose with or without fee is hereby granted, provided that the above |
| 4082 | copyright notice and this permission notice appear in all copies. |
| 4083 | |
| 4084 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4085 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4086 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4087 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4088 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4089 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4090 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4091 | |
| 4092 | ------------------------------------------------------------------- |
| 4093 | |
| 4094 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4095 | Copyright (c) 1996-1999 by Internet Software Consortium. |
| 4096 | |
| 4097 | Permission to use, copy, modify, and distribute this software for any |
| 4098 | purpose with or without fee is hereby granted, provided that the above |
| 4099 | copyright notice and this permission notice appear in all copies. |
| 4100 | |
| 4101 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4102 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4103 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4104 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4105 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4106 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4107 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4108 | |
| 4109 | ------------------------------------------------------------------- |
| 4110 | |
| 4111 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4112 | Copyright (c) 1997,1999 by Internet Software Consortium. |
| 4113 | |
| 4114 | Permission to use, copy, modify, and distribute this software for any |
| 4115 | purpose with or without fee is hereby granted, provided that the above |
| 4116 | copyright notice and this permission notice appear in all copies. |
| 4117 | |
| 4118 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4119 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4120 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4121 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4122 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4123 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4124 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4125 | |
| 4126 | ------------------------------------------------------------------- |
| 4127 | |
| 4128 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4129 | Copyright (c) 1999 by Internet Software Consortium. |
| 4130 | |
| 4131 | Permission to use, copy, modify, and distribute this software for any |
| 4132 | purpose with or without fee is hereby granted, provided that the above |
| 4133 | copyright notice and this permission notice appear in all copies. |
| 4134 | |
| 4135 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4136 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4137 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4138 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4139 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4140 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4141 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4142 | |
| 4143 | ------------------------------------------------------------------- |
| 4144 | |
| 4145 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4146 | Portions Copyright (c) 1996-1999 by Internet Software Consortium. |
| 4147 | |
| 4148 | Permission to use, copy, modify, and distribute this software for any |
| 4149 | purpose with or without fee is hereby granted, provided that the above |
| 4150 | copyright notice and this permission notice appear in all copies. |
| 4151 | |
| 4152 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4153 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4154 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4155 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4156 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4157 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4158 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4159 | |
| 4160 | ------------------------------------------------------------------- |
| 4161 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4162 | Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> |
| 4163 | All rights reserved. |
| 4164 | |
| 4165 | Redistribution and use in source and binary forms, with or without |
| 4166 | modification, are permitted provided that the following conditions |
| 4167 | are met: |
| 4168 | 1. Redistributions of source code must retain the above copyright |
| 4169 | notice, this list of conditions and the following disclaimer. |
| 4170 | 2. Redistributions in binary form must reproduce the above copyright |
| 4171 | notice, this list of conditions and the following disclaimer in the |
| 4172 | documentation and/or other materials provided with the distribution. |
| 4173 | |
| 4174 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4175 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4176 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4177 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4178 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4179 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4180 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4181 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4182 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4183 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4184 | SUCH DAMAGE. |
| 4185 | |
| 4186 | ------------------------------------------------------------------- |
| 4187 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4188 | Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG> |
| 4189 | All rights reserved. |
| 4190 | |
| 4191 | Redistribution and use in source and binary forms, with or without |
| 4192 | modification, are permitted provided that the following conditions |
| 4193 | are met: |
| 4194 | 1. Redistributions of source code must retain the above copyright |
| 4195 | notice, this list of conditions and the following disclaimer. |
| 4196 | 2. Redistributions in binary form must reproduce the above copyright |
| 4197 | notice, this list of conditions and the following disclaimer in the |
| 4198 | documentation and/or other materials provided with the distribution. |
| 4199 | |
| 4200 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4201 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4202 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4203 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4204 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4205 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4206 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4207 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4208 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4209 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4210 | SUCH DAMAGE. |
| 4211 | |
| 4212 | ------------------------------------------------------------------- |
| 4213 | |
| 4214 | Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG> |
| 4215 | All rights reserved. |
| 4216 | |
| 4217 | Redistribution and use in source and binary forms, with or without |
| 4218 | modification, are permitted provided that the following conditions |
| 4219 | are met: |
| 4220 | 1. Redistributions of source code must retain the above copyright |
| 4221 | notice, this list of conditions and the following disclaimer. |
| 4222 | 2. Redistributions in binary form must reproduce the above copyright |
| 4223 | notice, this list of conditions and the following disclaimer in the |
| 4224 | documentation and/or other materials provided with the distribution. |
| 4225 | |
| 4226 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4227 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4228 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4229 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4230 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4231 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4232 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4233 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4234 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4235 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4236 | SUCH DAMAGE. |
| 4237 | |
| 4238 | ------------------------------------------------------------------- |
| 4239 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4240 | Copyright (c) 2005 Bruce D. Evans and Steven G. Kargl |
| 4241 | All rights reserved. |
| 4242 | |
| 4243 | Redistribution and use in source and binary forms, with or without |
| 4244 | modification, are permitted provided that the following conditions |
| 4245 | are met: |
| 4246 | 1. Redistributions of source code must retain the above copyright |
| 4247 | notice unmodified, this list of conditions, and the following |
| 4248 | disclaimer. |
| 4249 | 2. Redistributions in binary form must reproduce the above copyright |
| 4250 | notice, this list of conditions and the following disclaimer in the |
| 4251 | documentation and/or other materials provided with the distribution. |
| 4252 | |
| 4253 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4254 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4255 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4256 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4257 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4258 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4259 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4260 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4261 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4262 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4263 | |
| 4264 | ------------------------------------------------------------------- |
| 4265 | |
| 4266 | Copyright (c) 2005 David Schultz <das@FreeBSD.ORG> |
| 4267 | All rights reserved. |
| 4268 | |
| 4269 | Redistribution and use in source and binary forms, with or without |
| 4270 | modification, are permitted provided that the following conditions |
| 4271 | are met: |
| 4272 | 1. Redistributions of source code must retain the above copyright |
| 4273 | notice, this list of conditions and the following disclaimer. |
| 4274 | 2. Redistributions in binary form must reproduce the above copyright |
| 4275 | notice, this list of conditions and the following disclaimer in the |
| 4276 | documentation and/or other materials provided with the distribution. |
| 4277 | |
| 4278 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4279 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4280 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4281 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4282 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4283 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4284 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4285 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4286 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4287 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4288 | SUCH DAMAGE. |
| 4289 | |
| 4290 | ------------------------------------------------------------------- |
| 4291 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4292 | Copyright (c) 2005 Tim J. Robbins. |
| 4293 | All rights reserved. |
| 4294 | |
| 4295 | Redistribution and use in source and binary forms, with or without |
| 4296 | modification, are permitted provided that the following conditions |
| 4297 | are met: |
| 4298 | 1. Redistributions of source code must retain the above copyright |
| 4299 | notice, this list of conditions and the following disclaimer. |
| 4300 | 2. Redistributions in binary form must reproduce the above copyright |
| 4301 | notice, this list of conditions and the following disclaimer in the |
| 4302 | documentation and/or other materials provided with the distribution. |
| 4303 | |
| 4304 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4305 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4306 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4307 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4308 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4309 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4310 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4311 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4312 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4313 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4314 | SUCH DAMAGE. |
| 4315 | |
| 4316 | ------------------------------------------------------------------- |
| 4317 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 4318 | Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC") |
| 4319 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 4320 | |
| 4321 | Permission to use, copy, modify, and distribute this software for any |
| 4322 | purpose with or without fee is hereby granted, provided that the above |
| 4323 | copyright notice and this permission notice appear in all copies. |
| 4324 | |
| 4325 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4326 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4327 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4328 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4329 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4330 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4331 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4332 | |
| 4333 | ------------------------------------------------------------------- |
| 4334 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4335 | Copyright (c) 2005-2008 David Schultz <das@FreeBSD.ORG> |
| 4336 | All rights reserved. |
| 4337 | |
| 4338 | Redistribution and use in source and binary forms, with or without |
| 4339 | modification, are permitted provided that the following conditions |
| 4340 | are met: |
| 4341 | 1. Redistributions of source code must retain the above copyright |
| 4342 | notice, this list of conditions and the following disclaimer. |
| 4343 | 2. Redistributions in binary form must reproduce the above copyright |
| 4344 | notice, this list of conditions and the following disclaimer in the |
| 4345 | documentation and/or other materials provided with the distribution. |
| 4346 | |
| 4347 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4348 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4349 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4350 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4351 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4352 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4353 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4354 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4355 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4356 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4357 | SUCH DAMAGE. |
| 4358 | |
| 4359 | ------------------------------------------------------------------- |
| 4360 | |
| 4361 | Copyright (c) 2005-2011 David Schultz <das@FreeBSD.ORG> |
| 4362 | All rights reserved. |
| 4363 | |
| 4364 | Redistribution and use in source and binary forms, with or without |
| 4365 | modification, are permitted provided that the following conditions |
| 4366 | are met: |
| 4367 | 1. Redistributions of source code must retain the above copyright |
| 4368 | notice, this list of conditions and the following disclaimer. |
| 4369 | 2. Redistributions in binary form must reproduce the above copyright |
| 4370 | notice, this list of conditions and the following disclaimer in the |
| 4371 | documentation and/or other materials provided with the distribution. |
| 4372 | |
| 4373 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4374 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4375 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4376 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4377 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4378 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4379 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4380 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4381 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4382 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4383 | SUCH DAMAGE. |
| 4384 | |
| 4385 | ------------------------------------------------------------------- |
| 4386 | |
| 4387 | Copyright (c) 2007 David Schultz |
| 4388 | All rights reserved. |
| 4389 | |
| 4390 | Redistribution and use in source and binary forms, with or without |
| 4391 | modification, are permitted provided that the following conditions |
| 4392 | are met: |
| 4393 | 1. Redistributions of source code must retain the above copyright |
| 4394 | notice, this list of conditions and the following disclaimer. |
| 4395 | 2. Redistributions in binary form must reproduce the above copyright |
| 4396 | notice, this list of conditions and the following disclaimer in the |
| 4397 | documentation and/or other materials provided with the distribution. |
| 4398 | |
| 4399 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4400 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4401 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4402 | ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4403 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4404 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4405 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4406 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4407 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4408 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4409 | SUCH DAMAGE. |
| 4410 | |
| 4411 | ------------------------------------------------------------------- |
| 4412 | |
| 4413 | Copyright (c) 2007 David Schultz <das@FreeBSD.ORG> |
| 4414 | All rights reserved. |
| 4415 | |
| 4416 | Redistribution and use in source and binary forms, with or without |
| 4417 | modification, are permitted provided that the following conditions |
| 4418 | are met: |
| 4419 | 1. Redistributions of source code must retain the above copyright |
| 4420 | notice, this list of conditions and the following disclaimer. |
| 4421 | 2. Redistributions in binary form must reproduce the above copyright |
| 4422 | notice, this list of conditions and the following disclaimer in the |
| 4423 | documentation and/or other materials provided with the distribution. |
| 4424 | |
| 4425 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4426 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4427 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4428 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4429 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4430 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4431 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4432 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4433 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4434 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4435 | SUCH DAMAGE. |
| 4436 | |
| 4437 | ------------------------------------------------------------------- |
| 4438 | |
| 4439 | Copyright (c) 2007 David Schultz <das@FreeBSD.ORG> |
| 4440 | All rights reserved. |
| 4441 | |
| 4442 | Redistribution and use in source and binary forms, with or without |
| 4443 | modification, are permitted provided that the following conditions |
| 4444 | are met: |
| 4445 | 1. Redistributions of source code must retain the above copyright |
| 4446 | notice, this list of conditions and the following disclaimer. |
| 4447 | 2. Redistributions in binary form must reproduce the above copyright |
| 4448 | notice, this list of conditions and the following disclaimer in the |
| 4449 | documentation and/or other materials provided with the distribution. |
| 4450 | |
| 4451 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4452 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4453 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4454 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4455 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4456 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4457 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4458 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4459 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4460 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4461 | SUCH DAMAGE. |
| 4462 | |
| 4463 | Derived from s_modf.c, which has the following Copyright: |
| 4464 | ==================================================== |
| 4465 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 4466 | |
| 4467 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 4468 | Permission to use, copy, modify, and distribute this |
| 4469 | software is freely granted, provided that this notice |
| 4470 | is preserved. |
| 4471 | |
| 4472 | ------------------------------------------------------------------- |
| 4473 | |
| 4474 | Copyright (c) 2007 Steven G. Kargl |
| 4475 | All rights reserved. |
| 4476 | |
| 4477 | Redistribution and use in source and binary forms, with or without |
| 4478 | modification, are permitted provided that the following conditions |
| 4479 | are met: |
| 4480 | 1. Redistributions of source code must retain the above copyright |
| 4481 | notice unmodified, this list of conditions, and the following |
| 4482 | disclaimer. |
| 4483 | 2. Redistributions in binary form must reproduce the above copyright |
| 4484 | notice, this list of conditions and the following disclaimer in the |
| 4485 | documentation and/or other materials provided with the distribution. |
| 4486 | |
| 4487 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4488 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4489 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4490 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4491 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4492 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4493 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4494 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4495 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4496 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4497 | |
| 4498 | ------------------------------------------------------------------- |
| 4499 | |
| 4500 | Copyright (c) 2007 The NetBSD Foundation, Inc. |
| 4501 | All rights reserved. |
| 4502 | |
| 4503 | This code is derived from software written by Stephen L. Moshier. |
| 4504 | It is redistributed by the NetBSD Foundation by permission of the author. |
| 4505 | |
| 4506 | Redistribution and use in source and binary forms, with or without |
| 4507 | modification, are permitted provided that the following conditions |
| 4508 | are met: |
| 4509 | 1. Redistributions of source code must retain the above copyright |
| 4510 | notice, this list of conditions and the following disclaimer. |
| 4511 | 2. Redistributions in binary form must reproduce the above copyright |
| 4512 | notice, this list of conditions and the following disclaimer in the |
| 4513 | documentation and/or other materials provided with the distribution. |
| 4514 | |
| 4515 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4516 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4517 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4518 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4519 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4520 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4521 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4522 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4523 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4524 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4525 | POSSIBILITY OF SUCH DAMAGE. |
| 4526 | |
| 4527 | ------------------------------------------------------------------- |
| 4528 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 4529 | Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4530 | |
| 4531 | Permission to use, copy, modify, and distribute this software for any |
| 4532 | purpose with or without fee is hereby granted, provided that the above |
| 4533 | copyright notice and this permission notice appear in all copies. |
| 4534 | |
| 4535 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4536 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4537 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4538 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4539 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4540 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4541 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4542 | |
| 4543 | ------------------------------------------------------------------- |
| 4544 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4545 | Copyright (c) 2007-2008 Michael G Schwern |
| 4546 | |
| 4547 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
| 4548 | |
| 4549 | The MIT License: |
| 4550 | |
| 4551 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4552 | of this software and associated documentation files (the "Software"), to deal |
| 4553 | in the Software without restriction, including without limitation the rights |
| 4554 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4555 | copies of the Software, and to permit persons to whom the Software is |
| 4556 | furnished to do so, subject to the following conditions: |
| 4557 | |
| 4558 | The above copyright notice and this permission notice shall be included in |
| 4559 | all copies or substantial portions of the Software. |
| 4560 | |
| 4561 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4562 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4563 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4564 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4565 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4566 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4567 | THE SOFTWARE. |
| 4568 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4569 | ------------------------------------------------------------------- |
| 4570 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4571 | Copyright (c) 2007-2008 Michael G Schwern |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4572 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4573 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4574 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4575 | The MIT License: |
| 4576 | |
| 4577 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4578 | of this software and associated documentation files (the "Software"), to deal |
| 4579 | in the Software without restriction, including without limitation the rights |
| 4580 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4581 | copies of the Software, and to permit persons to whom the Software is |
| 4582 | furnished to do so, subject to the following conditions: |
| 4583 | |
| 4584 | The above copyright notice and this permission notice shall be included in |
| 4585 | all copies or substantial portions of the Software. |
| 4586 | |
| 4587 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4588 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4589 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4590 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4591 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4592 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4593 | THE SOFTWARE. |
| 4594 | |
| 4595 | Origin: http://code.google.com/p/y2038 |
| 4596 | Modified for Bionic by the Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4597 | |
| 4598 | ------------------------------------------------------------------- |
| 4599 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4600 | Copyright (c) 2007-2008 David Schultz <das@FreeBSD.ORG> |
| 4601 | All rights reserved. |
| 4602 | |
| 4603 | Redistribution and use in source and binary forms, with or without |
| 4604 | modification, are permitted provided that the following conditions |
| 4605 | are met: |
| 4606 | 1. Redistributions of source code must retain the above copyright |
| 4607 | notice, this list of conditions and the following disclaimer. |
| 4608 | 2. Redistributions in binary form must reproduce the above copyright |
| 4609 | notice, this list of conditions and the following disclaimer in the |
| 4610 | documentation and/or other materials provided with the distribution. |
| 4611 | |
| 4612 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4613 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4614 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4615 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4616 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4617 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4618 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4619 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4620 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4621 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4622 | SUCH DAMAGE. |
| 4623 | |
| 4624 | ------------------------------------------------------------------- |
| 4625 | |
| 4626 | Copyright (c) 2007-2013 Bruce D. Evans |
| 4627 | All rights reserved. |
| 4628 | |
| 4629 | Redistribution and use in source and binary forms, with or without |
| 4630 | modification, are permitted provided that the following conditions |
| 4631 | are met: |
| 4632 | 1. Redistributions of source code must retain the above copyright |
| 4633 | notice unmodified, this list of conditions, and the following |
| 4634 | disclaimer. |
| 4635 | 2. Redistributions in binary form must reproduce the above copyright |
| 4636 | notice, this list of conditions and the following disclaimer in the |
| 4637 | documentation and/or other materials provided with the distribution. |
| 4638 | |
| 4639 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4640 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4641 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4642 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4643 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4644 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4645 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4646 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4647 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4648 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4649 | |
| 4650 | ------------------------------------------------------------------- |
| 4651 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4652 | Copyright (c) 2008 David Schultz <das@FreeBSD.ORG> |
| 4653 | All rights reserved. |
| 4654 | |
| 4655 | Redistribution and use in source and binary forms, with or without |
| 4656 | modification, are permitted provided that the following conditions |
| 4657 | are met: |
| 4658 | 1. Redistributions of source code must retain the above copyright |
| 4659 | notice, this list of conditions and the following disclaimer. |
| 4660 | 2. Redistributions in binary form must reproduce the above copyright |
| 4661 | notice, this list of conditions and the following disclaimer in the |
| 4662 | documentation and/or other materials provided with the distribution. |
| 4663 | |
| 4664 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4665 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4666 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4667 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4668 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4669 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4670 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4671 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4672 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4673 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4674 | SUCH DAMAGE. |
| 4675 | |
| 4676 | ------------------------------------------------------------------- |
| 4677 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4678 | Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> |
| 4679 | |
| 4680 | Permission to use, copy, modify, and distribute this software for any |
| 4681 | purpose with or without fee is hereby granted, provided that the above |
| 4682 | copyright notice and this permission notice appear in all copies. |
| 4683 | |
| 4684 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4685 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4686 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4687 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4688 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4689 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4690 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4691 | |
| 4692 | ------------------------------------------------------------------- |
| 4693 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4694 | Copyright (c) 2008 Todd C. Miller <millert@openbsd.org> |
| 4695 | |
| 4696 | Permission to use, copy, modify, and distribute this software for any |
| 4697 | purpose with or without fee is hereby granted, provided that the above |
| 4698 | copyright notice and this permission notice appear in all copies. |
| 4699 | |
| 4700 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4701 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4702 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4703 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4704 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4705 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4706 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4707 | |
| 4708 | ------------------------------------------------------------------- |
| 4709 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4710 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
| 4711 | |
| 4712 | Permission to use, copy, modify, and distribute this software for any |
| 4713 | purpose with or without fee is hereby granted, provided that the above |
| 4714 | copyright notice and this permission notice appear in all copies. |
| 4715 | |
| 4716 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4717 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4718 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4719 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4720 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4721 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4722 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4723 | |
| 4724 | ------------------------------------------------------------------- |
| 4725 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4726 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4727 | All rights reserved. |
| 4728 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4729 | Copyright (c) 2011 The FreeBSD Foundation |
| 4730 | All rights reserved. |
| 4731 | Portions of this software were developed by David Chisnall |
| 4732 | under sponsorship from the FreeBSD Foundation. |
| 4733 | |
| 4734 | Redistribution and use in source and binary forms, with or without |
| 4735 | modification, are permitted provided that the following conditions |
| 4736 | are met: |
| 4737 | 1. Redistributions of source code must retain the above copyright |
| 4738 | notice, this list of conditions and the following disclaimer. |
| 4739 | 2. Redistributions in binary form must reproduce the above copyright |
| 4740 | notice, this list of conditions and the following disclaimer in the |
| 4741 | documentation and/or other materials provided with the distribution. |
| 4742 | |
| 4743 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4744 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4745 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4746 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4747 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4748 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4749 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4750 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4751 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4752 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4753 | SUCH DAMAGE. |
| 4754 | |
| 4755 | ------------------------------------------------------------------- |
| 4756 | |
| 4757 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4758 | All rights reserved. |
| 4759 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4760 | Redistribution and use in source and binary forms, with or without |
| 4761 | modification, are permitted provided that the following conditions |
| 4762 | are met: |
| 4763 | 1. Redistributions of source code must retain the above copyright |
| 4764 | notice, this list of conditions and the following disclaimer. |
| 4765 | 2. Redistributions in binary form must reproduce the above copyright |
| 4766 | notice, this list of conditions and the following disclaimer in the |
| 4767 | documentation and/or other materials provided with the distribution. |
| 4768 | |
| 4769 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4770 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4771 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4772 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4773 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4774 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4775 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4776 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4777 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4778 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4779 | SUCH DAMAGE. |
| 4780 | |
| 4781 | ------------------------------------------------------------------- |
| 4782 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 4783 | Copyright (c) 2009 The NetBSD Foundation, Inc. |
| 4784 | |
| 4785 | This code is derived from software contributed to The NetBSD Foundation |
| 4786 | by Roy Marples. |
| 4787 | |
| 4788 | Redistribution and use in source and binary forms, with or without |
| 4789 | modification, are permitted provided that the following conditions |
| 4790 | are met: |
| 4791 | 1. Redistributions of source code must retain the above copyright |
| 4792 | notice, this list of conditions and the following disclaimer. |
| 4793 | 2. Redistributions in binary form must reproduce the above copyright |
| 4794 | notice, this list of conditions and the following disclaimer in the |
| 4795 | documentation and/or other materials provided with the distribution. |
| 4796 | |
| 4797 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4798 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4799 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4800 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4801 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4802 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4803 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4804 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4805 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4806 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4807 | |
| 4808 | ------------------------------------------------------------------- |
| 4809 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4810 | Copyright (c) 2009-2013 Steven G. Kargl |
| 4811 | All rights reserved. |
| 4812 | |
| 4813 | Redistribution and use in source and binary forms, with or without |
| 4814 | modification, are permitted provided that the following conditions |
| 4815 | are met: |
| 4816 | 1. Redistributions of source code must retain the above copyright |
| 4817 | notice unmodified, this list of conditions, and the following |
| 4818 | disclaimer. |
| 4819 | 2. Redistributions in binary form must reproduce the above copyright |
| 4820 | notice, this list of conditions and the following disclaimer in the |
| 4821 | documentation and/or other materials provided with the distribution. |
| 4822 | |
| 4823 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4824 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4825 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4826 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4827 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4828 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4829 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4830 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4831 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4832 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4833 | |
| 4834 | Optimized by Bruce D. Evans. |
| 4835 | |
| 4836 | ------------------------------------------------------------------- |
| 4837 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4838 | Copyright (c) 2010 The NetBSD Foundation, Inc. |
| 4839 | All rights reserved. |
| 4840 | |
| 4841 | Redistribution and use in source and binary forms, with or without |
| 4842 | modification, are permitted provided that the following conditions |
| 4843 | are met: |
| 4844 | 1. Redistributions of source code must retain the above copyright |
| 4845 | notice, this list of conditions and the following disclaimer. |
| 4846 | 2. Redistributions in binary form must reproduce the above copyright |
| 4847 | notice, this list of conditions and the following disclaimer in the |
| 4848 | documentation and/or other materials provided with the distribution. |
| 4849 | |
| 4850 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4851 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4852 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4853 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4854 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4855 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4856 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4857 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4858 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4859 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4860 | POSSIBILITY OF SUCH DAMAGE. |
| 4861 | |
| 4862 | ------------------------------------------------------------------- |
| 4863 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4864 | Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4865 | |
| 4866 | Permission to use, copy, modify, and distribute this software for any |
| 4867 | purpose with or without fee is hereby granted, provided that the above |
| 4868 | copyright notice and this permission notice appear in all copies. |
| 4869 | |
| 4870 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4871 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4872 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4873 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4874 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4875 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4876 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4877 | |
| 4878 | ------------------------------------------------------------------- |
| 4879 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4880 | Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4881 | All rights reserved. |
| 4882 | |
| 4883 | Redistribution and use in source and binary forms, with or without |
| 4884 | modification, are permitted provided that the following conditions are met: |
| 4885 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4886 | * Redistributions of source code must retain the above copyright notice, |
| 4887 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4888 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4889 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4890 | * this list of conditions and the following disclaimer in the documentation |
| 4891 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4892 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4893 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4894 | * may be used to endorse or promote products derived from this software |
| 4895 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4896 | |
| 4897 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4898 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4899 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4900 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4901 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4902 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4903 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4904 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4905 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4906 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4907 | |
| 4908 | ------------------------------------------------------------------- |
| 4909 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4910 | Copyright (c) 2010, Intel Corporation |
| 4911 | All rights reserved. |
| 4912 | |
| 4913 | Redistribution and use in source and binary forms, with or without |
| 4914 | modification, are permitted provided that the following conditions are met: |
| 4915 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4916 | * Redistributions of source code must retain the above copyright notice, |
| 4917 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4918 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4919 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4920 | * this list of conditions and the following disclaimer in the documentation |
| 4921 | * and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4922 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4923 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4924 | * may be used to endorse or promote products derived from this software |
| 4925 | * without specific prior written permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4926 | |
| 4927 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4928 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4929 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4930 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4931 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4932 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4933 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4934 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4935 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4936 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4937 | |
| 4938 | ------------------------------------------------------------------- |
| 4939 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4940 | Copyright (c) 2011 David Chisnall |
| 4941 | All rights reserved. |
| 4942 | |
| 4943 | Redistribution and use in source and binary forms, with or without |
| 4944 | modification, are permitted provided that the following conditions |
| 4945 | are met: |
| 4946 | 1. Redistributions of source code must retain the above copyright |
| 4947 | notice, this list of conditions and the following disclaimer. |
| 4948 | 2. Redistributions in binary form must reproduce the above copyright |
| 4949 | notice, this list of conditions and the following disclaimer in the |
| 4950 | documentation and/or other materials provided with the distribution. |
| 4951 | |
| 4952 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4953 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4954 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4955 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4956 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4957 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4958 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4959 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4960 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4961 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4962 | SUCH DAMAGE. |
| 4963 | |
| 4964 | ------------------------------------------------------------------- |
| 4965 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4966 | Copyright (c) 2011 David Schultz |
| 4967 | All rights reserved. |
| 4968 | |
| 4969 | Redistribution and use in source and binary forms, with or without |
| 4970 | modification, are permitted provided that the following conditions |
| 4971 | are met: |
| 4972 | 1. Redistributions of source code must retain the above copyright |
| 4973 | notice unmodified, this list of conditions, and the following |
| 4974 | disclaimer. |
| 4975 | 2. Redistributions in binary form must reproduce the above copyright |
| 4976 | notice, this list of conditions and the following disclaimer in the |
| 4977 | documentation and/or other materials provided with the distribution. |
| 4978 | |
| 4979 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4980 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4981 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4982 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4983 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4984 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4985 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4986 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4987 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4988 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4989 | |
| 4990 | ------------------------------------------------------------------- |
| 4991 | |
| 4992 | Copyright (c) 2011 David Schultz <das@FreeBSD.ORG> |
| 4993 | All rights reserved. |
| 4994 | |
| 4995 | Redistribution and use in source and binary forms, with or without |
| 4996 | modification, are permitted provided that the following conditions |
| 4997 | are met: |
| 4998 | 1. Redistributions of source code must retain the above copyright |
| 4999 | notice, this list of conditions and the following disclaimer. |
| 5000 | 2. Redistributions in binary form must reproduce the above copyright |
| 5001 | notice, this list of conditions and the following disclaimer in the |
| 5002 | documentation and/or other materials provided with the distribution. |
| 5003 | |
| 5004 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5005 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5006 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5007 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5008 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5009 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5010 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5011 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5012 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5013 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5014 | SUCH DAMAGE. |
| 5015 | |
| 5016 | ------------------------------------------------------------------- |
| 5017 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5018 | Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org> |
| 5019 | David Chisnall <theraven@FreeBSD.org> |
| 5020 | All rights reserved. |
| 5021 | |
| 5022 | Redistribution and use in source and binary forms, with or without |
| 5023 | modification, are permitted provided that the following conditions |
| 5024 | are met: |
| 5025 | 1. Redistributions of source code must retain the above copyright |
| 5026 | notice, this list of conditions and the following disclaimer. |
| 5027 | 2. Redistributions in binary form must reproduce the above copyright |
| 5028 | notice, this list of conditions and the following disclaimer in the |
| 5029 | documentation and/or other materials provided with the distribution. |
| 5030 | |
| 5031 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5032 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5033 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5034 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5035 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5036 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5037 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5038 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5039 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5040 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5041 | SUCH DAMAGE. |
| 5042 | |
| 5043 | ------------------------------------------------------------------- |
| 5044 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5045 | Copyright (c) 2011 Intel Corporation |
| 5046 | All rights reserved. |
| 5047 | |
| 5048 | Redistribution and use in source and binary forms, with or without |
| 5049 | modification, are permitted provided that the following conditions are met: |
| 5050 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5051 | * Redistributions of source code must retain the above copyright notice, |
| 5052 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5053 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5054 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5055 | * this list of conditions and the following disclaimer in the documentation |
| 5056 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5057 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5058 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5059 | * may be used to endorse or promote products derived from this software |
| 5060 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5061 | |
| 5062 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5063 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5064 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5065 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5066 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5067 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5068 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5069 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5070 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5071 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5072 | |
| 5073 | ------------------------------------------------------------------- |
| 5074 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 5075 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 5076 | |
| 5077 | Permission to use, copy, modify, and distribute this software for any |
| 5078 | purpose with or without fee is hereby granted, provided that the above |
| 5079 | copyright notice and this permission notice appear in all copies. |
| 5080 | |
| 5081 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5082 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5083 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5084 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5085 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5086 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5087 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5088 | |
| 5089 | ------------------------------------------------------------------- |
| 5090 | |
| 5091 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 5092 | Copyright (c) 2009 Ted Unangst |
| 5093 | |
| 5094 | Permission to use, copy, modify, and distribute this software for any |
| 5095 | purpose with or without fee is hereby granted, provided that the above |
| 5096 | copyright notice and this permission notice appear in all copies. |
| 5097 | |
| 5098 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5099 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5100 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5101 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5102 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5103 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5104 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5105 | |
| 5106 | ------------------------------------------------------------------- |
| 5107 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5108 | Copyright (c) 2011 The Android Open Source Project |
| 5109 | Copyright (c) 2008 ARM Ltd |
| 5110 | All rights reserved. |
| 5111 | |
| 5112 | Redistribution and use in source and binary forms, with or without |
| 5113 | modification, are permitted provided that the following conditions |
| 5114 | are met: |
| 5115 | 1. Redistributions of source code must retain the above copyright |
| 5116 | notice, this list of conditions and the following disclaimer. |
| 5117 | 2. Redistributions in binary form must reproduce the above copyright |
| 5118 | notice, this list of conditions and the following disclaimer in the |
| 5119 | documentation and/or other materials provided with the distribution. |
| 5120 | 3. The name of the company may not be used to endorse or promote |
| 5121 | products derived from this software without specific prior written |
| 5122 | permission. |
| 5123 | |
| 5124 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5125 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5126 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5127 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5128 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5129 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5130 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5131 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5132 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5133 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5134 | |
| 5135 | ------------------------------------------------------------------- |
| 5136 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5137 | Copyright (c) 2011, 2012, 2013 Intel Corporation |
| 5138 | All rights reserved. |
| 5139 | |
| 5140 | Redistribution and use in source and binary forms, with or without |
| 5141 | modification, are permitted provided that the following conditions are met: |
| 5142 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5143 | * Redistributions of source code must retain the above copyright notice, |
| 5144 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5145 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5146 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5147 | * this list of conditions and the following disclaimer in the documentation |
| 5148 | * and/or other materials provided with the distribution. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5149 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5150 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5151 | * may be used to endorse or promote products derived from this software |
| 5152 | * without specific prior written permission. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5153 | |
| 5154 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5155 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5156 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5157 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5158 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5159 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5160 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5161 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5162 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5163 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5164 | |
| 5165 | ------------------------------------------------------------------- |
| 5166 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5167 | Copyright (c) 2011, Intel Corporation |
| 5168 | All rights reserved. |
| 5169 | |
| 5170 | Redistribution and use in source and binary forms, with or without |
| 5171 | modification, are permitted provided that the following conditions are met: |
| 5172 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5173 | * Redistributions of source code must retain the above copyright notice, |
| 5174 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5175 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5176 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5177 | * this list of conditions and the following disclaimer in the documentation |
| 5178 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5179 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5180 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5181 | * may be used to endorse or promote products derived from this software |
| 5182 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5183 | |
| 5184 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5185 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5186 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5187 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5188 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5189 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5190 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5191 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5192 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5193 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5194 | |
| 5195 | ------------------------------------------------------------------- |
| 5196 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5197 | Copyright (c) 2011, VMware, Inc. |
| 5198 | All rights reserved. |
| 5199 | |
| 5200 | Redistribution and use in source and binary forms, with or without |
| 5201 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5202 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5203 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5204 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5205 | notice, this list of conditions and the following disclaimer in the |
| 5206 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5207 | * Neither the name of the VMware, Inc. nor the names of its contributors |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5208 | may be used to endorse or promote products derived from this software |
| 5209 | without specific prior written permission. |
| 5210 | |
| 5211 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 5212 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5213 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5214 | ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR |
| 5215 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5216 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5217 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 5218 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5219 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5220 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5221 | |
| 5222 | ------------------------------------------------------------------- |
| 5223 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5224 | Copyright (c) 2012 Stephen Montgomery-Smith <stephen@FreeBSD.ORG> |
| 5225 | All rights reserved. |
| 5226 | |
| 5227 | Redistribution and use in source and binary forms, with or without |
| 5228 | modification, are permitted provided that the following conditions |
| 5229 | are met: |
| 5230 | 1. Redistributions of source code must retain the above copyright |
| 5231 | notice, this list of conditions and the following disclaimer. |
| 5232 | 2. Redistributions in binary form must reproduce the above copyright |
| 5233 | notice, this list of conditions and the following disclaimer in the |
| 5234 | documentation and/or other materials provided with the distribution. |
| 5235 | |
| 5236 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5237 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5238 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5239 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5240 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5241 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5242 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5243 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5244 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5245 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5246 | SUCH DAMAGE. |
| 5247 | |
| 5248 | ------------------------------------------------------------------- |
| 5249 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5250 | Copyright (c) 2012, Linaro Limited |
| 5251 | All rights reserved. |
| 5252 | |
| 5253 | Redistribution and use in source and binary forms, with or without |
| 5254 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5255 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5256 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5257 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5258 | notice, this list of conditions and the following disclaimer in the |
| 5259 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5260 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5261 | names of its contributors may be used to endorse or promote products |
| 5262 | derived from this software without specific prior written permission. |
| 5263 | |
| 5264 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5265 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5266 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5267 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5268 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5269 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5270 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5271 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5272 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5273 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5274 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5275 | |
| 5276 | ------------------------------------------------------------------- |
| 5277 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5278 | Copyright (c) 2012, Linaro Limited |
| 5279 | All rights reserved. |
| 5280 | Copyright (c) 2014, NVIDIA Corporation. All rights reserved. |
| 5281 | |
| 5282 | Redistribution and use in source and binary forms, with or without |
| 5283 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5284 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5285 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5286 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5287 | notice, this list of conditions and the following disclaimer in the |
| 5288 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5289 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5290 | names of its contributors may be used to endorse or promote products |
| 5291 | derived from this software without specific prior written permission. |
| 5292 | |
| 5293 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5294 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5295 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5296 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5297 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5298 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5299 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5300 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5301 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5302 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5303 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5304 | |
| 5305 | ------------------------------------------------------------------- |
| 5306 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5307 | Copyright (c) 2012-2013, Linaro Limited |
| 5308 | All rights reserved. |
| 5309 | |
| 5310 | Redistribution and use in source and binary forms, with or without |
| 5311 | modification, are permitted provided that the following conditions are met: |
| 5312 | * Redistributions of source code must retain the above copyright |
| 5313 | notice, this list of conditions and the following disclaimer. |
| 5314 | * Redistributions in binary form must reproduce the above copyright |
| 5315 | notice, this list of conditions and the following disclaimer in the |
| 5316 | documentation and/or other materials provided with the distribution. |
| 5317 | * Neither the name of the Linaro nor the |
| 5318 | names of its contributors may be used to endorse or promote products |
| 5319 | derived from this software without specific prior written permission. |
| 5320 | |
| 5321 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5322 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5323 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5324 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5325 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5326 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5327 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5328 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5329 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5330 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5331 | |
| 5332 | ------------------------------------------------------------------- |
| 5333 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 5334 | Copyright (c) 2013 |
| 5335 | MIPS Technologies, Inc., California. |
| 5336 | |
| 5337 | Redistribution and use in source and binary forms, with or without |
| 5338 | modification, are permitted provided that the following conditions |
| 5339 | are met: |
| 5340 | 1. Redistributions of source code must retain the above copyright |
| 5341 | notice, this list of conditions and the following disclaimer. |
| 5342 | 2. Redistributions in binary form must reproduce the above copyright |
| 5343 | notice, this list of conditions and the following disclaimer in the |
| 5344 | documentation and/or other materials provided with the distribution. |
| 5345 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 5346 | contributors may be used to endorse or promote products derived from |
| 5347 | this software without specific prior written permission. |
| 5348 | |
| 5349 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 5350 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5351 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5352 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 5353 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5354 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5355 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5356 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5357 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5358 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5359 | SUCH DAMAGE. |
| 5360 | |
| 5361 | ------------------------------------------------------------------- |
| 5362 | |
Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 5363 | Copyright (c) 2013 ARM Ltd |
| 5364 | All rights reserved. |
| 5365 | |
| 5366 | Redistribution and use in source and binary forms, with or without |
| 5367 | modification, are permitted provided that the following conditions |
| 5368 | are met: |
| 5369 | 1. Redistributions of source code must retain the above copyright |
| 5370 | notice, this list of conditions and the following disclaimer. |
| 5371 | 2. Redistributions in binary form must reproduce the above copyright |
| 5372 | notice, this list of conditions and the following disclaimer in the |
| 5373 | documentation and/or other materials provided with the distribution. |
| 5374 | 3. The name of the company may not be used to endorse or promote |
| 5375 | products derived from this software without specific prior written |
| 5376 | permission. |
| 5377 | |
| 5378 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5379 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5380 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5381 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5382 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5383 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5384 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5385 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5386 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5387 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5388 | |
| 5389 | ------------------------------------------------------------------- |
| 5390 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5391 | Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org> |
| 5392 | |
| 5393 | Permission to use, copy, modify, and distribute this software for any |
| 5394 | purpose with or without fee is hereby granted, provided that the above |
| 5395 | copyright notice and this permission notice appear in all copies. |
| 5396 | |
| 5397 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5398 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5399 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5400 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5401 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5402 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5403 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5404 | |
| 5405 | ------------------------------------------------------------------- |
| 5406 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5407 | Copyright (c) 2013 David Chisnall |
| 5408 | All rights reserved. |
| 5409 | |
| 5410 | Redistribution and use in source and binary forms, with or without |
| 5411 | modification, are permitted provided that the following conditions |
| 5412 | are met: |
| 5413 | 1. Redistributions of source code must retain the above copyright |
| 5414 | notice, this list of conditions and the following disclaimer. |
| 5415 | 2. Redistributions in binary form must reproduce the above copyright |
| 5416 | notice, this list of conditions and the following disclaimer in the |
| 5417 | documentation and/or other materials provided with the distribution. |
| 5418 | |
| 5419 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5420 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5421 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5422 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5423 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5424 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5425 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5426 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5427 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5428 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5429 | SUCH DAMAGE. |
| 5430 | |
| 5431 | ------------------------------------------------------------------- |
| 5432 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5433 | Copyright (c) 2013 The NetBSD Foundation, Inc. |
| 5434 | All rights reserved. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5435 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5436 | This code is derived from software contributed to The NetBSD Foundation |
| 5437 | by Christos Zoulas. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5438 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5439 | Redistribution and use in source and binary forms, with or without |
| 5440 | modification, are permitted provided that the following conditions |
| 5441 | are met: |
| 5442 | 1. Redistributions of source code must retain the above copyright |
| 5443 | notice, this list of conditions and the following disclaimer. |
| 5444 | 2. Redistributions in binary form must reproduce the above copyright |
| 5445 | notice, this list of conditions and the following disclaimer in the |
| 5446 | documentation and/or other materials provided with the distribution. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5447 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5448 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 5449 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 5450 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 5451 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 5452 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 5453 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 5454 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 5455 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 5456 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 5457 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 5458 | POSSIBILITY OF SUCH DAMAGE. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5459 | |
| 5460 | ------------------------------------------------------------------- |
| 5461 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5462 | Copyright (c) 2013, Linaro Limited |
| 5463 | All rights reserved. |
| 5464 | |
| 5465 | Redistribution and use in source and binary forms, with or without |
| 5466 | modification, are permitted provided that the following conditions are met: |
| 5467 | * Redistributions of source code must retain the above copyright |
| 5468 | notice, this list of conditions and the following disclaimer. |
| 5469 | * Redistributions in binary form must reproduce the above copyright |
| 5470 | notice, this list of conditions and the following disclaimer in the |
| 5471 | documentation and/or other materials provided with the distribution. |
| 5472 | * Neither the name of the Linaro nor the |
| 5473 | names of its contributors may be used to endorse or promote products |
| 5474 | derived from this software without specific prior written permission. |
| 5475 | |
| 5476 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5477 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5478 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5479 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5480 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5481 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5482 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5483 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5484 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5485 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5486 | |
| 5487 | ------------------------------------------------------------------- |
| 5488 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5489 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 5490 | Johnny Qiu <joqiu@nvidia.com> |
| 5491 | Shu Zhang <chazhang@nvidia.com> |
| 5492 | |
| 5493 | Redistribution and use in source and binary forms, with or without |
| 5494 | modification, are permitted provided that the following conditions are |
| 5495 | met: |
| 5496 | * Redistributions of source code must retain the above copyright |
| 5497 | notice, this list of conditions and the following disclaimer. |
| 5498 | * Redistributions in binary form must reproduce the above |
| 5499 | copyright notice, this list of conditions and the following |
| 5500 | disclaimer in the documentation and/or other materials provided |
| 5501 | with the distribution. |
| 5502 | * Neither the name of The Linux Foundation nor the names of its |
| 5503 | contributors may be used to endorse or promote products derived |
| 5504 | from this software without specific prior written permission. |
| 5505 | |
| 5506 | THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 5507 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5508 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| 5509 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| 5510 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 5511 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 5512 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 5513 | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 5514 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 5515 | OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 5516 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5517 | |
| 5518 | ------------------------------------------------------------------- |
| 5519 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5520 | Copyright (c) 2013-2015, Linaro Limited |
| 5521 | All rights reserved. |
| 5522 | |
| 5523 | Redistribution and use in source and binary forms, with or without |
| 5524 | modification, are permitted provided that the following conditions are met: |
| 5525 | * Redistributions of source code must retain the above copyright |
| 5526 | notice, this list of conditions and the following disclaimer. |
| 5527 | * Redistributions in binary form must reproduce the above copyright |
| 5528 | notice, this list of conditions and the following disclaimer in the |
| 5529 | documentation and/or other materials provided with the distribution. |
| 5530 | * Neither the name of the Linaro nor the |
| 5531 | names of its contributors may be used to endorse or promote products |
| 5532 | derived from this software without specific prior written permission. |
| 5533 | |
| 5534 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5535 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5536 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5537 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5538 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5539 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5540 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5541 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5542 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5543 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5544 | |
| 5545 | ------------------------------------------------------------------- |
| 5546 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5547 | Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org> |
| 5548 | Copyright (c) 2014 Bob Beck <beck@obtuse.com> |
| 5549 | |
| 5550 | Permission to use, copy, modify, and distribute this software for any |
| 5551 | purpose with or without fee is hereby granted, provided that the above |
| 5552 | copyright notice and this permission notice appear in all copies. |
| 5553 | |
| 5554 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5555 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5556 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5557 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5558 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5559 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5560 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5561 | |
| 5562 | Emulation of getentropy(2) as documented at: |
Josh Gao | 98d655c | 2016-11-10 16:08:20 -0800 | [diff] [blame] | 5563 | http://man.openbsd.org/getentropy.2 |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5564 | |
| 5565 | ------------------------------------------------------------------- |
| 5566 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5567 | Copyright (c) 2014, Intel Corporation |
| 5568 | All rights reserved. |
| 5569 | |
| 5570 | Redistribution and use in source and binary forms, with or without |
| 5571 | modification, are permitted provided that the following conditions are met: |
| 5572 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5573 | * Redistributions of source code must retain the above copyright notice, |
| 5574 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5575 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5576 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5577 | * this list of conditions and the following disclaimer in the documentation |
| 5578 | * and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5579 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5580 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5581 | * may be used to endorse or promote products derived from this software |
| 5582 | * without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5583 | |
| 5584 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5585 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5586 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5587 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5588 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5589 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5590 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5591 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5592 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5593 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5594 | |
| 5595 | ------------------------------------------------------------------- |
| 5596 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5597 | Copyright (c) 2014, Linaro Limited |
| 5598 | All rights reserved. |
| 5599 | |
| 5600 | Redistribution and use in source and binary forms, with or without |
| 5601 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5602 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5603 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5604 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5605 | notice, this list of conditions and the following disclaimer in the |
| 5606 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5607 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5608 | names of its contributors may be used to endorse or promote products |
| 5609 | derived from this software without specific prior written permission. |
| 5610 | |
| 5611 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5612 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5613 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5614 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5615 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5616 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5617 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5618 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5619 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5620 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5621 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5622 | |
| 5623 | ------------------------------------------------------------------- |
| 5624 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5625 | Copyright (c) 2015 ARM Ltd |
| 5626 | All rights reserved. |
| 5627 | |
| 5628 | Redistribution and use in source and binary forms, with or without |
| 5629 | modification, are permitted provided that the following conditions |
| 5630 | are met: |
| 5631 | 1. Redistributions of source code must retain the above copyright |
| 5632 | notice, this list of conditions and the following disclaimer. |
| 5633 | 2. Redistributions in binary form must reproduce the above copyright |
| 5634 | notice, this list of conditions and the following disclaimer in the |
| 5635 | documentation and/or other materials provided with the distribution. |
| 5636 | 3. The name of the company may not be used to endorse or promote |
| 5637 | products derived from this software without specific prior written |
| 5638 | permission. |
| 5639 | |
| 5640 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5641 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5642 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5643 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5644 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5645 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5646 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5647 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5648 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5649 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5650 | |
| 5651 | ------------------------------------------------------------------- |
| 5652 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 5653 | Copyright (c) 2015 Joerg Sonnenberger <joerg@NetBSD.org>. |
| 5654 | All rights reserved. |
| 5655 | |
| 5656 | Redistribution and use in source and binary forms, with or without |
| 5657 | modification, are permitted provided that the following conditions |
| 5658 | are met: |
| 5659 | |
| 5660 | 1. Redistributions of source code must retain the above copyright |
| 5661 | notice, this list of conditions and the following disclaimer. |
| 5662 | 2. Redistributions in binary form must reproduce the above copyright |
| 5663 | notice, this list of conditions and the following disclaimer in |
| 5664 | the documentation and/or other materials provided with the |
| 5665 | distribution. |
| 5666 | |
| 5667 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5668 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5669 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 5670 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 5671 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5672 | INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 5673 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5674 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 5675 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 5676 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 5677 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5678 | SUCH DAMAGE. |
| 5679 | |
| 5680 | ------------------------------------------------------------------- |
| 5681 | |
Prashant Patil | fcb877a | 2017-03-16 18:07:00 +0530 | [diff] [blame] | 5682 | Copyright (c) 2017 Imagination Technologies. |
| 5683 | |
| 5684 | All rights reserved. |
| 5685 | |
| 5686 | Redistribution and use in source and binary forms, with or without |
| 5687 | modification, are permitted provided that the following conditions |
| 5688 | are met: |
| 5689 | |
| 5690 | * Redistributions of source code must retain the above copyright |
| 5691 | notice, this list of conditions and the following disclaimer. |
| 5692 | * Redistributions in binary form must reproduce the above copyright |
| 5693 | notice, this list of conditions and the following disclaimer |
| 5694 | in the documentation and/or other materials provided with |
| 5695 | the distribution. |
| 5696 | * Neither the name of Imagination Technologies nor the names of its |
| 5697 | contributors may be used to endorse or promote products derived |
| 5698 | from this software without specific prior written permission. |
| 5699 | |
| 5700 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5701 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5702 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5703 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5704 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5705 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5706 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5707 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5708 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5709 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5710 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5711 | |
| 5712 | ------------------------------------------------------------------- |
| 5713 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5714 | Copyright (c)1999 Citrus Project, |
| 5715 | All rights reserved. |
| 5716 | |
| 5717 | Redistribution and use in source and binary forms, with or without |
| 5718 | modification, are permitted provided that the following conditions |
| 5719 | are met: |
| 5720 | 1. Redistributions of source code must retain the above copyright |
| 5721 | notice, this list of conditions and the following disclaimer. |
| 5722 | 2. Redistributions in binary form must reproduce the above copyright |
| 5723 | notice, this list of conditions and the following disclaimer in the |
| 5724 | documentation and/or other materials provided with the distribution. |
| 5725 | |
| 5726 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5727 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5728 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5729 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5730 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5731 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5732 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5733 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5734 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5735 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5736 | SUCH DAMAGE. |
| 5737 | |
| 5738 | ------------------------------------------------------------------- |
| 5739 | |
| 5740 | Copyright (c)2001 Citrus Project, |
| 5741 | All rights reserved. |
| 5742 | |
| 5743 | Redistribution and use in source and binary forms, with or without |
| 5744 | modification, are permitted provided that the following conditions |
| 5745 | are met: |
| 5746 | 1. Redistributions of source code must retain the above copyright |
| 5747 | notice, this list of conditions and the following disclaimer. |
| 5748 | 2. Redistributions in binary form must reproduce the above copyright |
| 5749 | notice, this list of conditions and the following disclaimer in the |
| 5750 | documentation and/or other materials provided with the distribution. |
| 5751 | |
| 5752 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5753 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5754 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5755 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5756 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5757 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5758 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5759 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5760 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5761 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5762 | SUCH DAMAGE. |
| 5763 | |
| 5764 | ------------------------------------------------------------------- |
| 5765 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5766 | Copyright (c)2003 Citrus Project, |
| 5767 | All rights reserved. |
| 5768 | |
| 5769 | Redistribution and use in source and binary forms, with or without |
| 5770 | modification, are permitted provided that the following conditions |
| 5771 | are met: |
| 5772 | 1. Redistributions of source code must retain the above copyright |
| 5773 | notice, this list of conditions and the following disclaimer. |
| 5774 | 2. Redistributions in binary form must reproduce the above copyright |
| 5775 | notice, this list of conditions and the following disclaimer in the |
| 5776 | documentation and/or other materials provided with the distribution. |
| 5777 | |
| 5778 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5779 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5780 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5781 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5782 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5783 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5784 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5785 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5786 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5787 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5788 | SUCH DAMAGE. |
| 5789 | |
| 5790 | ------------------------------------------------------------------- |
| 5791 | |
Elliott Hughes | 77a3e28 | 2016-08-08 12:39:56 -0700 | [diff] [blame] | 5792 | Copyright 1989 The Regents of the University of California. |
| 5793 | All rights reserved. |
| 5794 | |
| 5795 | Redistribution and use in source and binary forms, with or without |
| 5796 | modification, are permitted provided that the following conditions |
| 5797 | are met: |
| 5798 | 1. Redistributions of source code must retain the above copyright |
| 5799 | notice, this list of conditions and the following disclaimer. |
| 5800 | 2. Redistributions in binary form must reproduce the above copyright |
| 5801 | notice, this list of conditions and the following disclaimer in the |
| 5802 | documentation and/or other materials provided with the distribution. |
| 5803 | 3. Neither the name of the University nor the names of its contributors |
| 5804 | may be used to endorse or promote products derived from this software |
| 5805 | without specific prior written permission. |
| 5806 | |
| 5807 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND |
| 5808 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5809 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5810 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 5811 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5812 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5813 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5814 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5815 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5816 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5817 | |
| 5818 | ------------------------------------------------------------------- |
| 5819 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 5820 | Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
| 5821 | Copyright 2008 Damien Miller <djm@openbsd.org> |
| 5822 | All rights reserved. |
| 5823 | |
| 5824 | Theo de Raadt <deraadt@openbsd.org> came up with the idea of using |
| 5825 | such a mathematical system to generate more random (yet non-repeating) |
| 5826 | ids to solve the resolver/named problem. But Niels designed the |
| 5827 | actual system based on the constraints. |
| 5828 | |
| 5829 | Later modified by Damien Miller to wrap the LCG output in a 15-bit |
| 5830 | permutation generator based on a Luby-Rackoff block cipher. This |
| 5831 | ensures the output is non-repeating and preserves the MSB twiddle |
| 5832 | trick, but makes it more resistant to LCG prediction. |
| 5833 | |
| 5834 | Redistribution and use in source and binary forms, with or without |
| 5835 | modification, are permitted provided that the following conditions |
| 5836 | are met: |
| 5837 | 1. Redistributions of source code must retain the above copyright |
| 5838 | notice, this list of conditions and the following disclaimer. |
| 5839 | 2. Redistributions in binary form must reproduce the above copyright |
| 5840 | notice, this list of conditions and the following disclaimer in the |
| 5841 | documentation and/or other materials provided with the distribution. |
| 5842 | |
| 5843 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 5844 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 5845 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5846 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5847 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 5848 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5849 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5850 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5851 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5852 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5853 | |
| 5854 | ------------------------------------------------------------------- |
| 5855 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5856 | From: @(#)s_ilogb.c 5.1 93/09/24 |
| 5857 | ==================================================== |
| 5858 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 5859 | |
| 5860 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 5861 | Permission to use, copy, modify, and distribute this |
| 5862 | software is freely granted, provided that this notice |
| 5863 | is preserved. |
| 5864 | |
| 5865 | ------------------------------------------------------------------- |
| 5866 | |
Calin Juravle | c4fbf92 | 2014-03-10 11:23:52 +0000 | [diff] [blame] | 5867 | Portions Copyright (C) 2004, 2005, 2008, 2009 Internet Systems Consortium, Inc. ("ISC") |
| 5868 | Portions Copyright (C) 1996-2003 Internet Software Consortium. |
| 5869 | |
| 5870 | Permission to use, copy, modify, and/or distribute this software for any |
| 5871 | purpose with or without fee is hereby granted, provided that the above |
| 5872 | copyright notice and this permission notice appear in all copies. |
| 5873 | |
| 5874 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 5875 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 5876 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 5877 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 5878 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 5879 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 5880 | PERFORMANCE OF THIS SOFTWARE. |
| 5881 | |
| 5882 | ------------------------------------------------------------------- |
| 5883 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5884 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 5885 | |
| 5886 | Permission to use, copy, modify, and distribute this software for any |
| 5887 | purpose with or without fee is hereby granted, provided that the above |
| 5888 | copyright notice and this permission notice appear in all copies, and that |
| 5889 | the name of Digital Equipment Corporation not be used in advertising or |
| 5890 | publicity pertaining to distribution of the document or software without |
| 5891 | specific, written prior permission. |
| 5892 | |
| 5893 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 5894 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 5895 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 5896 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 5897 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 5898 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 5899 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 5900 | SOFTWARE. |
| 5901 | |
| 5902 | ------------------------------------------------------------------- |
| 5903 | |
| 5904 | Portions Copyright (c) 1995 by International Business Machines, Inc. |
| 5905 | |
| 5906 | International Business Machines, Inc. (hereinafter called IBM) grants |
| 5907 | permission under its copyrights to use, copy, modify, and distribute this |
| 5908 | Software with or without fee, provided that the above copyright notice and |
| 5909 | all paragraphs of this notice appear in all copies, and that the name of IBM |
| 5910 | not be used in connection with the marketing of any product incorporating |
| 5911 | the Software or modifications thereof, without specific, written prior |
| 5912 | permission. |
| 5913 | |
| 5914 | To the extent it has a right to do so, IBM grants an immunity from suit |
| 5915 | under its patents, if any, for the use, sale or manufacture of products to |
| 5916 | the extent that such products are used for performing Domain Name System |
| 5917 | dynamic updates in TCP/IP networks by means of the Software. No immunity is |
| 5918 | granted for any product per se or for any other function of any product. |
| 5919 | |
| 5920 | THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, |
| 5921 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 5922 | PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, |
| 5923 | DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING |
| 5924 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN |
| 5925 | IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| 5926 | |
| 5927 | ------------------------------------------------------------------- |
| 5928 | |
| 5929 | Portions Copyright(C) 1995, Jason Downs. All rights reserved. |
| 5930 | |
| 5931 | Redistribution and use in source and binary forms, with or without |
| 5932 | modification, are permitted provided that the following conditions |
| 5933 | are met: |
| 5934 | 1. Redistributions of source code must retain the above copyright |
| 5935 | notice, this list of conditions and the following disclaimer. |
| 5936 | 2. Redistributions in binary form must reproduce the above copyright |
| 5937 | notice, this list of conditions and the following disclaimer in the |
| 5938 | documentation and/or other materials provided with the distribution. |
| 5939 | |
| 5940 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS |
| 5941 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5942 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5943 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, |
| 5944 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5945 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 5946 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 5947 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5948 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5949 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5950 | SUCH DAMAGE. |
| 5951 | |
| 5952 | ------------------------------------------------------------------- |
| 5953 | |
| 5954 | The author of this software is David M. Gay. |
| 5955 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5956 | Copyright (C) 1998 by Lucent Technologies |
| 5957 | All Rights Reserved |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5958 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5959 | Permission to use, copy, modify, and distribute this software and |
| 5960 | its documentation for any purpose and without fee is hereby |
| 5961 | granted, provided that the above copyright notice appear in all |
| 5962 | copies and that both that the copyright notice and this |
| 5963 | permission notice and warranty disclaimer appear in supporting |
| 5964 | documentation, and that the name of Lucent or any of its entities |
| 5965 | not be used in advertising or publicity pertaining to |
| 5966 | distribution of the software without specific, written prior |
| 5967 | permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5968 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5969 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5970 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5971 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5972 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5973 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5974 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5975 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5976 | THIS SOFTWARE. |
| 5977 | |
| 5978 | ------------------------------------------------------------------- |
| 5979 | |
| 5980 | The author of this software is David M. Gay. |
| 5981 | |
| 5982 | Copyright (C) 1998, 1999 by Lucent Technologies |
| 5983 | All Rights Reserved |
| 5984 | |
| 5985 | Permission to use, copy, modify, and distribute this software and |
| 5986 | its documentation for any purpose and without fee is hereby |
| 5987 | granted, provided that the above copyright notice appear in all |
| 5988 | copies and that both that the copyright notice and this |
| 5989 | permission notice and warranty disclaimer appear in supporting |
| 5990 | documentation, and that the name of Lucent or any of its entities |
| 5991 | not be used in advertising or publicity pertaining to |
| 5992 | distribution of the software without specific, written prior |
| 5993 | permission. |
| 5994 | |
| 5995 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5996 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5997 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5998 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5999 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6000 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6001 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6002 | THIS SOFTWARE. |
| 6003 | |
| 6004 | ------------------------------------------------------------------- |
| 6005 | |
| 6006 | The author of this software is David M. Gay. |
| 6007 | |
| 6008 | Copyright (C) 1998, 2000 by Lucent Technologies |
| 6009 | All Rights Reserved |
| 6010 | |
| 6011 | Permission to use, copy, modify, and distribute this software and |
| 6012 | its documentation for any purpose and without fee is hereby |
| 6013 | granted, provided that the above copyright notice appear in all |
| 6014 | copies and that both that the copyright notice and this |
| 6015 | permission notice and warranty disclaimer appear in supporting |
| 6016 | documentation, and that the name of Lucent or any of its entities |
| 6017 | not be used in advertising or publicity pertaining to |
| 6018 | distribution of the software without specific, written prior |
| 6019 | permission. |
| 6020 | |
| 6021 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6022 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6023 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6024 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6025 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6026 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6027 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6028 | THIS SOFTWARE. |
| 6029 | |
| 6030 | ------------------------------------------------------------------- |
| 6031 | |
| 6032 | The author of this software is David M. Gay. |
| 6033 | |
| 6034 | Copyright (C) 1998-2000 by Lucent Technologies |
| 6035 | All Rights Reserved |
| 6036 | |
| 6037 | Permission to use, copy, modify, and distribute this software and |
| 6038 | its documentation for any purpose and without fee is hereby |
| 6039 | granted, provided that the above copyright notice appear in all |
| 6040 | copies and that both that the copyright notice and this |
| 6041 | permission notice and warranty disclaimer appear in supporting |
| 6042 | documentation, and that the name of Lucent or any of its entities |
| 6043 | not be used in advertising or publicity pertaining to |
| 6044 | distribution of the software without specific, written prior |
| 6045 | permission. |
| 6046 | |
| 6047 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6048 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6049 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6050 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6051 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6052 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6053 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6054 | THIS SOFTWARE. |
| 6055 | |
| 6056 | ------------------------------------------------------------------- |
| 6057 | |
| 6058 | The author of this software is David M. Gay. |
| 6059 | |
| 6060 | Copyright (C) 1998-2001 by Lucent Technologies |
| 6061 | All Rights Reserved |
| 6062 | |
| 6063 | Permission to use, copy, modify, and distribute this software and |
| 6064 | its documentation for any purpose and without fee is hereby |
| 6065 | granted, provided that the above copyright notice appear in all |
| 6066 | copies and that both that the copyright notice and this |
| 6067 | permission notice and warranty disclaimer appear in supporting |
| 6068 | documentation, and that the name of Lucent or any of its entities |
| 6069 | not be used in advertising or publicity pertaining to |
| 6070 | distribution of the software without specific, written prior |
| 6071 | permission. |
| 6072 | |
| 6073 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6074 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6075 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6076 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6077 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6078 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6079 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6080 | THIS SOFTWARE. |
| 6081 | |
| 6082 | ------------------------------------------------------------------- |
| 6083 | |
| 6084 | The author of this software is David M. Gay. |
| 6085 | |
| 6086 | Copyright (C) 2000 by Lucent Technologies |
| 6087 | All Rights Reserved |
| 6088 | |
| 6089 | Permission to use, copy, modify, and distribute this software and |
| 6090 | its documentation for any purpose and without fee is hereby |
| 6091 | granted, provided that the above copyright notice appear in all |
| 6092 | copies and that both that the copyright notice and this |
| 6093 | permission notice and warranty disclaimer appear in supporting |
| 6094 | documentation, and that the name of Lucent or any of its entities |
| 6095 | not be used in advertising or publicity pertaining to |
| 6096 | distribution of the software without specific, written prior |
| 6097 | permission. |
| 6098 | |
| 6099 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6100 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6101 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6102 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6103 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6104 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6105 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6106 | THIS SOFTWARE. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 6107 | |
| 6108 | ------------------------------------------------------------------- |
| 6109 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 6110 | memchr - find a character in a memory zone |
| 6111 | |
| 6112 | Copyright (c) 2014, ARM Limited |
| 6113 | All rights Reserved. |
| 6114 | Copyright (c) 2014, Linaro Ltd. |
| 6115 | |
| 6116 | Redistribution and use in source and binary forms, with or without |
| 6117 | modification, are permitted provided that the following conditions are met: |
| 6118 | * Redistributions of source code must retain the above copyright |
| 6119 | notice, this list of conditions and the following disclaimer. |
| 6120 | * Redistributions in binary form must reproduce the above copyright |
| 6121 | notice, this list of conditions and the following disclaimer in the |
| 6122 | documentation and/or other materials provided with the distribution. |
| 6123 | * Neither the name of the company nor the names of its contributors |
| 6124 | may be used to endorse or promote products derived from this |
| 6125 | software without specific prior written permission. |
| 6126 | |
| 6127 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 6128 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 6129 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 6130 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 6131 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 6132 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 6133 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 6134 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 6135 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 6136 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 6137 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 6138 | |
| 6139 | ------------------------------------------------------------------- |
| 6140 | |