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 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 115 | ==================================================== |
| 116 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 117 | |
| 118 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 119 | Permission to use, copy, modify, and distribute this |
| 120 | software is freely granted, provided that this notice |
| 121 | is preserved. |
| 122 | |
| 123 | ------------------------------------------------------------------- |
| 124 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 125 | ==================================================== |
| 126 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 127 | |
| 128 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 129 | Permission to use, copy, modify, and distribute this |
| 130 | software is freely granted, provided that this notice |
| 131 | is preserved. |
| 132 | ==================================================== |
| 133 | |
| 134 | Optimized by Bruce D. Evans. |
| 135 | |
| 136 | ------------------------------------------------------------------- |
| 137 | |
| 138 | ==================================================== |
| 139 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 140 | |
| 141 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 142 | Permission to use, copy, modify, and distribute this |
| 143 | software is freely granted, provided that this notice |
| 144 | is preserved. |
| 145 | |
| 146 | ------------------------------------------------------------------- |
| 147 | |
| 148 | ==================================================== |
| 149 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 150 | |
| 151 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 152 | Permission to use, copy, modify, and distribute this |
| 153 | software is freely granted, provided that this notice |
| 154 | is preserved. |
| 155 | ==================================================== |
| 156 | |
| 157 | Optimized by Bruce D. Evans. |
| 158 | |
| 159 | ------------------------------------------------------------------- |
| 160 | |
| 161 | ==================================================== |
| 162 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 163 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 164 | |
| 165 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 166 | Permission to use, copy, modify, and distribute this |
| 167 | software is freely granted, provided that this notice |
| 168 | is preserved. |
| 169 | |
| 170 | ------------------------------------------------------------------- |
| 171 | |
| 172 | ==================================================== |
| 173 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 174 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 175 | |
| 176 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 177 | Permission to use, copy, modify, and distribute this |
| 178 | software is freely granted, provided that this notice |
| 179 | is preserved. |
| 180 | ==================================================== |
| 181 | |
| 182 | Optimized by Bruce D. Evans. |
| 183 | |
| 184 | ------------------------------------------------------------------- |
| 185 | |
| 186 | ==================================================== |
| 187 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 188 | Copyright (c) 2009-2011, Bruce D. Evans, Steven G. Kargl, David Schultz. |
| 189 | |
| 190 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 191 | Permission to use, copy, modify, and distribute this |
| 192 | software is freely granted, provided that this notice |
| 193 | is preserved. |
| 194 | ==================================================== |
| 195 | |
| 196 | The argument reduction and testing for exceptional cases was |
| 197 | written by Steven G. Kargl with input from Bruce D. Evans |
| 198 | and David A. Schultz. |
| 199 | |
| 200 | ------------------------------------------------------------------- |
| 201 | |
| 202 | ==================================================== |
| 203 | Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved. |
| 204 | |
| 205 | Permission to use, copy, modify, and distribute this |
| 206 | software is freely granted, provided that this notice |
| 207 | is preserved. |
| 208 | |
| 209 | ------------------------------------------------------------------- |
| 210 | |
| 211 | ==================================================== |
| 212 | Copyright 2004 Sun Microsystems, Inc. All Rights Reserved. |
| 213 | |
| 214 | Permission to use, copy, modify, and distribute this |
| 215 | software is freely granted, provided that this notice |
| 216 | is preserved. |
| 217 | |
| 218 | ------------------------------------------------------------------- |
| 219 | |
| 220 | ==================================================== |
| 221 | Copyright 2004 Sun Microsystems, Inc. All Rights Reserved. |
| 222 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 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 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 230 | Based on the UCB version with the ID appearing below. |
| 231 | This is ANSIish only when "multibyte character == plain character". |
| 232 | |
| 233 | Copyright (c) 1989, 1993 |
| 234 | The Regents of the University of California. All rights reserved. |
| 235 | |
| 236 | Redistribution and use in source and binary forms, with or without |
| 237 | modification, are permitted provided that the following conditions |
| 238 | are met: |
| 239 | 1. Redistributions of source code must retain the above copyright |
| 240 | notice, this list of conditions and the following disclaimer. |
| 241 | 2. Redistributions in binary form must reproduce the above copyright |
| 242 | notice, this list of conditions and the following disclaimer in the |
| 243 | documentation and/or other materials provided with the distribution. |
| 244 | 3. Neither the name of the University nor the names of its contributors |
| 245 | may be used to endorse or promote products derived from this software |
| 246 | without specific prior written permission. |
| 247 | |
| 248 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 249 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 250 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 251 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 252 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 253 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 254 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 255 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 256 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 257 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 258 | SUCH DAMAGE. |
| 259 | |
| 260 | ------------------------------------------------------------------- |
| 261 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 262 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 263 | All rights reserved. |
| 264 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 265 | Redistribution and use in source and binary forms, with or without |
| 266 | modification, are permitted provided that the following conditions |
| 267 | are met: |
| 268 | 1. Redistributions of source code must retain the above copyright |
| 269 | notice, this list of conditions and the following disclaimer. |
| 270 | 2. Redistributions in binary form must reproduce the above copyright |
| 271 | notice, this list of conditions and the following disclaimer in the |
| 272 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 273 | 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] | 274 | may be used to endorse or promote products derived from this software |
| 275 | without specific prior written permission. |
| 276 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 277 | 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] | 278 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 279 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 280 | 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] | 281 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 282 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 283 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 284 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 285 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 286 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 287 | SUCH DAMAGE. |
| 288 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 289 | ------------------------------------------------------------------- |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 290 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 291 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 292 | Copyright (C) 1995-1999, 2001, 2003 Internet Software Consortium. |
| 293 | |
| 294 | Permission to use, copy, modify, and/or distribute this software for any |
| 295 | purpose with or without fee is hereby granted, provided that the above |
| 296 | copyright notice and this permission notice appear in all copies. |
| 297 | |
| 298 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 299 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 300 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 301 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 302 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 303 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 304 | PERFORMANCE OF THIS SOFTWARE. |
| 305 | |
| 306 | ------------------------------------------------------------------- |
| 307 | |
| 308 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 309 | Copyright (C) 1997-2001 Internet Software Consortium. |
| 310 | |
| 311 | Permission to use, copy, modify, and/or distribute this software for any |
| 312 | purpose with or without fee is hereby granted, provided that the above |
| 313 | copyright notice and this permission notice appear in all copies. |
| 314 | |
| 315 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 316 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 317 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 318 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 319 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 320 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 321 | PERFORMANCE OF THIS SOFTWARE. |
| 322 | |
| 323 | ------------------------------------------------------------------- |
| 324 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 325 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 326 | |
| 327 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 328 | you may not use this file except in compliance with the License. |
| 329 | You may obtain a copy of the License at |
| 330 | |
| 331 | http://www.apache.org/licenses/LICENSE-2.0 |
| 332 | |
| 333 | Unless required by applicable law or agreed to in writing, software |
| 334 | distributed under the License is distributed on an "AS IS" BASIS, |
| 335 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 336 | See the License for the specific language governing permissions and |
| 337 | limitations under the License. |
| 338 | |
| 339 | ------------------------------------------------------------------- |
| 340 | |
| 341 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 342 | All rights reserved. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 343 | |
| 344 | Redistribution and use in source and binary forms, with or without |
| 345 | modification, are permitted provided that the following conditions |
| 346 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 347 | * Redistributions of source code must retain the above copyright |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 348 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 349 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 350 | notice, this list of conditions and the following disclaimer in |
| 351 | the documentation and/or other materials provided with the |
| 352 | distribution. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 353 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 354 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 355 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 356 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 357 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 358 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 359 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 360 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 361 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 362 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 363 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 364 | 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] | 365 | SUCH DAMAGE. |
| 366 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 367 | ------------------------------------------------------------------- |
| 368 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 369 | Copyright (C) 2007 The Android Open Source Project |
| 370 | |
| 371 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 372 | you may not use this file except in compliance with the License. |
| 373 | You may obtain a copy of the License at |
| 374 | |
| 375 | http://www.apache.org/licenses/LICENSE-2.0 |
| 376 | |
| 377 | Unless required by applicable law or agreed to in writing, software |
| 378 | distributed under the License is distributed on an "AS IS" BASIS, |
| 379 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 380 | See the License for the specific language governing permissions and |
| 381 | limitations under the License. |
| 382 | |
| 383 | ------------------------------------------------------------------- |
| 384 | |
Dimitry Ivanov | bcc4da9 | 2017-02-15 15:31:13 -0800 | [diff] [blame^] | 385 | Copyright (C) 2007 The Android Open Source Project |
| 386 | All rights reserved. |
| 387 | |
| 388 | Redistribution and use in source and binary forms, with or without |
| 389 | modification, are permitted provided that the following conditions |
| 390 | are met: |
| 391 | * Redistributions of source code must retain the above copyright |
| 392 | notice, this list of conditions and the following disclaimer. |
| 393 | * Redistributions in binary form must reproduce the above copyright |
| 394 | notice, this list of conditions and the following disclaimer in |
| 395 | the documentation and/or other materials provided with the |
| 396 | distribution. |
| 397 | |
| 398 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 399 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 400 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 401 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 402 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 403 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 404 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 405 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 406 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 407 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 408 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 409 | SUCH DAMAGE. |
| 410 | |
| 411 | ------------------------------------------------------------------- |
| 412 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 413 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 414 | |
| 415 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 416 | you may not use this file except in compliance with the License. |
| 417 | You may obtain a copy of the License at |
| 418 | |
| 419 | http://www.apache.org/licenses/LICENSE-2.0 |
| 420 | |
| 421 | Unless required by applicable law or agreed to in writing, software |
| 422 | distributed under the License is distributed on an "AS IS" BASIS, |
| 423 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 424 | See the License for the specific language governing permissions and |
| 425 | limitations under the License. |
| 426 | |
| 427 | ------------------------------------------------------------------- |
| 428 | |
| 429 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 430 | All rights reserved. |
| 431 | |
| 432 | Redistribution and use in source and binary forms, with or without |
| 433 | modification, are permitted provided that the following conditions |
| 434 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 435 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 436 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 437 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 438 | notice, this list of conditions and the following disclaimer in |
| 439 | the documentation and/or other materials provided with the |
| 440 | distribution. |
| 441 | |
| 442 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 443 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 444 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 445 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 446 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 447 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 448 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 449 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 450 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 451 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 452 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 453 | SUCH DAMAGE. |
| 454 | |
| 455 | ------------------------------------------------------------------- |
| 456 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 457 | Copyright (C) 2008 The Android Open Source Project |
| 458 | All rights reserved. |
| 459 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 460 | |
| 461 | Redistribution and use in source and binary forms, with or without |
| 462 | modification, are permitted provided that the following conditions |
| 463 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 464 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 465 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 466 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 467 | notice, this list of conditions and the following disclaimer in |
| 468 | the documentation and/or other materials provided with the |
| 469 | distribution. |
| 470 | |
| 471 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 472 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 473 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 474 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 475 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 476 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 477 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 478 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 479 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 480 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 481 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 482 | SUCH DAMAGE. |
| 483 | |
| 484 | ------------------------------------------------------------------- |
| 485 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 486 | Copyright (C) 2009 The Android Open Source Project |
| 487 | All rights reserved. |
| 488 | |
| 489 | Redistribution and use in source and binary forms, with or without |
| 490 | modification, are permitted provided that the following conditions |
| 491 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 492 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 493 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 494 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 495 | notice, this list of conditions and the following disclaimer in |
| 496 | the documentation and/or other materials provided with the |
| 497 | distribution. |
| 498 | |
| 499 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 500 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 501 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 502 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 503 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 504 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 505 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 506 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 507 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 508 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 509 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 510 | SUCH DAMAGE. |
| 511 | |
| 512 | ------------------------------------------------------------------- |
| 513 | |
| 514 | Copyright (C) 2010 The Android Open Source Project |
| 515 | |
| 516 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 517 | you may not use this file except in compliance with the License. |
| 518 | You may obtain a copy of the License at |
| 519 | |
| 520 | http://www.apache.org/licenses/LICENSE-2.0 |
| 521 | |
| 522 | Unless required by applicable law or agreed to in writing, software |
| 523 | distributed under the License is distributed on an "AS IS" BASIS, |
| 524 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 525 | See the License for the specific language governing permissions and |
| 526 | limitations under the License. |
| 527 | |
| 528 | ------------------------------------------------------------------- |
| 529 | |
| 530 | Copyright (C) 2010 The Android Open Source Project |
| 531 | All rights reserved. |
| 532 | |
| 533 | Redistribution and use in source and binary forms, with or without |
| 534 | modification, are permitted provided that the following conditions |
| 535 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 536 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 537 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 538 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 539 | notice, this list of conditions and the following disclaimer in |
| 540 | the documentation and/or other materials provided with the |
| 541 | distribution. |
| 542 | |
| 543 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 544 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 545 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 546 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 547 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 548 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 549 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 550 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 551 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 552 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 553 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 554 | SUCH DAMAGE. |
| 555 | |
| 556 | ------------------------------------------------------------------- |
| 557 | |
| 558 | Copyright (C) 2010 The Android Open Source Project |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 559 | All rights reserved. |
| 560 | |
| 561 | Redistribution and use in source and binary forms, with or without |
| 562 | modification, are permitted provided that the following conditions |
| 563 | are met: |
| 564 | 1. Redistributions of source code must retain the above copyright |
| 565 | notice, this list of conditions and the following disclaimer. |
| 566 | 2. Redistributions in binary form must reproduce the above copyright |
| 567 | notice, this list of conditions and the following disclaimer in the |
| 568 | documentation and/or other materials provided with the distribution. |
| 569 | |
| 570 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 571 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 572 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 573 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 574 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 575 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 576 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 577 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 578 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 579 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 580 | SUCH DAMAGE. |
| 581 | |
| 582 | ------------------------------------------------------------------- |
| 583 | |
| 584 | Copyright (C) 2010 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 585 | Copyright (c) 2008 ARM Ltd |
| 586 | All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 587 | |
| 588 | Redistribution and use in source and binary forms, with or without |
| 589 | modification, are permitted provided that the following conditions |
| 590 | are met: |
| 591 | 1. Redistributions of source code must retain the above copyright |
| 592 | notice, this list of conditions and the following disclaimer. |
| 593 | 2. Redistributions in binary form must reproduce the above copyright |
| 594 | notice, this list of conditions and the following disclaimer in the |
| 595 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 596 | 3. The name of the company may not be used to endorse or promote |
| 597 | products derived from this software without specific prior written |
| 598 | permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 599 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 600 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 601 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 602 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 603 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 604 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 605 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 606 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 607 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 608 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 609 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 610 | |
| 611 | Android adaptation and tweak by Jim Huang <jserv@0xlab.org>. |
| 612 | |
| 613 | ------------------------------------------------------------------- |
| 614 | |
| 615 | Copyright (C) 2011 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 616 | All rights reserved. |
| 617 | |
| 618 | Redistribution and use in source and binary forms, with or without |
| 619 | modification, are permitted provided that the following conditions |
| 620 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 621 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 622 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 623 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 624 | notice, this list of conditions and the following disclaimer in |
| 625 | the documentation and/or other materials provided with the |
| 626 | distribution. |
| 627 | |
| 628 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 629 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 630 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 631 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 632 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 633 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 634 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 635 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 636 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 637 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 638 | 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] | 639 | SUCH DAMAGE. |
| 640 | |
| 641 | ------------------------------------------------------------------- |
| 642 | |
| 643 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 644 | |
| 645 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 646 | you may not use this file except in compliance with the License. |
| 647 | You may obtain a copy of the License at |
| 648 | |
| 649 | http://www.apache.org/licenses/LICENSE-2.0 |
| 650 | |
| 651 | Unless required by applicable law or agreed to in writing, software |
| 652 | distributed under the License is distributed on an "AS IS" BASIS, |
| 653 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 654 | See the License for the specific language governing permissions and |
| 655 | limitations under the License. |
| 656 | |
| 657 | ------------------------------------------------------------------- |
| 658 | |
| 659 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 660 | All rights reserved. |
| 661 | |
| 662 | Redistribution and use in source and binary forms, with or without |
| 663 | modification, are permitted provided that the following conditions |
| 664 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 665 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 666 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 667 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 668 | notice, this list of conditions and the following disclaimer in |
| 669 | the documentation and/or other materials provided with the |
| 670 | distribution. |
| 671 | |
| 672 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 673 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 674 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 675 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 676 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 677 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 678 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 679 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 680 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 681 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 682 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 683 | SUCH DAMAGE. |
| 684 | |
| 685 | ------------------------------------------------------------------- |
| 686 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 687 | Copyright (C) 2013 The Android Open Source Project |
| 688 | |
| 689 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 690 | you may not use this file except in compliance with the License. |
| 691 | You may obtain a copy of the License at |
| 692 | |
| 693 | http://www.apache.org/licenses/LICENSE-2.0 |
| 694 | |
| 695 | Unless required by applicable law or agreed to in writing, software |
| 696 | distributed under the License is distributed on an "AS IS" BASIS, |
| 697 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 698 | See the License for the specific language governing permissions and |
| 699 | limitations under the License. |
| 700 | |
| 701 | ------------------------------------------------------------------- |
| 702 | |
| 703 | Copyright (C) 2013 The Android Open Source Project |
| 704 | All rights reserved. |
| 705 | |
| 706 | Redistribution and use in source and binary forms, with or without |
| 707 | modification, are permitted provided that the following conditions |
| 708 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 709 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 710 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 711 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 712 | notice, this list of conditions and the following disclaimer in |
| 713 | the documentation and/or other materials provided with the |
| 714 | distribution. |
| 715 | |
| 716 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 717 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 718 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 719 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 720 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 721 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 722 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 723 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 724 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 725 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 726 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 727 | SUCH DAMAGE. |
| 728 | |
| 729 | ------------------------------------------------------------------- |
| 730 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 731 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 732 | All rights reserved. |
| 733 | Copyright (c) 2013-2014 NVIDIA Corporation. All rights reserved. |
| 734 | |
| 735 | Redistribution and use in source and binary forms, with or without |
| 736 | modification, are permitted provided that the following conditions |
| 737 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 738 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 739 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 740 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 741 | notice, this list of conditions and the following disclaimer in |
| 742 | the documentation and/or other materials provided with the |
| 743 | distribution. |
| 744 | |
| 745 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 746 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 747 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 748 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 749 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 750 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 751 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 752 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 753 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 754 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 755 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 756 | SUCH DAMAGE. |
| 757 | |
| 758 | ------------------------------------------------------------------- |
| 759 | |
| 760 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 761 | Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. |
| 762 | All rights reserved. |
| 763 | |
| 764 | Redistribution and use in source and binary forms, with or without |
| 765 | modification, are permitted provided that the following conditions |
| 766 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 767 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 768 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 769 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 770 | notice, this list of conditions and the following disclaimer in |
| 771 | the documentation and/or other materials provided with the |
| 772 | distribution. |
| 773 | |
| 774 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 775 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 776 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 777 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 778 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 779 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 780 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 781 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 782 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 783 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 784 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 785 | SUCH DAMAGE. |
| 786 | |
| 787 | ------------------------------------------------------------------- |
| 788 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 789 | Copyright (C) 2014 The Android Open Source Project |
| 790 | |
| 791 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 792 | you may not use this file except in compliance with the License. |
| 793 | You may obtain a copy of the License at |
| 794 | |
| 795 | http://www.apache.org/licenses/LICENSE-2.0 |
| 796 | |
| 797 | Unless required by applicable law or agreed to in writing, software |
| 798 | distributed under the License is distributed on an "AS IS" BASIS, |
| 799 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 800 | See the License for the specific language governing permissions and |
| 801 | limitations under the License. |
| 802 | |
| 803 | ------------------------------------------------------------------- |
| 804 | |
| 805 | Copyright (C) 2014 The Android Open Source Project |
| 806 | All rights reserved. |
| 807 | |
| 808 | Redistribution and use in source and binary forms, with or without |
| 809 | modification, are permitted provided that the following conditions |
| 810 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 811 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 812 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 813 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 814 | notice, this list of conditions and the following disclaimer in |
| 815 | the documentation and/or other materials provided with the |
| 816 | distribution. |
| 817 | |
| 818 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 819 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 820 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 821 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 822 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 823 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 824 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 825 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 826 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 827 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 828 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 829 | SUCH DAMAGE. |
| 830 | |
| 831 | ------------------------------------------------------------------- |
| 832 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 833 | Copyright (C) 2014 The Android Open Source Project |
| 834 | All rights reserved. |
| 835 | |
| 836 | Redistribution and use in source and binary forms, with or without |
| 837 | modification, are permitted provided that the following conditions |
| 838 | are met: |
| 839 | 1. Redistributions of source code must retain the above copyright |
| 840 | notice, this list of conditions and the following disclaimer. |
| 841 | 2. Redistributions in binary form must reproduce the above copyright |
| 842 | notice, this list of conditions and the following disclaimer in the |
| 843 | documentation and/or other materials provided with the distribution. |
| 844 | |
| 845 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 846 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 847 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 848 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 849 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 850 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 851 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 852 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 853 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 854 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 855 | SUCH DAMAGE. |
| 856 | |
| 857 | ------------------------------------------------------------------- |
| 858 | |
| 859 | Copyright (C) 2015 The Android Open Source Project |
| 860 | |
| 861 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 862 | you may not use this file except in compliance with the License. |
| 863 | You may obtain a copy of the License at |
| 864 | |
| 865 | http://www.apache.org/licenses/LICENSE-2.0 |
| 866 | |
| 867 | Unless required by applicable law or agreed to in writing, software |
| 868 | distributed under the License is distributed on an "AS IS" BASIS, |
| 869 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 870 | See the License for the specific language governing permissions and |
| 871 | limitations under the License. |
| 872 | |
| 873 | ------------------------------------------------------------------- |
| 874 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 875 | Copyright (C) 2015 The Android Open Source Project |
| 876 | |
| 877 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 878 | you may not use this file except in compliance with the License. |
| 879 | You may obtain a copy of the License at |
| 880 | |
| 881 | http://www.apache.org/licenses/LICENSE-2.0 |
| 882 | |
| 883 | Unless required by applicable law or agreed to in writing, software |
| 884 | distributed under the License is distributed on an "AS IS" BASIS, |
| 885 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 886 | See the License for the specific language governing permissions and |
| 887 | limitations under the License. |
| 888 | |
| 889 | ------------------------------------------------------------------- |
| 890 | |
| 891 | Copyright (C) 2015 The Android Open Source Project |
| 892 | All rights reserved. |
| 893 | |
| 894 | Redistribution and use in source and binary forms, with or without |
| 895 | modification, are permitted provided that the following conditions |
| 896 | are met: |
| 897 | * Redistributions of source code must retain the above copyright |
| 898 | notice, this list of conditions and the following disclaimer. |
| 899 | * Redistributions in binary form must reproduce the above copyright |
| 900 | notice, this list of conditions and the following disclaimer in |
| 901 | the documentation and/or other materials provided with the |
| 902 | distribution. |
| 903 | |
| 904 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 905 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 906 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 907 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 908 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 909 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 910 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 911 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 912 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 913 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 914 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 915 | SUCH DAMAGE. |
| 916 | |
| 917 | ------------------------------------------------------------------- |
| 918 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 919 | Copyright (C) 2016 The Android Open Source Project |
| 920 | |
| 921 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 922 | you may not use this file except in compliance with the License. |
| 923 | You may obtain a copy of the License at |
| 924 | |
| 925 | http://www.apache.org/licenses/LICENSE-2.0 |
| 926 | |
| 927 | Unless required by applicable law or agreed to in writing, software |
| 928 | distributed under the License is distributed on an "AS IS" BASIS, |
| 929 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 930 | See the License for the specific language governing permissions and |
| 931 | limitations under the License. |
| 932 | |
| 933 | ------------------------------------------------------------------- |
| 934 | |
| 935 | Copyright (C) 2016 The Android Open Source Project |
| 936 | All rights reserved. |
| 937 | |
| 938 | Redistribution and use in source and binary forms, with or without |
| 939 | modification, are permitted provided that the following conditions |
| 940 | are met: |
| 941 | * Redistributions of source code must retain the above copyright |
| 942 | notice, this list of conditions and the following disclaimer. |
| 943 | * Redistributions in binary form must reproduce the above copyright |
| 944 | notice, this list of conditions and the following disclaimer in |
| 945 | the documentation and/or other materials provided with the |
| 946 | distribution. |
| 947 | |
| 948 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 949 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 950 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 951 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 952 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 953 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 954 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 955 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 956 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 957 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 958 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 959 | SUCH DAMAGE. |
| 960 | |
| 961 | ------------------------------------------------------------------- |
| 962 | |
mspector | 2e3d6a1 | 2017-01-24 21:51:51 -0800 | [diff] [blame] | 963 | Copyright (C) 2017 The Android Open Source Project |
| 964 | All rights reserved. |
| 965 | |
| 966 | Redistribution and use in source and binary forms, with or without |
| 967 | modification, are permitted provided that the following conditions |
| 968 | are met: |
| 969 | * Redistributions of source code must retain the above copyright |
| 970 | notice, this list of conditions and the following disclaimer. |
| 971 | * Redistributions in binary form must reproduce the above copyright |
| 972 | notice, this list of conditions and the following disclaimer in |
| 973 | the documentation and/or other materials provided with the |
| 974 | distribution. |
| 975 | |
| 976 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 977 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 978 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 979 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 980 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 981 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 982 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 983 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 984 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 985 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 986 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 987 | SUCH DAMAGE. |
| 988 | |
| 989 | ------------------------------------------------------------------- |
| 990 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 991 | Copyright (c) 1980, 1983, 1988, 1993 |
| 992 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 993 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 994 | Redistribution and use in source and binary forms, with or without |
| 995 | modification, are permitted provided that the following conditions |
| 996 | are met: |
| 997 | 1. Redistributions of source code must retain the above copyright |
| 998 | notice, this list of conditions and the following disclaimer. |
| 999 | 2. Redistributions in binary form must reproduce the above copyright |
| 1000 | notice, this list of conditions and the following disclaimer in the |
| 1001 | documentation and/or other materials provided with the distribution. |
| 1002 | 3. All advertising materials mentioning features or use of this software |
| 1003 | must display the following acknowledgement: |
| 1004 | This product includes software developed by the University of |
| 1005 | California, Berkeley and its contributors. |
| 1006 | 4. Neither the name of the University nor the names of its contributors |
| 1007 | may be used to endorse or promote products derived from this software |
| 1008 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1009 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1010 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1011 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1012 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1013 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1014 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1015 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1016 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1017 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1018 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1019 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1020 | SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1021 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1022 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1023 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1024 | |
| 1025 | Permission to use, copy, modify, and distribute this software for any |
| 1026 | purpose with or without fee is hereby granted, provided that the above |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1027 | copyright notice and this permission notice appear in all copies, and that |
| 1028 | the name of Digital Equipment Corporation not be used in advertising or |
| 1029 | publicity pertaining to distribution of the document or software without |
| 1030 | specific, written prior permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1031 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1032 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1033 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1034 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1035 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1036 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1037 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1038 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1039 | SOFTWARE. |
| 1040 | |
| 1041 | ------------------------------------------------------------------- |
| 1042 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1043 | Copyright (c) 1982, 1986, 1993 |
| 1044 | The Regents of the University of California. All rights reserved. |
| 1045 | |
| 1046 | Redistribution and use in source and binary forms, with or without |
| 1047 | modification, are permitted provided that the following conditions |
| 1048 | are met: |
| 1049 | 1. Redistributions of source code must retain the above copyright |
| 1050 | notice, this list of conditions and the following disclaimer. |
| 1051 | 2. Redistributions in binary form must reproduce the above copyright |
| 1052 | notice, this list of conditions and the following disclaimer in the |
| 1053 | documentation and/or other materials provided with the distribution. |
| 1054 | 3. Neither the name of the University nor the names of its contributors |
| 1055 | may be used to endorse or promote products derived from this software |
| 1056 | without specific prior written permission. |
| 1057 | |
| 1058 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1059 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1060 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1061 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1062 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1063 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1064 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1065 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1066 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1067 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1068 | SUCH DAMAGE. |
| 1069 | |
| 1070 | ------------------------------------------------------------------- |
| 1071 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 1072 | Copyright (c) 1982, 1986, 1993 |
| 1073 | The Regents of the University of California. All rights reserved. |
| 1074 | (c) UNIX System Laboratories, Inc. |
| 1075 | All or some portions of this file are derived from material licensed |
| 1076 | to the University of California by American Telephone and Telegraph |
| 1077 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1078 | the permission of UNIX System Laboratories, Inc. |
| 1079 | |
| 1080 | Redistribution and use in source and binary forms, with or without |
| 1081 | modification, are permitted provided that the following conditions |
| 1082 | are met: |
| 1083 | 1. Redistributions of source code must retain the above copyright |
| 1084 | notice, this list of conditions and the following disclaimer. |
| 1085 | 2. Redistributions in binary form must reproduce the above copyright |
| 1086 | notice, this list of conditions and the following disclaimer in the |
| 1087 | documentation and/or other materials provided with the distribution. |
| 1088 | 3. Neither the name of the University nor the names of its contributors |
| 1089 | may be used to endorse or promote products derived from this software |
| 1090 | without specific prior written permission. |
| 1091 | |
| 1092 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1093 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1094 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1095 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1096 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1097 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1098 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1099 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1100 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1101 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1102 | SUCH DAMAGE. |
| 1103 | |
| 1104 | ------------------------------------------------------------------- |
| 1105 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1106 | Copyright (c) 1983, 1987, 1989 |
| 1107 | The Regents of the University of California. All rights reserved. |
| 1108 | |
| 1109 | Redistribution and use in source and binary forms, with or without |
| 1110 | modification, are permitted provided that the following conditions |
| 1111 | are met: |
| 1112 | 1. Redistributions of source code must retain the above copyright |
| 1113 | notice, this list of conditions and the following disclaimer. |
| 1114 | 2. Redistributions in binary form must reproduce the above copyright |
| 1115 | notice, this list of conditions and the following disclaimer in the |
| 1116 | documentation and/or other materials provided with the distribution. |
| 1117 | 3. Neither the name of the University nor the names of its contributors |
| 1118 | may be used to endorse or promote products derived from this software |
| 1119 | without specific prior written permission. |
| 1120 | |
| 1121 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1122 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1123 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1124 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1125 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1126 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1127 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1128 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1129 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1130 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1131 | SUCH DAMAGE. |
| 1132 | |
| 1133 | ------------------------------------------------------------------- |
| 1134 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1135 | Copyright (c) 1983, 1989 |
| 1136 | The Regents of the University of California. All rights reserved. |
| 1137 | |
| 1138 | Redistribution and use in source and binary forms, with or without |
| 1139 | modification, are permitted provided that the following conditions |
| 1140 | are met: |
| 1141 | 1. Redistributions of source code must retain the above copyright |
| 1142 | notice, this list of conditions and the following disclaimer. |
| 1143 | 2. Redistributions in binary form must reproduce the above copyright |
| 1144 | notice, this list of conditions and the following disclaimer in the |
| 1145 | documentation and/or other materials provided with the distribution. |
| 1146 | 3. All advertising materials mentioning features or use of this software |
| 1147 | must display the following acknowledgement: |
| 1148 | This product includes software developed by the University of |
| 1149 | California, Berkeley and its contributors. |
| 1150 | 4. Neither the name of the University nor the names of its contributors |
| 1151 | may be used to endorse or promote products derived from this software |
| 1152 | without specific prior written permission. |
| 1153 | |
| 1154 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1155 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1156 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1157 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1158 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1159 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1160 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1161 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1162 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1163 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1164 | SUCH DAMAGE. |
| 1165 | |
| 1166 | ------------------------------------------------------------------- |
| 1167 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1168 | Copyright (c) 1983, 1989, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1169 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1170 | |
| 1171 | Redistribution and use in source and binary forms, with or without |
| 1172 | modification, are permitted provided that the following conditions |
| 1173 | are met: |
| 1174 | 1. Redistributions of source code must retain the above copyright |
| 1175 | notice, this list of conditions and the following disclaimer. |
| 1176 | 2. Redistributions in binary form must reproduce the above copyright |
| 1177 | notice, this list of conditions and the following disclaimer in the |
| 1178 | documentation and/or other materials provided with the distribution. |
| 1179 | 3. Neither the name of the University nor the names of its contributors |
| 1180 | may be used to endorse or promote products derived from this software |
| 1181 | without specific prior written permission. |
| 1182 | |
| 1183 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1184 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1185 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1186 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1187 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1188 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1189 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1190 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1191 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1192 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1193 | SUCH DAMAGE. |
| 1194 | |
| 1195 | ------------------------------------------------------------------- |
| 1196 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1197 | Copyright (c) 1983, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1198 | The Regents of the University of California. All rights reserved. |
| 1199 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1200 | Redistribution and use in source and binary forms, with or without |
| 1201 | modification, are permitted provided that the following conditions |
| 1202 | are met: |
| 1203 | 1. Redistributions of source code must retain the above copyright |
| 1204 | notice, this list of conditions and the following disclaimer. |
| 1205 | 2. Redistributions in binary form must reproduce the above copyright |
| 1206 | notice, this list of conditions and the following disclaimer in the |
| 1207 | documentation and/or other materials provided with the distribution. |
| 1208 | 3. Neither the name of the University nor the names of its contributors |
| 1209 | may be used to endorse or promote products derived from this software |
| 1210 | without specific prior written permission. |
| 1211 | |
| 1212 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1213 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1214 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1215 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1216 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1217 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1218 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1219 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1220 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1221 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1222 | SUCH DAMAGE. |
| 1223 | |
| 1224 | ------------------------------------------------------------------- |
| 1225 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1226 | Copyright (c) 1983, 1993 |
| 1227 | The Regents of the University of California. All rights reserved. |
| 1228 | |
| 1229 | Redistribution and use in source and binary forms, with or without |
| 1230 | modification, are permitted provided that the following conditions |
| 1231 | are met: |
| 1232 | 1. Redistributions of source code must retain the above copyright |
| 1233 | notice, this list of conditions and the following disclaimer. |
| 1234 | 2. Redistributions in binary form must reproduce the above copyright |
| 1235 | notice, this list of conditions and the following disclaimer in the |
| 1236 | documentation and/or other materials provided with the distribution. |
| 1237 | 4. Neither the name of the University nor the names of its contributors |
| 1238 | may be used to endorse or promote products derived from this software |
| 1239 | without specific prior written permission. |
| 1240 | |
| 1241 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1242 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1243 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1244 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1245 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1246 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1247 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1248 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1249 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1250 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1251 | SUCH DAMAGE. |
| 1252 | |
| 1253 | ------------------------------------------------------------------- |
| 1254 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1255 | Copyright (c) 1985 |
| 1256 | The Regents of the University of California. All rights reserved. |
| 1257 | |
| 1258 | Redistribution and use in source and binary forms, with or without |
| 1259 | modification, are permitted provided that the following conditions |
| 1260 | are met: |
| 1261 | 1. Redistributions of source code must retain the above copyright |
| 1262 | notice, this list of conditions and the following disclaimer. |
| 1263 | 2. Redistributions in binary form must reproduce the above copyright |
| 1264 | notice, this list of conditions and the following disclaimer in the |
| 1265 | documentation and/or other materials provided with the distribution. |
| 1266 | 3. All advertising materials mentioning features or use of this software |
| 1267 | must display the following acknowledgement: |
| 1268 | This product includes software developed by the University of |
| 1269 | California, Berkeley and its contributors. |
| 1270 | 4. Neither the name of the University nor the names of its contributors |
| 1271 | may be used to endorse or promote products derived from this software |
| 1272 | without specific prior written permission. |
| 1273 | |
| 1274 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1275 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1276 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1277 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1278 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1279 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1280 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1281 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1282 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1283 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1284 | SUCH DAMAGE. |
| 1285 | |
| 1286 | ------------------------------------------------------------------- |
| 1287 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1288 | Copyright (c) 1985 Regents of the University of California. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1289 | All rights reserved. |
| 1290 | |
| 1291 | Redistribution and use in source and binary forms, with or without |
| 1292 | modification, are permitted provided that the following conditions |
| 1293 | are met: |
| 1294 | 1. Redistributions of source code must retain the above copyright |
| 1295 | notice, this list of conditions and the following disclaimer. |
| 1296 | 2. Redistributions in binary form must reproduce the above copyright |
| 1297 | notice, this list of conditions and the following disclaimer in the |
| 1298 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1299 | 3. Neither the name of the University nor the names of its contributors |
| 1300 | may be used to endorse or promote products derived from this software |
| 1301 | without specific prior written permission. |
| 1302 | |
| 1303 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1304 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1305 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1306 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1307 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1308 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1309 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1310 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1311 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1312 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1313 | SUCH DAMAGE. |
| 1314 | |
| 1315 | ------------------------------------------------------------------- |
| 1316 | |
| 1317 | Copyright (c) 1985, 1988, 1993 |
| 1318 | The Regents of the University of California. All rights reserved. |
| 1319 | |
| 1320 | Redistribution and use in source and binary forms, with or without |
| 1321 | modification, are permitted provided that the following conditions |
| 1322 | are met: |
| 1323 | 1. Redistributions of source code must retain the above copyright |
| 1324 | notice, this list of conditions and the following disclaimer. |
| 1325 | 2. Redistributions in binary form must reproduce the above copyright |
| 1326 | notice, this list of conditions and the following disclaimer in the |
| 1327 | documentation and/or other materials provided with the distribution. |
| 1328 | 3. Neither the name of the University nor the names of its contributors |
| 1329 | may be used to endorse or promote products derived from this software |
| 1330 | without specific prior written permission. |
| 1331 | |
| 1332 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1333 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1334 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1335 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1336 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1337 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1338 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1339 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1340 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1341 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1342 | SUCH DAMAGE. |
| 1343 | |
| 1344 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 1345 | |
| 1346 | Permission to use, copy, modify, and distribute this software for any |
| 1347 | purpose with or without fee is hereby granted, provided that the above |
| 1348 | copyright notice and this permission notice appear in all copies, and that |
| 1349 | the name of Digital Equipment Corporation not be used in advertising or |
| 1350 | publicity pertaining to distribution of the document or software without |
| 1351 | specific, written prior permission. |
| 1352 | |
| 1353 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1354 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1355 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1356 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1357 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1358 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1359 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1360 | SOFTWARE. |
| 1361 | |
| 1362 | ------------------------------------------------------------------- |
| 1363 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1364 | Copyright (c) 1985, 1989, 1993 |
| 1365 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1366 | |
| 1367 | Redistribution and use in source and binary forms, with or without |
| 1368 | modification, are permitted provided that the following conditions |
| 1369 | are met: |
| 1370 | 1. Redistributions of source code must retain the above copyright |
| 1371 | notice, this list of conditions and the following disclaimer. |
| 1372 | 2. Redistributions in binary form must reproduce the above copyright |
| 1373 | notice, this list of conditions and the following disclaimer in the |
| 1374 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1375 | 3. All advertising materials mentioning features or use of this software |
| 1376 | must display the following acknowledgement: |
| 1377 | This product includes software developed by the University of |
| 1378 | California, Berkeley and its contributors. |
| 1379 | 4. Neither the name of the University nor the names of its contributors |
| 1380 | may be used to endorse or promote products derived from this software |
| 1381 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1382 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1383 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1384 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1385 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1386 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1387 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1388 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1389 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1390 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1391 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1392 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1393 | SUCH DAMAGE. |
| 1394 | |
| 1395 | ------------------------------------------------------------------- |
| 1396 | |
| 1397 | Copyright (c) 1985, 1993 |
| 1398 | The Regents of the University of California. All rights reserved. |
| 1399 | |
| 1400 | Redistribution and use in source and binary forms, with or without |
| 1401 | modification, are permitted provided that the following conditions |
| 1402 | are met: |
| 1403 | 1. Redistributions of source code must retain the above copyright |
| 1404 | notice, this list of conditions and the following disclaimer. |
| 1405 | 2. Redistributions in binary form must reproduce the above copyright |
| 1406 | notice, this list of conditions and the following disclaimer in the |
| 1407 | documentation and/or other materials provided with the distribution. |
| 1408 | 3. All advertising materials mentioning features or use of this software |
| 1409 | must display the following acknowledgement: |
| 1410 | This product includes software developed by the University of |
| 1411 | California, Berkeley and its contributors. |
| 1412 | 4. Neither the name of the University nor the names of its contributors |
| 1413 | may be used to endorse or promote products derived from this software |
| 1414 | without specific prior written permission. |
| 1415 | |
| 1416 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1417 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1418 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1419 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1420 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1421 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1422 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1423 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1424 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1425 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1426 | SUCH DAMAGE. |
| 1427 | |
| 1428 | ------------------------------------------------------------------- |
| 1429 | |
| 1430 | Copyright (c) 1985, 1993 |
| 1431 | The Regents of the University of California. All rights reserved. |
| 1432 | |
| 1433 | Redistribution and use in source and binary forms, with or without |
| 1434 | modification, are permitted provided that the following conditions |
| 1435 | are met: |
| 1436 | 1. Redistributions of source code must retain the above copyright |
| 1437 | notice, this list of conditions and the following disclaimer. |
| 1438 | 2. Redistributions in binary form must reproduce the above copyright |
| 1439 | notice, this list of conditions and the following disclaimer in the |
| 1440 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 1441 | 3. All advertising materials mentioning features or use of this software |
| 1442 | must display the following acknowledgement: |
| 1443 | This product includes software developed by the University of |
| 1444 | California, Berkeley and its contributors. |
| 1445 | 4. Neither the name of the University nor the names of its contributors |
| 1446 | may be used to endorse or promote products derived from this software |
| 1447 | without specific prior written permission. |
| 1448 | |
| 1449 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1450 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1451 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1452 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1453 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1454 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1455 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1456 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1457 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1458 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1459 | SUCH DAMAGE. |
| 1460 | |
| 1461 | ------------------------------------------------------------------- |
| 1462 | |
| 1463 | Copyright (c) 1985, 1993 |
| 1464 | The Regents of the University of California. All rights reserved. |
| 1465 | |
| 1466 | Redistribution and use in source and binary forms, with or without |
| 1467 | modification, are permitted provided that the following conditions |
| 1468 | are met: |
| 1469 | 1. Redistributions of source code must retain the above copyright |
| 1470 | notice, this list of conditions and the following disclaimer. |
| 1471 | 2. Redistributions in binary form must reproduce the above copyright |
| 1472 | notice, this list of conditions and the following disclaimer in the |
| 1473 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1474 | 3. Neither the name of the University nor the names of its contributors |
| 1475 | may be used to endorse or promote products derived from this software |
| 1476 | without specific prior written permission. |
| 1477 | |
| 1478 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1479 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1480 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1481 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1482 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1483 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1484 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1485 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1486 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1487 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1488 | SUCH DAMAGE. |
| 1489 | |
| 1490 | ------------------------------------------------------------------- |
| 1491 | |
| 1492 | Copyright (c) 1987 Regents of the University of California. |
| 1493 | All rights reserved. |
| 1494 | |
| 1495 | Redistribution and use in source and binary forms, with or without |
| 1496 | modification, are permitted provided that the following conditions |
| 1497 | are met: |
| 1498 | 1. Redistributions of source code must retain the above copyright |
| 1499 | notice, this list of conditions and the following disclaimer. |
| 1500 | 2. Redistributions in binary form must reproduce the above copyright |
| 1501 | notice, this list of conditions and the following disclaimer in the |
| 1502 | documentation and/or other materials provided with the distribution. |
| 1503 | 3. Neither the name of the University nor the names of its contributors |
| 1504 | may be used to endorse or promote products derived from this software |
| 1505 | without specific prior written permission. |
| 1506 | |
| 1507 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1508 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1509 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1510 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1511 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1512 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1513 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1514 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1515 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1516 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1517 | SUCH DAMAGE. |
| 1518 | |
| 1519 | ------------------------------------------------------------------- |
| 1520 | |
| 1521 | Copyright (c) 1987, 1993 |
| 1522 | The Regents of the University of California. All rights reserved. |
| 1523 | |
| 1524 | Redistribution and use in source and binary forms, with or without |
| 1525 | modification, are permitted provided that the following conditions |
| 1526 | are met: |
| 1527 | 1. Redistributions of source code must retain the above copyright |
| 1528 | notice, this list of conditions and the following disclaimer. |
| 1529 | 2. Redistributions in binary form must reproduce the above copyright |
| 1530 | notice, this list of conditions and the following disclaimer in the |
| 1531 | documentation and/or other materials provided with the distribution. |
| 1532 | 3. All advertising materials mentioning features or use of this software |
| 1533 | must display the following acknowledgement: |
| 1534 | This product includes software developed by the University of |
| 1535 | California, Berkeley and its contributors. |
| 1536 | 4. Neither the name of the University nor the names of its contributors |
| 1537 | may be used to endorse or promote products derived from this software |
| 1538 | without specific prior written permission. |
| 1539 | |
| 1540 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1541 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1542 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1543 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1544 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1545 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1546 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1547 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1548 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1549 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1550 | SUCH DAMAGE. |
| 1551 | |
| 1552 | ------------------------------------------------------------------- |
| 1553 | |
| 1554 | Copyright (c) 1987, 1993 |
| 1555 | The Regents of the University of California. All rights reserved. |
| 1556 | |
| 1557 | Redistribution and use in source and binary forms, with or without |
| 1558 | modification, are permitted provided that the following conditions |
| 1559 | are met: |
| 1560 | 1. Redistributions of source code must retain the above copyright |
| 1561 | notice, this list of conditions and the following disclaimer. |
| 1562 | 2. Redistributions in binary form must reproduce the above copyright |
| 1563 | notice, this list of conditions and the following disclaimer in the |
| 1564 | documentation and/or other materials provided with the distribution. |
| 1565 | 3. Neither the name of the University nor the names of its contributors |
| 1566 | may be used to endorse or promote products derived from this software |
| 1567 | without specific prior written permission. |
| 1568 | |
| 1569 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1570 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1571 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1572 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1573 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1574 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1575 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1576 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1577 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1578 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1579 | SUCH DAMAGE. |
| 1580 | |
| 1581 | ------------------------------------------------------------------- |
| 1582 | |
| 1583 | Copyright (c) 1988 Regents of the University of California. |
| 1584 | All rights reserved. |
| 1585 | |
| 1586 | Redistribution and use in source and binary forms, with or without |
| 1587 | modification, are permitted provided that the following conditions |
| 1588 | are met: |
| 1589 | 1. Redistributions of source code must retain the above copyright |
| 1590 | notice, this list of conditions and the following disclaimer. |
| 1591 | 2. Redistributions in binary form must reproduce the above copyright |
| 1592 | notice, this list of conditions and the following disclaimer in the |
| 1593 | documentation and/or other materials provided with the distribution. |
| 1594 | 3. Neither the name of the University nor the names of its contributors |
| 1595 | may be used to endorse or promote products derived from this software |
| 1596 | without specific prior written permission. |
| 1597 | |
| 1598 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1599 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1600 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1601 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1602 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1603 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1604 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1605 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1606 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1607 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1608 | SUCH DAMAGE. |
| 1609 | |
| 1610 | ------------------------------------------------------------------- |
| 1611 | |
| 1612 | Copyright (c) 1988 The Regents of the University of California. |
| 1613 | All rights reserved. |
| 1614 | |
| 1615 | Redistribution and use in source and binary forms, with or without |
| 1616 | modification, are permitted provided that the following conditions |
| 1617 | are met: |
| 1618 | 1. Redistributions of source code must retain the above copyright |
| 1619 | notice, this list of conditions and the following disclaimer. |
| 1620 | 2. Redistributions in binary form must reproduce the above copyright |
| 1621 | notice, this list of conditions and the following disclaimer in the |
| 1622 | documentation and/or other materials provided with the distribution. |
| 1623 | 3. Neither the name of the University nor the names of its contributors |
| 1624 | may be used to endorse or promote products derived from this software |
| 1625 | without specific prior written permission. |
| 1626 | |
| 1627 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1628 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1629 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1630 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1631 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1632 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1633 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1634 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1635 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1636 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1637 | SUCH DAMAGE. |
| 1638 | |
| 1639 | ------------------------------------------------------------------- |
| 1640 | |
| 1641 | Copyright (c) 1988, 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1642 | The Regents of the University of California. All rights reserved. |
| 1643 | |
| 1644 | Redistribution and use in source and binary forms, with or without |
| 1645 | modification, are permitted provided that the following conditions |
| 1646 | are met: |
| 1647 | 1. Redistributions of source code must retain the above copyright |
| 1648 | notice, this list of conditions and the following disclaimer. |
| 1649 | 2. Redistributions in binary form must reproduce the above copyright |
| 1650 | notice, this list of conditions and the following disclaimer in the |
| 1651 | documentation and/or other materials provided with the distribution. |
| 1652 | 3. All advertising materials mentioning features or use of this software |
| 1653 | must display the following acknowledgement: |
| 1654 | This product includes software developed by the University of |
| 1655 | California, Berkeley and its contributors. |
| 1656 | 4. Neither the name of the University nor the names of its contributors |
| 1657 | may be used to endorse or promote products derived from this software |
| 1658 | without specific prior written permission. |
| 1659 | |
| 1660 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1661 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1662 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1663 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1664 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1665 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1666 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1667 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1668 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1669 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1670 | SUCH DAMAGE. |
| 1671 | |
| 1672 | ------------------------------------------------------------------- |
| 1673 | |
| 1674 | Copyright (c) 1988, 1993 |
| 1675 | The Regents of the University of California. All rights reserved. |
| 1676 | |
| 1677 | Redistribution and use in source and binary forms, with or without |
| 1678 | modification, are permitted provided that the following conditions |
| 1679 | are met: |
| 1680 | 1. Redistributions of source code must retain the above copyright |
| 1681 | notice, this list of conditions and the following disclaimer. |
| 1682 | 2. Redistributions in binary form must reproduce the above copyright |
| 1683 | notice, this list of conditions and the following disclaimer in the |
| 1684 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 1685 | 3. All advertising materials mentioning features or use of this software |
| 1686 | must display the following acknowledgement: |
| 1687 | This product includes software developed by the University of |
| 1688 | California, Berkeley and its contributors. |
| 1689 | 4. Neither the name of the University nor the names of its contributors |
| 1690 | may be used to endorse or promote products derived from this software |
| 1691 | without specific prior written permission. |
| 1692 | |
| 1693 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1694 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1695 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1696 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1697 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1698 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1699 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1700 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1701 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1702 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1703 | SUCH DAMAGE. |
| 1704 | |
| 1705 | ------------------------------------------------------------------- |
| 1706 | |
| 1707 | Copyright (c) 1988, 1993 |
| 1708 | The Regents of the University of California. All rights reserved. |
| 1709 | |
| 1710 | Redistribution and use in source and binary forms, with or without |
| 1711 | modification, are permitted provided that the following conditions |
| 1712 | are met: |
| 1713 | 1. Redistributions of source code must retain the above copyright |
| 1714 | notice, this list of conditions and the following disclaimer. |
| 1715 | 2. Redistributions in binary form must reproduce the above copyright |
| 1716 | notice, this list of conditions and the following disclaimer in the |
| 1717 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1718 | 3. Neither the name of the University nor the names of its contributors |
| 1719 | may be used to endorse or promote products derived from this software |
| 1720 | without specific prior written permission. |
| 1721 | |
| 1722 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1723 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1724 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1725 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1726 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1727 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1728 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1729 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1730 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1731 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1732 | SUCH DAMAGE. |
| 1733 | |
| 1734 | ------------------------------------------------------------------- |
| 1735 | |
| 1736 | Copyright (c) 1988, 1993 |
| 1737 | The Regents of the University of California. All rights reserved. |
| 1738 | |
| 1739 | This code is derived from software written by Ken Arnold and |
| 1740 | published in UNIX Review, Vol. 6, No. 8. |
| 1741 | |
| 1742 | Redistribution and use in source and binary forms, with or without |
| 1743 | modification, are permitted provided that the following conditions |
| 1744 | are met: |
| 1745 | 1. Redistributions of source code must retain the above copyright |
| 1746 | notice, this list of conditions and the following disclaimer. |
| 1747 | 2. Redistributions in binary form must reproduce the above copyright |
| 1748 | notice, this list of conditions and the following disclaimer in the |
| 1749 | documentation and/or other materials provided with the distribution. |
| 1750 | 3. Neither the name of the University nor the names of its contributors |
| 1751 | may be used to endorse or promote products derived from this software |
| 1752 | without specific prior written permission. |
| 1753 | |
| 1754 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1755 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1756 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1757 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1758 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1759 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1760 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1761 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1762 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1763 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1764 | SUCH DAMAGE. |
| 1765 | |
| 1766 | ------------------------------------------------------------------- |
| 1767 | |
| 1768 | Copyright (c) 1989 The Regents of the University of California. |
| 1769 | All rights reserved. |
| 1770 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1771 | Redistribution and use in source and binary forms, with or without |
| 1772 | modification, are permitted provided that the following conditions |
| 1773 | are met: |
| 1774 | 1. Redistributions of source code must retain the above copyright |
| 1775 | notice, this list of conditions and the following disclaimer. |
| 1776 | 2. Redistributions in binary form must reproduce the above copyright |
| 1777 | notice, this list of conditions and the following disclaimer in the |
| 1778 | documentation and/or other materials provided with the distribution. |
| 1779 | 3. Neither the name of the University nor the names of its contributors |
| 1780 | may be used to endorse or promote products derived from this software |
| 1781 | without specific prior written permission. |
| 1782 | |
| 1783 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1784 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1785 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1786 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1787 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1788 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1789 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1790 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1791 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1792 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1793 | SUCH DAMAGE. |
| 1794 | |
| 1795 | ------------------------------------------------------------------- |
| 1796 | |
| 1797 | Copyright (c) 1989 The Regents of the University of California. |
| 1798 | All rights reserved. |
| 1799 | (c) UNIX System Laboratories, Inc. |
| 1800 | All or some portions of this file are derived from material licensed |
| 1801 | to the University of California by American Telephone and Telegraph |
| 1802 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1803 | the permission of UNIX System Laboratories, Inc. |
| 1804 | |
| 1805 | Redistribution and use in source and binary forms, with or without |
| 1806 | modification, are permitted provided that the following conditions |
| 1807 | are met: |
| 1808 | 1. Redistributions of source code must retain the above copyright |
| 1809 | notice, this list of conditions and the following disclaimer. |
| 1810 | 2. Redistributions in binary form must reproduce the above copyright |
| 1811 | notice, this list of conditions and the following disclaimer in the |
| 1812 | documentation and/or other materials provided with the distribution. |
| 1813 | 3. Neither the name of the University nor the names of its contributors |
| 1814 | may be used to endorse or promote products derived from this software |
| 1815 | without specific prior written permission. |
| 1816 | |
| 1817 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1818 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1819 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1820 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1821 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1822 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1823 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1824 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1825 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1826 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1827 | SUCH DAMAGE. |
| 1828 | |
| 1829 | ------------------------------------------------------------------- |
| 1830 | |
| 1831 | Copyright (c) 1989, 1993 |
| 1832 | The Regents of the University of California. All rights reserved. |
| 1833 | |
| 1834 | Redistribution and use in source and binary forms, with or without |
| 1835 | modification, are permitted provided that the following conditions |
| 1836 | are met: |
| 1837 | 1. Redistributions of source code must retain the above copyright |
| 1838 | notice, this list of conditions and the following disclaimer. |
| 1839 | 2. Redistributions in binary form must reproduce the above copyright |
| 1840 | notice, this list of conditions and the following disclaimer in the |
| 1841 | documentation and/or other materials provided with the distribution. |
| 1842 | 3. Neither the name of the University nor the names of its contributors |
| 1843 | may be used to endorse or promote products derived from this software |
| 1844 | without specific prior written permission. |
| 1845 | |
| 1846 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1847 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1848 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1849 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1850 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1851 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1852 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1853 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1854 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1855 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1856 | SUCH DAMAGE. |
| 1857 | |
| 1858 | ------------------------------------------------------------------- |
| 1859 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1860 | Copyright (c) 1989, 1993 |
| 1861 | The Regents of the University of California. All rights reserved. |
| 1862 | |
| 1863 | Redistribution and use in source and binary forms, with or without |
| 1864 | modification, are permitted provided that the following conditions |
| 1865 | are met: |
| 1866 | 1. Redistributions of source code must retain the above copyright |
| 1867 | notice, this list of conditions and the following disclaimer. |
| 1868 | 2. Redistributions in binary form must reproduce the above copyright |
| 1869 | notice, this list of conditions and the following disclaimer in the |
| 1870 | documentation and/or other materials provided with the distribution. |
| 1871 | 4. Neither the name of the University nor the names of its contributors |
| 1872 | may be used to endorse or promote products derived from this software |
| 1873 | without specific prior written permission. |
| 1874 | |
| 1875 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1876 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1877 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1878 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1879 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1880 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1881 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1882 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1883 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1884 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1885 | SUCH DAMAGE. |
| 1886 | |
| 1887 | ------------------------------------------------------------------- |
| 1888 | |
| 1889 | Copyright (c) 1989, 1993 |
| 1890 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 1891 | |
| 1892 | This code is derived from software contributed to Berkeley by |
| 1893 | Roger L. Snyder. |
| 1894 | |
| 1895 | Redistribution and use in source and binary forms, with or without |
| 1896 | modification, are permitted provided that the following conditions |
| 1897 | are met: |
| 1898 | 1. Redistributions of source code must retain the above copyright |
| 1899 | notice, this list of conditions and the following disclaimer. |
| 1900 | 2. Redistributions in binary form must reproduce the above copyright |
| 1901 | notice, this list of conditions and the following disclaimer in the |
| 1902 | documentation and/or other materials provided with the distribution. |
| 1903 | 3. Neither the name of the University nor the names of its contributors |
| 1904 | may be used to endorse or promote products derived from this software |
| 1905 | without specific prior written permission. |
| 1906 | |
| 1907 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1908 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1909 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1910 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1911 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1912 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1913 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1914 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1915 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1916 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1917 | SUCH DAMAGE. |
| 1918 | |
| 1919 | ------------------------------------------------------------------- |
| 1920 | |
| 1921 | Copyright (c) 1989, 1993 |
| 1922 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1923 | (c) UNIX System Laboratories, Inc. |
| 1924 | All or some portions of this file are derived from material licensed |
| 1925 | to the University of California by American Telephone and Telegraph |
| 1926 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1927 | the permission of UNIX System Laboratories, Inc. |
| 1928 | |
| 1929 | Redistribution and use in source and binary forms, with or without |
| 1930 | modification, are permitted provided that the following conditions |
| 1931 | are met: |
| 1932 | 1. Redistributions of source code must retain the above copyright |
| 1933 | notice, this list of conditions and the following disclaimer. |
| 1934 | 2. Redistributions in binary form must reproduce the above copyright |
| 1935 | notice, this list of conditions and the following disclaimer in the |
| 1936 | documentation and/or other materials provided with the distribution. |
| 1937 | 3. Neither the name of the University nor the names of its contributors |
| 1938 | may be used to endorse or promote products derived from this software |
| 1939 | without specific prior written permission. |
| 1940 | |
| 1941 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1942 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1943 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1944 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1945 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1946 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1947 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1948 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1949 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1950 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1951 | SUCH DAMAGE. |
| 1952 | |
| 1953 | ------------------------------------------------------------------- |
| 1954 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 1955 | Copyright (c) 1990 Regents of the University of California. |
| 1956 | All rights reserved. |
| 1957 | |
| 1958 | This code is derived from software contributed to Berkeley by |
| 1959 | Chris Torek. |
| 1960 | |
| 1961 | Redistribution and use in source and binary forms, with or without |
| 1962 | modification, are permitted provided that the following conditions |
| 1963 | are met: |
| 1964 | 1. Redistributions of source code must retain the above copyright |
| 1965 | notice, this list of conditions and the following disclaimer. |
| 1966 | 2. Redistributions in binary form must reproduce the above copyright |
| 1967 | notice, this list of conditions and the following disclaimer in the |
| 1968 | documentation and/or other materials provided with the distribution. |
| 1969 | 3. Neither the name of the University nor the names of its contributors |
| 1970 | may be used to endorse or promote products derived from this software |
| 1971 | without specific prior written permission. |
| 1972 | |
| 1973 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1974 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1975 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1976 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1977 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1978 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1979 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1980 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1981 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1982 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1983 | SUCH DAMAGE. |
| 1984 | |
| 1985 | ------------------------------------------------------------------- |
| 1986 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1987 | Copyright (c) 1990 The Regents of the University of California. |
| 1988 | All rights reserved. |
| 1989 | |
| 1990 | Redistribution and use in source and binary forms, with or without |
| 1991 | modification, are permitted provided that the following conditions |
| 1992 | are met: |
| 1993 | 1. Redistributions of source code must retain the above copyright |
| 1994 | notice, this list of conditions and the following disclaimer. |
| 1995 | 2. Redistributions in binary form must reproduce the above copyright |
| 1996 | notice, this list of conditions and the following disclaimer in the |
| 1997 | documentation and/or other materials provided with the distribution. |
| 1998 | 3. Neither the name of the University nor the names of its contributors |
| 1999 | may be used to endorse or promote products derived from this software |
| 2000 | without specific prior written permission. |
| 2001 | |
| 2002 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2003 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2004 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2005 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2006 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2007 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2008 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2009 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2010 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2011 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2012 | SUCH DAMAGE. |
| 2013 | |
| 2014 | ------------------------------------------------------------------- |
| 2015 | |
| 2016 | Copyright (c) 1990 The Regents of the University of California. |
| 2017 | All rights reserved. |
| 2018 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2019 | This code is derived from software contributed to Berkeley by |
| 2020 | Chris Torek. |
| 2021 | |
| 2022 | Redistribution and use in source and binary forms, with or without |
| 2023 | modification, are permitted provided that the following conditions |
| 2024 | are met: |
| 2025 | 1. Redistributions of source code must retain the above copyright |
| 2026 | notice, this list of conditions and the following disclaimer. |
| 2027 | 2. Redistributions in binary form must reproduce the above copyright |
| 2028 | notice, this list of conditions and the following disclaimer in the |
| 2029 | documentation and/or other materials provided with the distribution. |
| 2030 | 3. Neither the name of the University nor the names of its contributors |
| 2031 | may be used to endorse or promote products derived from this software |
| 2032 | without specific prior written permission. |
| 2033 | |
| 2034 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2035 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2036 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2037 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2038 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2039 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2040 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2041 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2042 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2043 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2044 | SUCH DAMAGE. |
| 2045 | |
| 2046 | ------------------------------------------------------------------- |
| 2047 | |
| 2048 | Copyright (c) 1990 The Regents of the University of California. |
| 2049 | All rights reserved. |
| 2050 | |
| 2051 | This code is derived from software contributed to Berkeley by |
| 2052 | William Jolitz. |
| 2053 | |
| 2054 | Redistribution and use in source and binary forms, with or without |
| 2055 | modification, are permitted provided that the following conditions |
| 2056 | are met: |
| 2057 | 1. Redistributions of source code must retain the above copyright |
| 2058 | notice, this list of conditions and the following disclaimer. |
| 2059 | 2. Redistributions in binary form must reproduce the above copyright |
| 2060 | notice, this list of conditions and the following disclaimer in the |
| 2061 | documentation and/or other materials provided with the distribution. |
| 2062 | 3. Neither the name of the University nor the names of its contributors |
| 2063 | may be used to endorse or promote products derived from this software |
| 2064 | without specific prior written permission. |
| 2065 | |
| 2066 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2067 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2068 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2069 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2070 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2071 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2072 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2073 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2074 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2075 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2076 | SUCH DAMAGE. |
| 2077 | |
| 2078 | ------------------------------------------------------------------- |
| 2079 | |
| 2080 | Copyright (c) 1990, 1993 |
| 2081 | The Regents of the University of California. All rights reserved. |
| 2082 | |
| 2083 | Redistribution and use in source and binary forms, with or without |
| 2084 | modification, are permitted provided that the following conditions |
| 2085 | are met: |
| 2086 | 1. Redistributions of source code must retain the above copyright |
| 2087 | notice, this list of conditions and the following disclaimer. |
| 2088 | 2. Redistributions in binary form must reproduce the above copyright |
| 2089 | notice, this list of conditions and the following disclaimer in the |
| 2090 | documentation and/or other materials provided with the distribution. |
| 2091 | 3. Neither the name of the University nor the names of its contributors |
| 2092 | may be used to endorse or promote products derived from this software |
| 2093 | without specific prior written permission. |
| 2094 | |
| 2095 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2096 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2097 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2098 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2099 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2100 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2101 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2102 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2103 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2104 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2105 | SUCH DAMAGE. |
| 2106 | |
| 2107 | ------------------------------------------------------------------- |
| 2108 | |
| 2109 | Copyright (c) 1990, 1993 |
| 2110 | The Regents of the University of California. All rights reserved. |
| 2111 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2112 | This code is derived from software contributed to Berkeley by |
| 2113 | Chris Torek. |
| 2114 | |
| 2115 | Redistribution and use in source and binary forms, with or without |
| 2116 | modification, are permitted provided that the following conditions |
| 2117 | are met: |
| 2118 | 1. Redistributions of source code must retain the above copyright |
| 2119 | notice, this list of conditions and the following disclaimer. |
| 2120 | 2. Redistributions in binary form must reproduce the above copyright |
| 2121 | notice, this list of conditions and the following disclaimer in the |
| 2122 | documentation and/or other materials provided with the distribution. |
| 2123 | 3. Neither the name of the University nor the names of its contributors |
| 2124 | may be used to endorse or promote products derived from this software |
| 2125 | without specific prior written permission. |
| 2126 | |
| 2127 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2128 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2129 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2130 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2131 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2132 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2133 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2134 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2135 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2136 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2137 | SUCH DAMAGE. |
| 2138 | |
| 2139 | ------------------------------------------------------------------- |
| 2140 | |
| 2141 | Copyright (c) 1990, 1993 |
| 2142 | The Regents of the University of California. All rights reserved. |
| 2143 | |
| 2144 | This code is derived from software contributed to Berkeley by |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2145 | Donn Seeley at UUNET Technologies, Inc. |
| 2146 | |
| 2147 | Redistribution and use in source and binary forms, with or without |
| 2148 | modification, are permitted provided that the following conditions |
| 2149 | are met: |
| 2150 | 1. Redistributions of source code must retain the above copyright |
| 2151 | notice, this list of conditions and the following disclaimer. |
| 2152 | 2. Redistributions in binary form must reproduce the above copyright |
| 2153 | notice, this list of conditions and the following disclaimer in the |
| 2154 | documentation and/or other materials provided with the distribution. |
| 2155 | 3. Neither the name of the University nor the names of its contributors |
| 2156 | may be used to endorse or promote products derived from this software |
| 2157 | without specific prior written permission. |
| 2158 | |
| 2159 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2160 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2161 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2162 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2163 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2164 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2165 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2166 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2167 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2168 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2169 | SUCH DAMAGE. |
| 2170 | |
| 2171 | ------------------------------------------------------------------- |
| 2172 | |
| 2173 | Copyright (c) 1990, 1993 |
| 2174 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2175 | |
| 2176 | This code is derived from software contributed to Berkeley by |
| 2177 | Donn Seeley at UUNET Technologies, Inc. |
| 2178 | |
| 2179 | Redistribution and use in source and binary forms, with or without |
| 2180 | modification, are permitted provided that the following conditions |
| 2181 | are met: |
| 2182 | 1. Redistributions of source code must retain the above copyright |
| 2183 | notice, this list of conditions and the following disclaimer. |
| 2184 | 2. Redistributions in binary form must reproduce the above copyright |
| 2185 | notice, this list of conditions and the following disclaimer in the |
| 2186 | documentation and/or other materials provided with the distribution. |
| 2187 | 4. Neither the name of the University nor the names of its contributors |
| 2188 | may be used to endorse or promote products derived from this software |
| 2189 | without specific prior written permission. |
| 2190 | |
| 2191 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2192 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2193 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2194 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2195 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2196 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2197 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2198 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2199 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2200 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2201 | SUCH DAMAGE. |
| 2202 | |
| 2203 | ------------------------------------------------------------------- |
| 2204 | |
| 2205 | Copyright (c) 1990, 1993 |
| 2206 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2207 | (c) UNIX System Laboratories, Inc. |
| 2208 | All or some portions of this file are derived from material licensed |
| 2209 | to the University of California by American Telephone and Telegraph |
| 2210 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2211 | the permission of UNIX System Laboratories, Inc. |
| 2212 | |
| 2213 | Redistribution and use in source and binary forms, with or without |
| 2214 | modification, are permitted provided that the following conditions |
| 2215 | are met: |
| 2216 | 1. Redistributions of source code must retain the above copyright |
| 2217 | notice, this list of conditions and the following disclaimer. |
| 2218 | 2. Redistributions in binary form must reproduce the above copyright |
| 2219 | notice, this list of conditions and the following disclaimer in the |
| 2220 | documentation and/or other materials provided with the distribution. |
| 2221 | 3. Neither the name of the University nor the names of its contributors |
| 2222 | may be used to endorse or promote products derived from this software |
| 2223 | without specific prior written permission. |
| 2224 | |
| 2225 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2226 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2227 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2228 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2229 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2230 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2231 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2232 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2233 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2234 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2235 | SUCH DAMAGE. |
| 2236 | |
| 2237 | ------------------------------------------------------------------- |
| 2238 | |
| 2239 | Copyright (c) 1990, 1993, 1994 |
| 2240 | The Regents of the University of California. All rights reserved. |
| 2241 | |
| 2242 | Redistribution and use in source and binary forms, with or without |
| 2243 | modification, are permitted provided that the following conditions |
| 2244 | are met: |
| 2245 | 1. Redistributions of source code must retain the above copyright |
| 2246 | notice, this list of conditions and the following disclaimer. |
| 2247 | 2. Redistributions in binary form must reproduce the above copyright |
| 2248 | notice, this list of conditions and the following disclaimer in the |
| 2249 | documentation and/or other materials provided with the distribution. |
| 2250 | 3. Neither the name of the University nor the names of its contributors |
| 2251 | may be used to endorse or promote products derived from this software |
| 2252 | without specific prior written permission. |
| 2253 | |
| 2254 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2255 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2256 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2257 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2258 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2259 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2260 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2261 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2262 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2263 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2264 | SUCH DAMAGE. |
| 2265 | |
| 2266 | ------------------------------------------------------------------- |
| 2267 | |
| 2268 | Copyright (c) 1990, 1993, 1994 |
| 2269 | The Regents of the University of California. All rights reserved. |
| 2270 | |
| 2271 | This code is derived from software contributed to Berkeley by |
| 2272 | Chris Torek. |
| 2273 | |
| 2274 | Redistribution and use in source and binary forms, with or without |
| 2275 | modification, are permitted provided that the following conditions |
| 2276 | are met: |
| 2277 | 1. Redistributions of source code must retain the above copyright |
| 2278 | notice, this list of conditions and the following disclaimer. |
| 2279 | 2. Redistributions in binary form must reproduce the above copyright |
| 2280 | notice, this list of conditions and the following disclaimer in the |
| 2281 | documentation and/or other materials provided with the distribution. |
| 2282 | 3. Neither the name of the University nor the names of its contributors |
| 2283 | may be used to endorse or promote products derived from this software |
| 2284 | without specific prior written permission. |
| 2285 | |
| 2286 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2287 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2288 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2289 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2290 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2291 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2292 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2293 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2294 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2295 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2296 | SUCH DAMAGE. |
| 2297 | |
| 2298 | ------------------------------------------------------------------- |
| 2299 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2300 | Copyright (c) 1991 The Regents of the University of California. |
| 2301 | All rights reserved. |
| 2302 | |
| 2303 | Redistribution and use in source and binary forms, with or without |
| 2304 | modification, are permitted provided that the following conditions |
| 2305 | are met: |
| 2306 | 1. Redistributions of source code must retain the above copyright |
| 2307 | notice, this list of conditions and the following disclaimer. |
| 2308 | 2. Redistributions in binary form must reproduce the above copyright |
| 2309 | notice, this list of conditions and the following disclaimer in the |
| 2310 | documentation and/or other materials provided with the distribution. |
| 2311 | 3. Neither the name of the University nor the names of its contributors |
| 2312 | may be used to endorse or promote products derived from this software |
| 2313 | without specific prior written permission. |
| 2314 | |
| 2315 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2316 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2317 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2318 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2319 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2320 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2321 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2322 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2323 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2324 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2325 | SUCH DAMAGE. |
| 2326 | |
| 2327 | ------------------------------------------------------------------- |
| 2328 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2329 | Copyright (c) 1991, 1993 |
| 2330 | The Regents of the University of California. All rights reserved. |
| 2331 | |
| 2332 | Redistribution and use in source and binary forms, with or without |
| 2333 | modification, are permitted provided that the following conditions |
| 2334 | are met: |
| 2335 | 1. Redistributions of source code must retain the above copyright |
| 2336 | notice, this list of conditions and the following disclaimer. |
| 2337 | 2. Redistributions in binary form must reproduce the above copyright |
| 2338 | notice, this list of conditions and the following disclaimer in the |
| 2339 | documentation and/or other materials provided with the distribution. |
| 2340 | 3. Neither the name of the University nor the names of its contributors |
| 2341 | may be used to endorse or promote products derived from this software |
| 2342 | without specific prior written permission. |
| 2343 | |
| 2344 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2345 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2346 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2347 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2348 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2349 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2350 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2351 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2352 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2353 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2354 | SUCH DAMAGE. |
| 2355 | |
| 2356 | ------------------------------------------------------------------- |
| 2357 | |
| 2358 | Copyright (c) 1991, 1993 |
| 2359 | The Regents of the University of California. All rights reserved. |
| 2360 | |
| 2361 | This code is derived from software contributed to Berkeley by |
| 2362 | Berkeley Software Design, Inc. |
| 2363 | |
| 2364 | Redistribution and use in source and binary forms, with or without |
| 2365 | modification, are permitted provided that the following conditions |
| 2366 | are met: |
| 2367 | 1. Redistributions of source code must retain the above copyright |
| 2368 | notice, this list of conditions and the following disclaimer. |
| 2369 | 2. Redistributions in binary form must reproduce the above copyright |
| 2370 | notice, this list of conditions and the following disclaimer in the |
| 2371 | documentation and/or other materials provided with the distribution. |
| 2372 | 3. Neither the name of the University nor the names of its contributors |
| 2373 | may be used to endorse or promote products derived from this software |
| 2374 | without specific prior written permission. |
| 2375 | |
| 2376 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2377 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2378 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2379 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2380 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2381 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2382 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2383 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2384 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2385 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2386 | SUCH DAMAGE. |
| 2387 | |
| 2388 | ------------------------------------------------------------------- |
| 2389 | |
| 2390 | Copyright (c) 1991, 1993 |
| 2391 | The Regents of the University of California. All rights reserved. |
| 2392 | (c) UNIX System Laboratories, Inc. |
| 2393 | All or some portions of this file are derived from material licensed |
| 2394 | to the University of California by American Telephone and Telegraph |
| 2395 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2396 | the permission of UNIX System Laboratories, Inc. |
| 2397 | |
| 2398 | This code is derived from software contributed to Berkeley by |
| 2399 | Hugh Smith at The University of Guelph. |
| 2400 | |
| 2401 | Redistribution and use in source and binary forms, with or without |
| 2402 | modification, are permitted provided that the following conditions |
| 2403 | are met: |
| 2404 | 1. Redistributions of source code must retain the above copyright |
| 2405 | notice, this list of conditions and the following disclaimer. |
| 2406 | 2. Redistributions in binary form must reproduce the above copyright |
| 2407 | notice, this list of conditions and the following disclaimer in the |
| 2408 | documentation and/or other materials provided with the distribution. |
| 2409 | 3. Neither the name of the University nor the names of its contributors |
| 2410 | may be used to endorse or promote products derived from this software |
| 2411 | without specific prior written permission. |
| 2412 | |
| 2413 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2414 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2415 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2416 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2417 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2418 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2419 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2420 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2421 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2422 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2423 | SUCH DAMAGE. |
| 2424 | |
| 2425 | ------------------------------------------------------------------- |
| 2426 | |
| 2427 | Copyright (c) 1991, 1993, 1995, |
| 2428 | The Regents of the University of California. All rights reserved. |
| 2429 | |
| 2430 | This code is derived from software contributed to Berkeley by |
| 2431 | Havard Eidnes. |
| 2432 | |
| 2433 | Redistribution and use in source and binary forms, with or without |
| 2434 | modification, are permitted provided that the following conditions |
| 2435 | are met: |
| 2436 | 1. Redistributions of source code must retain the above copyright |
| 2437 | notice, this list of conditions and the following disclaimer. |
| 2438 | 2. Redistributions in binary form must reproduce the above copyright |
| 2439 | notice, this list of conditions and the following disclaimer in the |
| 2440 | documentation and/or other materials provided with the distribution. |
| 2441 | 3. Neither the name of the University nor the names of its contributors |
| 2442 | may be used to endorse or promote products derived from this software |
| 2443 | without specific prior written permission. |
| 2444 | |
| 2445 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2446 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2447 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2448 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2449 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2450 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2451 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2452 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2453 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2454 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2455 | SUCH DAMAGE. |
| 2456 | |
| 2457 | ------------------------------------------------------------------- |
| 2458 | |
| 2459 | Copyright (c) 1992 Henry Spencer. |
| 2460 | Copyright (c) 1992, 1993 |
| 2461 | The Regents of the University of California. All rights reserved. |
| 2462 | |
| 2463 | This code is derived from software contributed to Berkeley by |
| 2464 | Henry Spencer of the University of Toronto. |
| 2465 | |
| 2466 | Redistribution and use in source and binary forms, with or without |
| 2467 | modification, are permitted provided that the following conditions |
| 2468 | are met: |
| 2469 | 1. Redistributions of source code must retain the above copyright |
| 2470 | notice, this list of conditions and the following disclaimer. |
| 2471 | 2. Redistributions in binary form must reproduce the above copyright |
| 2472 | notice, this list of conditions and the following disclaimer in the |
| 2473 | documentation and/or other materials provided with the distribution. |
| 2474 | 3. Neither the name of the University nor the names of its contributors |
| 2475 | may be used to endorse or promote products derived from this software |
| 2476 | without specific prior written permission. |
| 2477 | |
| 2478 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2479 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2480 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2481 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2482 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2483 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2484 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2485 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2486 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2487 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2488 | SUCH DAMAGE. |
| 2489 | |
| 2490 | ------------------------------------------------------------------- |
| 2491 | |
| 2492 | Copyright (c) 1992 The Regents of the University of California. |
| 2493 | All rights reserved. |
| 2494 | |
| 2495 | Redistribution and use in source and binary forms, with or without |
| 2496 | modification, are permitted provided that the following conditions |
| 2497 | are met: |
| 2498 | 1. Redistributions of source code must retain the above copyright |
| 2499 | notice, this list of conditions and the following disclaimer. |
| 2500 | 2. Redistributions in binary form must reproduce the above copyright |
| 2501 | notice, this list of conditions and the following disclaimer in the |
| 2502 | documentation and/or other materials provided with the distribution. |
| 2503 | 3. Neither the name of the University nor the names of its contributors |
| 2504 | may be used to endorse or promote products derived from this software |
| 2505 | without specific prior written permission. |
| 2506 | |
| 2507 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2508 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2509 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2510 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2511 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2512 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2513 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2514 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2515 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2516 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2517 | SUCH DAMAGE. |
| 2518 | |
| 2519 | ------------------------------------------------------------------- |
| 2520 | |
| 2521 | Copyright (c) 1992, 1993 |
| 2522 | The Regents of the University of California. All rights reserved. |
| 2523 | |
| 2524 | Redistribution and use in source and binary forms, with or without |
| 2525 | modification, are permitted provided that the following conditions |
| 2526 | are met: |
| 2527 | 1. Redistributions of source code must retain the above copyright |
| 2528 | notice, this list of conditions and the following disclaimer. |
| 2529 | 2. Redistributions in binary form must reproduce the above copyright |
| 2530 | notice, this list of conditions and the following disclaimer in the |
| 2531 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 2532 | 3. All advertising materials mentioning features or use of this software |
| 2533 | must display the following acknowledgement: |
| 2534 | This product includes software developed by the University of |
| 2535 | California, Berkeley and its contributors. |
| 2536 | 4. Neither the name of the University nor the names of its contributors |
| 2537 | may be used to endorse or promote products derived from this software |
| 2538 | without specific prior written permission. |
| 2539 | |
| 2540 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2541 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2542 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2543 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2544 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2545 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2546 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2547 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2548 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2549 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2550 | SUCH DAMAGE. |
| 2551 | |
| 2552 | ------------------------------------------------------------------- |
| 2553 | |
| 2554 | Copyright (c) 1992, 1993 |
| 2555 | The Regents of the University of California. All rights reserved. |
| 2556 | |
| 2557 | Redistribution and use in source and binary forms, with or without |
| 2558 | modification, are permitted provided that the following conditions |
| 2559 | are met: |
| 2560 | 1. Redistributions of source code must retain the above copyright |
| 2561 | notice, this list of conditions and the following disclaimer. |
| 2562 | 2. Redistributions in binary form must reproduce the above copyright |
| 2563 | notice, this list of conditions and the following disclaimer in the |
| 2564 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2565 | 3. Neither the name of the University nor the names of its contributors |
| 2566 | may be used to endorse or promote products derived from this software |
| 2567 | without specific prior written permission. |
| 2568 | |
| 2569 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2570 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2571 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2572 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2573 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2574 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2575 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2576 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2577 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2578 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2579 | SUCH DAMAGE. |
| 2580 | |
| 2581 | ------------------------------------------------------------------- |
| 2582 | |
| 2583 | Copyright (c) 1992, 1993 |
| 2584 | The Regents of the University of California. All rights reserved. |
| 2585 | |
| 2586 | This code is derived from software contributed to Berkeley by |
| 2587 | Ralph Campbell. |
| 2588 | |
| 2589 | Redistribution and use in source and binary forms, with or without |
| 2590 | modification, are permitted provided that the following conditions |
| 2591 | are met: |
| 2592 | 1. Redistributions of source code must retain the above copyright |
| 2593 | notice, this list of conditions and the following disclaimer. |
| 2594 | 2. Redistributions in binary form must reproduce the above copyright |
| 2595 | notice, this list of conditions and the following disclaimer in the |
| 2596 | documentation and/or other materials provided with the distribution. |
| 2597 | 3. Neither the name of the University nor the names of its contributors |
| 2598 | may be used to endorse or promote products derived from this software |
| 2599 | without specific prior written permission. |
| 2600 | |
| 2601 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2602 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2603 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2604 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2605 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2606 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2607 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2608 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2609 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2610 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2611 | SUCH DAMAGE. |
| 2612 | |
| 2613 | ------------------------------------------------------------------- |
| 2614 | |
| 2615 | Copyright (c) 1992, 1993 |
| 2616 | The Regents of the University of California. All rights reserved. |
| 2617 | |
| 2618 | This code is derived from software contributed to Berkeley by |
| 2619 | Ralph Campbell. This file is derived from the MIPS RISC |
| 2620 | Architecture book by Gerry Kane. |
| 2621 | |
| 2622 | Redistribution and use in source and binary forms, with or without |
| 2623 | modification, are permitted provided that the following conditions |
| 2624 | are met: |
| 2625 | 1. Redistributions of source code must retain the above copyright |
| 2626 | notice, this list of conditions and the following disclaimer. |
| 2627 | 2. Redistributions in binary form must reproduce the above copyright |
| 2628 | notice, this list of conditions and the following disclaimer in the |
| 2629 | documentation and/or other materials provided with the distribution. |
| 2630 | 3. Neither the name of the University nor the names of its contributors |
| 2631 | may be used to endorse or promote products derived from this software |
| 2632 | without specific prior written permission. |
| 2633 | |
| 2634 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2635 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2636 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2637 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2638 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2639 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2640 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2641 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2642 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2643 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2644 | SUCH DAMAGE. |
| 2645 | |
| 2646 | ------------------------------------------------------------------- |
| 2647 | |
| 2648 | Copyright (c) 1992, 1993 |
| 2649 | The Regents of the University of California. All rights reserved. |
| 2650 | |
| 2651 | This software was developed by the Computer Systems Engineering group |
| 2652 | at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and |
| 2653 | contributed to Berkeley. |
| 2654 | |
| 2655 | All advertising materials mentioning features or use of this software |
| 2656 | must display the following acknowledgement: |
| 2657 | This product includes software developed by the University of |
| 2658 | California, Lawrence Berkeley Laboratory. |
| 2659 | |
| 2660 | Redistribution and use in source and binary forms, with or without |
| 2661 | modification, are permitted provided that the following conditions |
| 2662 | are met: |
| 2663 | 1. Redistributions of source code must retain the above copyright |
| 2664 | notice, this list of conditions and the following disclaimer. |
| 2665 | 2. Redistributions in binary form must reproduce the above copyright |
| 2666 | notice, this list of conditions and the following disclaimer in the |
| 2667 | documentation and/or other materials provided with the distribution. |
| 2668 | 3. All advertising materials mentioning features or use of this software |
| 2669 | must display the following acknowledgement: |
| 2670 | This product includes software developed by the University of |
| 2671 | California, Berkeley and its contributors. |
| 2672 | 4. Neither the name of the University nor the names of its contributors |
| 2673 | may be used to endorse or promote products derived from this software |
| 2674 | without specific prior written permission. |
| 2675 | |
| 2676 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2677 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2678 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2679 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2680 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2681 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2682 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2683 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2684 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2685 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2686 | SUCH DAMAGE. |
| 2687 | |
| 2688 | ------------------------------------------------------------------- |
| 2689 | |
| 2690 | Copyright (c) 1992, 1993 |
| 2691 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2692 | (c) UNIX System Laboratories, Inc. |
| 2693 | All or some portions of this file are derived from material licensed |
| 2694 | to the University of California by American Telephone and Telegraph |
| 2695 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2696 | the permission of UNIX System Laboratories, Inc. |
| 2697 | |
| 2698 | Redistribution and use in source and binary forms, with or without |
| 2699 | modification, are permitted provided that the following conditions |
| 2700 | are met: |
| 2701 | 1. Redistributions of source code must retain the above copyright |
| 2702 | notice, this list of conditions and the following disclaimer. |
| 2703 | 2. Redistributions in binary form must reproduce the above copyright |
| 2704 | notice, this list of conditions and the following disclaimer in the |
| 2705 | documentation and/or other materials provided with the distribution. |
| 2706 | 3. Neither the name of the University nor the names of its contributors |
| 2707 | may be used to endorse or promote products derived from this software |
| 2708 | without specific prior written permission. |
| 2709 | |
| 2710 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2711 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2712 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2713 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2714 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2715 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2716 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2717 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2718 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2719 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2720 | SUCH DAMAGE. |
| 2721 | |
| 2722 | ------------------------------------------------------------------- |
| 2723 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2724 | Copyright (c) 1992, 1993, 1994 |
| 2725 | The Regents of the University of California. All rights reserved. |
| 2726 | |
| 2727 | This code is derived from software contributed to Berkeley by |
| 2728 | Henry Spencer. |
| 2729 | |
| 2730 | Redistribution and use in source and binary forms, with or without |
| 2731 | modification, are permitted provided that the following conditions |
| 2732 | are met: |
| 2733 | 1. Redistributions of source code must retain the above copyright |
| 2734 | notice, this list of conditions and the following disclaimer. |
| 2735 | 2. Redistributions in binary form must reproduce the above copyright |
| 2736 | notice, this list of conditions and the following disclaimer in the |
| 2737 | documentation and/or other materials provided with the distribution. |
| 2738 | 3. Neither the name of the University nor the names of its contributors |
| 2739 | may be used to endorse or promote products derived from this software |
| 2740 | without specific prior written permission. |
| 2741 | |
| 2742 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2743 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2744 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2745 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2746 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2747 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2748 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2749 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2750 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2751 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2752 | SUCH DAMAGE. |
| 2753 | |
| 2754 | ------------------------------------------------------------------- |
| 2755 | |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 2756 | Copyright (c) 1992, 1993, 1994 Henry Spencer. |
| 2757 | |
| 2758 | This code is derived from software contributed to Berkeley by |
| 2759 | Henry Spencer. |
| 2760 | |
| 2761 | Redistribution and use in source and binary forms, with or without |
| 2762 | modification, are permitted provided that the following conditions |
| 2763 | are met: |
| 2764 | 1. Redistributions of source code must retain the above copyright |
| 2765 | notice, this list of conditions and the following disclaimer. |
| 2766 | 2. Redistributions in binary form must reproduce the above copyright |
| 2767 | notice, this list of conditions and the following disclaimer in the |
| 2768 | documentation and/or other materials provided with the distribution. |
| 2769 | 3. All advertising materials mentioning features or use of this software |
| 2770 | must display the following acknowledgement: |
| 2771 | This product includes software developed by the University of |
| 2772 | California, Berkeley and its contributors. |
| 2773 | 4. 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 | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2791 | Copyright (c) 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2792 | The Regents of the University of California. All rights reserved. |
| 2793 | |
| 2794 | Redistribution and use in source and binary forms, with or without |
| 2795 | modification, are permitted provided that the following conditions |
| 2796 | are met: |
| 2797 | 1. Redistributions of source code must retain the above copyright |
| 2798 | notice, this list of conditions and the following disclaimer. |
| 2799 | 2. Redistributions in binary form must reproduce the above copyright |
| 2800 | notice, this list of conditions and the following disclaimer in the |
| 2801 | documentation and/or other materials provided with the distribution. |
| 2802 | 3. Neither the name of the University nor the names of its contributors |
| 2803 | may be used to endorse or promote products derived from this software |
| 2804 | without specific prior written permission. |
| 2805 | |
| 2806 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2807 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2808 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2809 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2810 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2811 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2812 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2813 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2814 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2815 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2816 | SUCH DAMAGE. |
| 2817 | |
| 2818 | ------------------------------------------------------------------- |
| 2819 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2820 | Copyright (c) 1993 Martin Birgmeier |
| 2821 | All rights reserved. |
| 2822 | |
| 2823 | You may redistribute unmodified or modified versions of this source |
| 2824 | code provided that the above copyright notice and this and the |
| 2825 | following conditions are retained. |
| 2826 | |
| 2827 | This software is provided ``as is'', and comes with no warranties |
| 2828 | of any kind. I shall in no event be liable for anything that happens |
| 2829 | to anyone/anything when using this software. |
| 2830 | |
| 2831 | ------------------------------------------------------------------- |
| 2832 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2833 | Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2834 | All rights reserved. |
| 2835 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2836 | Redistribution and use in source and binary forms, with or without |
| 2837 | modification, are permitted provided that the following conditions |
| 2838 | are met: |
| 2839 | 1. Redistributions of source code must retain the above copyright |
| 2840 | notice, this list of conditions and the following disclaimer. |
| 2841 | 2. Redistributions in binary form must reproduce the above copyright |
| 2842 | notice, this list of conditions and the following disclaimer in the |
| 2843 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2844 | 3. The name of the author may not be used to endorse or promote products |
| 2845 | derived from this software without specific prior written permission. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2846 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2847 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2848 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2849 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2850 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2851 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2852 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2853 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2854 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2855 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2856 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2857 | |
| 2858 | ------------------------------------------------------------------- |
| 2859 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2860 | Copyright (c) 1996 by Internet Software Consortium. |
| 2861 | |
| 2862 | Permission to use, copy, modify, and distribute this software for any |
| 2863 | purpose with or without fee is hereby granted, provided that the above |
| 2864 | copyright notice and this permission notice appear in all copies. |
| 2865 | |
| 2866 | THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS |
| 2867 | ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES |
| 2868 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE |
| 2869 | CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 2870 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 2871 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 2872 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 2873 | SOFTWARE. |
| 2874 | |
| 2875 | ------------------------------------------------------------------- |
| 2876 | |
| 2877 | Copyright (c) 1996, David Mazieres <dm@uun.org> |
| 2878 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 2879 | Copyright (c) 2013, Markus Friedl <markus@openbsd.org> |
| 2880 | |
| 2881 | Permission to use, copy, modify, and distribute this software for any |
| 2882 | purpose with or without fee is hereby granted, provided that the above |
| 2883 | copyright notice and this permission notice appear in all copies. |
| 2884 | |
| 2885 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2886 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2887 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2888 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2889 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2890 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2891 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2892 | |
| 2893 | ------------------------------------------------------------------- |
| 2894 | |
| 2895 | Copyright (c) 1996-1998, 2008 Theo de Raadt |
| 2896 | Copyright (c) 1997, 2008-2009 Todd C. Miller |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2897 | |
| 2898 | Permission to use, copy, modify, and distribute this software for any |
| 2899 | purpose with or without fee is hereby granted, provided that the above |
| 2900 | copyright notice and this permission notice appear in all copies. |
| 2901 | |
| 2902 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2903 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2904 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2905 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2906 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2907 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2908 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2909 | |
| 2910 | ------------------------------------------------------------------- |
| 2911 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2912 | Copyright (c) 1997 Mark Brinicombe |
Elliott Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 2913 | Copyright (C) 2010 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2914 | All rights reserved. |
| 2915 | |
| 2916 | Redistribution and use in source and binary forms, with or without |
| 2917 | modification, are permitted provided that the following conditions |
| 2918 | are met: |
| 2919 | 1. Redistributions of source code must retain the above copyright |
| 2920 | notice, this list of conditions and the following disclaimer. |
| 2921 | 2. Redistributions in binary form must reproduce the above copyright |
| 2922 | notice, this list of conditions and the following disclaimer in the |
| 2923 | documentation and/or other materials provided with the distribution. |
| 2924 | 3. All advertising materials mentioning features or use of this software |
| 2925 | must display the following acknowledgement: |
| 2926 | This product includes software developed by Mark Brinicombe |
| 2927 | 4. Neither the name of the University nor the names of its contributors |
| 2928 | may be used to endorse or promote products derived from this software |
| 2929 | without specific prior written permission. |
| 2930 | |
| 2931 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 2932 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2933 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2934 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 2935 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2936 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2937 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2938 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2939 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2940 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2941 | SUCH DAMAGE. |
| 2942 | |
| 2943 | ------------------------------------------------------------------- |
| 2944 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2945 | Copyright (c) 1997 Niklas Hallqvist. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2946 | |
| 2947 | Redistribution and use in source and binary forms, with or without |
| 2948 | modification, are permitted provided that the following conditions |
| 2949 | are met: |
| 2950 | 1. Redistributions of source code must retain the above copyright |
| 2951 | notice, this list of conditions and the following disclaimer. |
| 2952 | 2. Redistributions in binary form must reproduce the above copyright |
| 2953 | notice, this list of conditions and the following disclaimer in the |
| 2954 | documentation and/or other materials provided with the distribution. |
| 2955 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2956 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2957 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2958 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2959 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 2960 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 2961 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 2962 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 2963 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 2964 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 2965 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2966 | |
| 2967 | ------------------------------------------------------------------- |
| 2968 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2969 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2970 | |
| 2971 | Permission to use, copy, modify, and distribute this software for any |
| 2972 | purpose with or without fee is hereby granted, provided that the above |
| 2973 | copyright notice and this permission notice appear in all copies. |
| 2974 | |
| 2975 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2976 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2977 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2978 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2979 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2980 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2981 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2982 | |
| 2983 | ------------------------------------------------------------------- |
| 2984 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2985 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2986 | All rights reserved. |
| 2987 | |
| 2988 | Redistribution and use in source and binary forms, with or without |
| 2989 | modification, are permitted provided that the following conditions |
| 2990 | are met: |
| 2991 | 1. Redistributions of source code must retain the above copyright |
| 2992 | notice, this list of conditions and the following disclaimer. |
| 2993 | 2. Redistributions in binary form must reproduce the above copyright |
| 2994 | notice, this list of conditions and the following disclaimer in the |
| 2995 | documentation and/or other materials provided with the distribution. |
| 2996 | 3. The name of the author may not be used to endorse or promote products |
| 2997 | derived from this software without specific prior written permission. |
| 2998 | |
| 2999 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 3000 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 3001 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 3002 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 3003 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 3004 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 3005 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3006 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3007 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3008 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3009 | |
| 3010 | ------------------------------------------------------------------- |
| 3011 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3012 | Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3013 | All rights reserved. |
| 3014 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3015 | This code was contributed to The NetBSD Foundation by Klaus Klein. |
| 3016 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3017 | Redistribution and use in source and binary forms, with or without |
| 3018 | modification, are permitted provided that the following conditions |
| 3019 | are met: |
| 3020 | 1. Redistributions of source code must retain the above copyright |
| 3021 | notice, this list of conditions and the following disclaimer. |
| 3022 | 2. Redistributions in binary form must reproduce the above copyright |
| 3023 | notice, this list of conditions and the following disclaimer in the |
| 3024 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3025 | 3. All advertising materials mentioning features or use of this software |
| 3026 | must display the following acknowledgement: |
| 3027 | This product includes software developed by the NetBSD |
| 3028 | Foundation, Inc. and its contributors. |
| 3029 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3030 | contributors may be used to endorse or promote products derived |
| 3031 | from this software without specific prior written permission. |
| 3032 | |
| 3033 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3034 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3035 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3036 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3037 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3038 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3039 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3040 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3041 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3042 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3043 | POSSIBILITY OF SUCH DAMAGE. |
| 3044 | |
| 3045 | ------------------------------------------------------------------- |
| 3046 | |
| 3047 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 3048 | All rights reserved. |
| 3049 | |
| 3050 | This code is derived from software contributed to The NetBSD Foundation |
| 3051 | by Luke Mewburn. |
| 3052 | |
| 3053 | Redistribution and use in source and binary forms, with or without |
| 3054 | modification, are permitted provided that the following conditions |
| 3055 | are met: |
| 3056 | 1. Redistributions of source code must retain the above copyright |
| 3057 | notice, this list of conditions and the following disclaimer. |
| 3058 | 2. Redistributions in binary form must reproduce the above copyright |
| 3059 | notice, this list of conditions and the following disclaimer in the |
| 3060 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3061 | |
| 3062 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3063 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3064 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3065 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3066 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3067 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3068 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3069 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3070 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3071 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3072 | POSSIBILITY OF SUCH DAMAGE. |
| 3073 | |
| 3074 | ------------------------------------------------------------------- |
| 3075 | |
| 3076 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 3077 | All rights reserved. |
| 3078 | |
| 3079 | This code is derived from software contributed to The NetBSD Foundation |
| 3080 | by Luke Mewburn; and by Jason R. Thorpe. |
| 3081 | |
| 3082 | Redistribution and use in source and binary forms, with or without |
| 3083 | modification, are permitted provided that the following conditions |
| 3084 | are met: |
| 3085 | 1. Redistributions of source code must retain the above copyright |
| 3086 | notice, this list of conditions and the following disclaimer. |
| 3087 | 2. Redistributions in binary form must reproduce the above copyright |
| 3088 | notice, this list of conditions and the following disclaimer in the |
| 3089 | documentation and/or other materials provided with the distribution. |
| 3090 | 3. All advertising materials mentioning features or use of this software |
| 3091 | must display the following acknowledgement: |
| 3092 | This product includes software developed by the NetBSD |
| 3093 | Foundation, Inc. and its contributors. |
| 3094 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3095 | contributors may be used to endorse or promote products derived |
| 3096 | from this software without specific prior written permission. |
| 3097 | |
| 3098 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3099 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3100 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3101 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3102 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3103 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3104 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3105 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3106 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3107 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3108 | POSSIBILITY OF SUCH DAMAGE. |
| 3109 | |
| 3110 | ------------------------------------------------------------------- |
| 3111 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3112 | Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3113 | |
| 3114 | Permission to use, copy, modify, and distribute this software for any |
| 3115 | purpose with or without fee is hereby granted, provided that the above |
| 3116 | copyright notice and this permission notice appear in all copies. |
| 3117 | |
| 3118 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3119 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3120 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3121 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3122 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3123 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3124 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3125 | |
| 3126 | ------------------------------------------------------------------- |
| 3127 | |
| 3128 | Copyright (c) 1998 Softweyr LLC. All rights reserved. |
| 3129 | |
| 3130 | strtok_r, from Berkeley strtok |
| 3131 | Oct 13, 1998 by Wes Peters <wes@softweyr.com> |
| 3132 | |
| 3133 | Copyright (c) 1988, 1993 |
| 3134 | The Regents of the University of California. All rights reserved. |
| 3135 | |
| 3136 | Redistribution and use in source and binary forms, with or without |
| 3137 | modification, are permitted provided that the following conditions |
| 3138 | are met: |
| 3139 | 1. Redistributions of source code must retain the above copyright |
| 3140 | notices, this list of conditions and the following disclaimer. |
| 3141 | 2. Redistributions in binary form must reproduce the above copyright |
| 3142 | notices, this list of conditions and the following disclaimer in the |
| 3143 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 3144 | 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] | 3145 | may be used to endorse or promote products derived from this software |
| 3146 | without specific prior written permission. |
| 3147 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3148 | THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS |
| 3149 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3150 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 3151 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE |
| 3152 | REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 3153 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 3154 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 3155 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 3156 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 3157 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 3158 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3159 | |
| 3160 | ------------------------------------------------------------------- |
| 3161 | |
| 3162 | Copyright (c) 1998 The NetBSD Foundation, Inc. |
| 3163 | All rights reserved. |
| 3164 | |
| 3165 | This code is derived from software contributed to The NetBSD Foundation |
| 3166 | by Klaus Klein. |
| 3167 | |
| 3168 | Redistribution and use in source and binary forms, with or without |
| 3169 | modification, are permitted provided that the following conditions |
| 3170 | are met: |
| 3171 | 1. Redistributions of source code must retain the above copyright |
| 3172 | notice, this list of conditions and the following disclaimer. |
| 3173 | 2. Redistributions in binary form must reproduce the above copyright |
| 3174 | notice, this list of conditions and the following disclaimer in the |
| 3175 | documentation and/or other materials provided with the distribution. |
| 3176 | 3. All advertising materials mentioning features or use of this software |
| 3177 | must display the following acknowledgement: |
| 3178 | This product includes software developed by the NetBSD |
| 3179 | Foundation, Inc. and its contributors. |
| 3180 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3181 | contributors may be used to endorse or promote products derived |
| 3182 | from this software without specific prior written permission. |
| 3183 | |
| 3184 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3185 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3186 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3187 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3188 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3189 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3190 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3191 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3192 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3193 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3194 | POSSIBILITY OF SUCH DAMAGE. |
| 3195 | |
| 3196 | ------------------------------------------------------------------- |
| 3197 | |
| 3198 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3199 | All rights reserved. |
| 3200 | |
| 3201 | Redistribution and use in source and binary forms, with or without |
| 3202 | modification, are permitted provided that the following conditions |
| 3203 | are met: |
| 3204 | 1. Redistributions of source code must retain the above copyright |
| 3205 | notice, this list of conditions and the following disclaimer. |
| 3206 | 2. Redistributions in binary form must reproduce the above copyright |
| 3207 | notice, this list of conditions and the following disclaimer in the |
| 3208 | documentation and/or other materials provided with the distribution. |
| 3209 | 3. The name of the author may not be used to endorse or promote products |
| 3210 | derived from this software without specific prior written permission. |
| 3211 | |
| 3212 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 3213 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 3214 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 3215 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 3216 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 3217 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 3218 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3219 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3220 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3221 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3222 | |
| 3223 | ------------------------------------------------------------------- |
| 3224 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 3225 | Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3226 | |
| 3227 | Permission to use, copy, modify, and distribute this software for any |
| 3228 | purpose with or without fee is hereby granted, provided that the above |
| 3229 | copyright notice and this permission notice appear in all copies. |
| 3230 | |
| 3231 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3232 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3233 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3234 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3235 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3236 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3237 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3238 | |
| 3239 | ------------------------------------------------------------------- |
| 3240 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3241 | Copyright (c) 1999 |
| 3242 | David E. O'Brien |
| 3243 | Copyright (c) 1988, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3244 | The Regents of the University of California. All rights reserved. |
| 3245 | |
| 3246 | Redistribution and use in source and binary forms, with or without |
| 3247 | modification, are permitted provided that the following conditions |
| 3248 | are met: |
| 3249 | 1. Redistributions of source code must retain the above copyright |
| 3250 | notice, this list of conditions and the following disclaimer. |
| 3251 | 2. Redistributions in binary form must reproduce the above copyright |
| 3252 | notice, this list of conditions and the following disclaimer in the |
| 3253 | documentation and/or other materials provided with the distribution. |
| 3254 | 3. Neither the name of the University nor the names of its contributors |
| 3255 | may be used to endorse or promote products derived from this software |
| 3256 | without specific prior written permission. |
| 3257 | |
| 3258 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 3259 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3260 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3261 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 3262 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3263 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3264 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3265 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3266 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3267 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3268 | SUCH DAMAGE. |
| 3269 | |
| 3270 | ------------------------------------------------------------------- |
| 3271 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3272 | Copyright (c) 2000 Ben Harris. |
| 3273 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
| 3274 | All rights reserved. |
| 3275 | |
| 3276 | Redistribution and use in source and binary forms, with or without |
| 3277 | modification, are permitted provided that the following conditions |
| 3278 | are met: |
| 3279 | 1. Redistributions of source code must retain the above copyright |
| 3280 | notice, this list of conditions and the following disclaimer. |
| 3281 | 2. Redistributions in binary form must reproduce the above copyright |
| 3282 | notice, this list of conditions and the following disclaimer in the |
| 3283 | documentation and/or other materials provided with the distribution. |
| 3284 | 3. Neither the name of the project nor the names of its contributors |
| 3285 | may be used to endorse or promote products derived from this software |
| 3286 | without specific prior written permission. |
| 3287 | |
| 3288 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
| 3289 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3290 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3291 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
| 3292 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3293 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3294 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3295 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3296 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3297 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3298 | SUCH DAMAGE. |
| 3299 | |
| 3300 | ------------------------------------------------------------------- |
| 3301 | |
| 3302 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 3303 | All rights reserved. |
| 3304 | |
| 3305 | This code is derived from software contributed to The NetBSD Foundation |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3306 | by Dieter Baron and Thomas Klausner. |
| 3307 | |
| 3308 | Redistribution and use in source and binary forms, with or without |
| 3309 | modification, are permitted provided that the following conditions |
| 3310 | are met: |
| 3311 | 1. Redistributions of source code must retain the above copyright |
| 3312 | notice, this list of conditions and the following disclaimer. |
| 3313 | 2. Redistributions in binary form must reproduce the above copyright |
| 3314 | notice, this list of conditions and the following disclaimer in the |
| 3315 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3316 | |
| 3317 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3318 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3319 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3320 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3321 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3322 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3323 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3324 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3325 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3326 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3327 | POSSIBILITY OF SUCH DAMAGE. |
| 3328 | |
| 3329 | ------------------------------------------------------------------- |
| 3330 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3331 | Copyright (c) 2001 Wasabi Systems, Inc. |
| 3332 | All rights reserved. |
| 3333 | |
| 3334 | Written by Frank van der Linden for Wasabi Systems, Inc. |
| 3335 | |
| 3336 | Redistribution and use in source and binary forms, with or without |
| 3337 | modification, are permitted provided that the following conditions |
| 3338 | are met: |
| 3339 | 1. Redistributions of source code must retain the above copyright |
| 3340 | notice, this list of conditions and the following disclaimer. |
| 3341 | 2. Redistributions in binary form must reproduce the above copyright |
| 3342 | notice, this list of conditions and the following disclaimer in the |
| 3343 | documentation and/or other materials provided with the distribution. |
| 3344 | 3. All advertising materials mentioning features or use of this software |
| 3345 | must display the following acknowledgement: |
| 3346 | This product includes software developed for the NetBSD Project by |
| 3347 | Wasabi Systems, Inc. |
| 3348 | 4. The name of Wasabi Systems, Inc. may not be used to endorse |
| 3349 | or promote products derived from this software without specific prior |
| 3350 | written permission. |
| 3351 | |
| 3352 | THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND |
| 3353 | 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 WASABI SYSTEMS, INC |
| 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 | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3366 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3367 | |
| 3368 | Redistribution and use in source and binary forms, with or without |
| 3369 | modification, are permitted provided that the following conditions |
| 3370 | are met: |
| 3371 | 1. Redistributions of source code must retain the above copyright |
| 3372 | notice, this list of conditions and the following disclaimer. |
| 3373 | 2. Redistributions in binary form must reproduce the above copyright |
| 3374 | notice, this list of conditions and the following disclaimer in the |
| 3375 | documentation and/or other materials provided with the distribution. |
| 3376 | |
| 3377 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3378 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3379 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3380 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3381 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3382 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3383 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3384 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3385 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3386 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3387 | SUCH DAMAGE. |
| 3388 | |
| 3389 | ------------------------------------------------------------------- |
| 3390 | |
| 3391 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3392 | |
| 3393 | Redistribution and use in source and binary forms, with or without |
| 3394 | modification, are permitted provided that the following conditions |
| 3395 | are met: |
| 3396 | 1. Redistributions of source code must retain the above copyright |
| 3397 | notice, this list of conditions and the following disclaimer. |
| 3398 | 2. Redistributions in binary form must reproduce the above copyright |
| 3399 | notice, this list of conditions and the following disclaimer in the |
| 3400 | documentation and/or other materials provided with the distribution. |
| 3401 | 3. Neither the name of Opsycon AB nor the names of its contributors |
| 3402 | may be used to endorse or promote products derived from this software |
| 3403 | without specific prior written permission. |
| 3404 | |
| 3405 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3406 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3407 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3408 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3409 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3410 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3411 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3412 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3413 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3414 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3415 | SUCH DAMAGE. |
| 3416 | |
| 3417 | ------------------------------------------------------------------- |
| 3418 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3419 | Copyright (c) 2001-2011 The FreeBSD Project. |
| 3420 | All rights reserved. |
| 3421 | |
| 3422 | Redistribution and use in source and binary forms, with or without |
| 3423 | modification, are permitted provided that the following conditions |
| 3424 | are met: |
| 3425 | 1. Redistributions of source code must retain the above copyright |
| 3426 | notice, this list of conditions and the following disclaimer. |
| 3427 | 2. Redistributions in binary form must reproduce the above copyright |
| 3428 | notice, this list of conditions and the following disclaimer in the |
| 3429 | documentation and/or other materials provided with the distribution. |
| 3430 | |
| 3431 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3432 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3433 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3434 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3435 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3436 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3437 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3438 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3439 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3440 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3441 | SUCH DAMAGE. |
| 3442 | |
| 3443 | ------------------------------------------------------------------- |
| 3444 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3445 | Copyright (c) 2002 Daniel Hartmeier |
| 3446 | All rights reserved. |
| 3447 | |
| 3448 | Redistribution and use in source and binary forms, with or without |
| 3449 | modification, are permitted provided that the following conditions |
| 3450 | are met: |
| 3451 | |
| 3452 | - Redistributions of source code must retain the above copyright |
| 3453 | notice, this list of conditions and the following disclaimer. |
| 3454 | - Redistributions in binary form must reproduce the above |
| 3455 | copyright notice, this list of conditions and the following |
| 3456 | disclaimer in the documentation and/or other materials provided |
| 3457 | with the distribution. |
| 3458 | |
| 3459 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 3460 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3461 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 3462 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 3463 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3464 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 3465 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 3466 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 3467 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3468 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 3469 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3470 | POSSIBILITY OF SUCH DAMAGE. |
| 3471 | |
| 3472 | ------------------------------------------------------------------- |
| 3473 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3474 | Copyright (c) 2002 The NetBSD Foundation, Inc. |
| 3475 | All rights reserved. |
| 3476 | |
| 3477 | This code is derived from software contributed to The NetBSD Foundation |
| 3478 | by Christos Zoulas. |
| 3479 | |
| 3480 | Redistribution and use in source and binary forms, with or without |
| 3481 | modification, are permitted provided that the following conditions |
| 3482 | are met: |
| 3483 | 1. Redistributions of source code must retain the above copyright |
| 3484 | notice, this list of conditions and the following disclaimer. |
| 3485 | 2. Redistributions in binary form must reproduce the above copyright |
| 3486 | notice, this list of conditions and the following disclaimer in the |
| 3487 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3488 | |
| 3489 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3490 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3491 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3492 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3493 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3494 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3495 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3496 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3497 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3498 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3499 | POSSIBILITY OF SUCH DAMAGE. |
| 3500 | |
| 3501 | ------------------------------------------------------------------- |
| 3502 | |
| 3503 | Copyright (c) 2002 Tim J. Robbins |
| 3504 | All rights reserved. |
| 3505 | |
| 3506 | Redistribution and use in source and binary forms, with or without |
| 3507 | modification, are permitted provided that the following conditions |
| 3508 | are met: |
| 3509 | 1. Redistributions of source code must retain the above copyright |
| 3510 | notice, this list of conditions and the following disclaimer. |
| 3511 | 2. Redistributions in binary form must reproduce the above copyright |
| 3512 | notice, this list of conditions and the following disclaimer in the |
| 3513 | documentation and/or other materials provided with the distribution. |
| 3514 | |
| 3515 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3516 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3517 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3518 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3519 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3520 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3521 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3522 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3523 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3524 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3525 | SUCH DAMAGE. |
| 3526 | |
| 3527 | ------------------------------------------------------------------- |
| 3528 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3529 | Copyright (c) 2002 Tim J. Robbins. |
| 3530 | All rights reserved. |
| 3531 | |
| 3532 | Redistribution and use in source and binary forms, with or without |
| 3533 | modification, are permitted provided that the following conditions |
| 3534 | are met: |
| 3535 | 1. Redistributions of source code must retain the above copyright |
| 3536 | notice, this list of conditions and the following disclaimer. |
| 3537 | 2. Redistributions in binary form must reproduce the above copyright |
| 3538 | notice, this list of conditions and the following disclaimer in the |
| 3539 | documentation and/or other materials provided with the distribution. |
| 3540 | |
| 3541 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3542 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3543 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3544 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3545 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3546 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3547 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3548 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3549 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3550 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3551 | SUCH DAMAGE. |
| 3552 | |
| 3553 | ------------------------------------------------------------------- |
| 3554 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3555 | Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3556 | |
| 3557 | Permission to use, copy, modify, and distribute this software for any |
| 3558 | purpose with or without fee is hereby granted, provided that the above |
| 3559 | copyright notice and this permission notice appear in all copies. |
| 3560 | |
| 3561 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3562 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3563 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3564 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3565 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3566 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3567 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3568 | |
| 3569 | Sponsored in part by the Defense Advanced Research Projects |
| 3570 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3571 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3572 | |
| 3573 | ------------------------------------------------------------------- |
| 3574 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3575 | Copyright (c) 2002, 2003 Tim J. Robbins. |
| 3576 | All rights reserved. |
| 3577 | |
| 3578 | Redistribution and use in source and binary forms, with or without |
| 3579 | modification, are permitted provided that the following conditions |
| 3580 | are met: |
| 3581 | 1. Redistributions of source code must retain the above copyright |
| 3582 | notice, this list of conditions and the following disclaimer. |
| 3583 | 2. Redistributions in binary form must reproduce the above copyright |
| 3584 | notice, this list of conditions and the following disclaimer in the |
| 3585 | documentation and/or other materials provided with the distribution. |
| 3586 | |
| 3587 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3588 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3589 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3590 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3591 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3592 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3593 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3594 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3595 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3596 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3597 | SUCH DAMAGE. |
| 3598 | |
| 3599 | ------------------------------------------------------------------- |
| 3600 | |
| 3601 | Copyright (c) 2002-2004 Tim J. Robbins |
| 3602 | All rights reserved. |
| 3603 | |
| 3604 | Redistribution and use in source and binary forms, with or without |
| 3605 | modification, are permitted provided that the following conditions |
| 3606 | are met: |
| 3607 | 1. Redistributions of source code must retain the above copyright |
| 3608 | notice, this list of conditions and the following disclaimer. |
| 3609 | 2. Redistributions in binary form must reproduce the above copyright |
| 3610 | notice, this list of conditions and the following disclaimer in the |
| 3611 | documentation and/or other materials provided with the distribution. |
| 3612 | |
| 3613 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3614 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3615 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3616 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3617 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3618 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3619 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3620 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3621 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3622 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3623 | SUCH DAMAGE. |
| 3624 | |
| 3625 | ------------------------------------------------------------------- |
| 3626 | |
| 3627 | Copyright (c) 2002-2004 Tim J. Robbins. |
| 3628 | All rights reserved. |
| 3629 | |
| 3630 | Redistribution and use in source and binary forms, with or without |
| 3631 | modification, are permitted provided that the following conditions |
| 3632 | are met: |
| 3633 | 1. Redistributions of source code must retain the above copyright |
| 3634 | notice, this list of conditions and the following disclaimer. |
| 3635 | 2. Redistributions in binary form must reproduce the above copyright |
| 3636 | notice, this list of conditions and the following disclaimer in the |
| 3637 | documentation and/or other materials provided with the distribution. |
| 3638 | |
| 3639 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3640 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3641 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3642 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3643 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3644 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3645 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3646 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3647 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3648 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3649 | SUCH DAMAGE. |
| 3650 | |
| 3651 | ------------------------------------------------------------------- |
| 3652 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3653 | Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
| 3654 | |
| 3655 | Redistribution and use in source and binary forms, with or without |
| 3656 | modification, are permitted provided that the following conditions |
| 3657 | are met: |
| 3658 | 1. Redistributions of source code must retain the above copyright |
| 3659 | notice, this list of conditions and the following disclaimer. |
| 3660 | 2. Redistributions in binary form must reproduce the above copyright |
| 3661 | notice, this list of conditions and the following disclaimer in the |
| 3662 | documentation and/or other materials provided with the distribution. |
| 3663 | 3. The names of the authors may not be used to endorse or promote |
| 3664 | products derived from this software without specific prior written |
| 3665 | permission. |
| 3666 | |
| 3667 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3668 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3669 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3670 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3671 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3672 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3673 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3674 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3675 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3676 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3677 | SUCH DAMAGE. |
| 3678 | |
| 3679 | ------------------------------------------------------------------- |
| 3680 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3681 | Copyright (c) 2003 Dag-Erling Smørgrav |
| 3682 | All rights reserved. |
| 3683 | |
| 3684 | Redistribution and use in source and binary forms, with or without |
| 3685 | modification, are permitted provided that the following conditions |
| 3686 | are met: |
| 3687 | 1. Redistributions of source code must retain the above copyright |
| 3688 | notice, this list of conditions and the following disclaimer |
| 3689 | in this position and unchanged. |
| 3690 | 2. Redistributions in binary form must reproduce the above copyright |
| 3691 | notice, this list of conditions and the following disclaimer in the |
| 3692 | documentation and/or other materials provided with the distribution. |
| 3693 | 3. The name of the author may not be used to endorse or promote products |
| 3694 | derived from this software without specific prior written permission. |
| 3695 | |
| 3696 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3697 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3698 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3699 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3700 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3701 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3702 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3703 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3704 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3705 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3706 | |
| 3707 | ------------------------------------------------------------------- |
| 3708 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3709 | Copyright (c) 2003 David Schultz <das@FreeBSD.ORG> |
| 3710 | All rights reserved. |
| 3711 | |
| 3712 | Redistribution and use in source and binary forms, with or without |
| 3713 | modification, are permitted provided that the following conditions |
| 3714 | are met: |
| 3715 | 1. Redistributions of source code must retain the above copyright |
| 3716 | notice, this list of conditions and the following disclaimer. |
| 3717 | 2. Redistributions in binary form must reproduce the above copyright |
| 3718 | notice, this list of conditions and the following disclaimer in the |
| 3719 | documentation and/or other materials provided with the distribution. |
| 3720 | |
| 3721 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3722 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3723 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3724 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3725 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3726 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3727 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3728 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3729 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3730 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3731 | SUCH DAMAGE. |
| 3732 | |
| 3733 | ------------------------------------------------------------------- |
| 3734 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3735 | Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> |
| 3736 | All rights reserved. |
| 3737 | |
| 3738 | Redistribution and use in source and binary forms, with or without |
| 3739 | modification, are permitted provided that the following conditions |
| 3740 | are met: |
| 3741 | 1. Redistributions of source code must retain the above copyright |
| 3742 | notice, this list of conditions and the following disclaimer. |
| 3743 | 2. Redistributions in binary form must reproduce the above copyright |
| 3744 | notice, this list of conditions and the following disclaimer in the |
| 3745 | documentation and/or other materials provided with the distribution. |
| 3746 | |
| 3747 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3748 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3749 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3750 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3751 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3752 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3753 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3754 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3755 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3756 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3757 | SUCH DAMAGE. |
| 3758 | |
| 3759 | ------------------------------------------------------------------- |
| 3760 | |
| 3761 | Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> |
| 3762 | Copyright (c) 2002 David Schultz <das@FreeBSD.ORG> |
| 3763 | All rights reserved. |
| 3764 | |
| 3765 | Redistribution and use in source and binary forms, with or without |
| 3766 | modification, are permitted provided that the following conditions |
| 3767 | are met: |
| 3768 | 1. Redistributions of source code must retain the above copyright |
| 3769 | notice, this list of conditions and the following disclaimer. |
| 3770 | 2. Redistributions in binary form must reproduce the above copyright |
| 3771 | notice, this list of conditions and the following disclaimer in the |
| 3772 | documentation and/or other materials provided with the distribution. |
| 3773 | |
| 3774 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3775 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3776 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3777 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3778 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3779 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3780 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3781 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3782 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3783 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3784 | SUCH DAMAGE. |
| 3785 | |
| 3786 | ------------------------------------------------------------------- |
| 3787 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3788 | Copyright (c) 2003 Networks Associates Technology, Inc. |
| 3789 | All rights reserved. |
| 3790 | |
| 3791 | Portions of this software were developed for the FreeBSD Project by |
| 3792 | Jacques A. Vidrine, Safeport Network Services, and Network |
| 3793 | Associates Laboratories, the Security Research Division of Network |
| 3794 | Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 |
| 3795 | ("CBOSS"), as part of the DARPA CHATS research program. |
| 3796 | |
| 3797 | Redistribution and use in source and binary forms, with or without |
| 3798 | modification, are permitted provided that the following conditions |
| 3799 | are met: |
| 3800 | 1. Redistributions of source code must retain the above copyright |
| 3801 | notice, this list of conditions and the following disclaimer. |
| 3802 | 2. Redistributions in binary form must reproduce the above copyright |
| 3803 | notice, this list of conditions and the following disclaimer in the |
| 3804 | documentation and/or other materials provided with the distribution. |
| 3805 | |
| 3806 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3807 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3808 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3809 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3810 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3811 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3812 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3813 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3814 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3815 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3816 | SUCH DAMAGE. |
| 3817 | |
| 3818 | ------------------------------------------------------------------- |
| 3819 | |
Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 3820 | Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3821 | |
| 3822 | Permission to use, copy, modify, and distribute this software for any |
| 3823 | purpose with or without fee is hereby granted, provided that the above |
| 3824 | copyright notice and this permission notice appear in all copies. |
| 3825 | |
| 3826 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3827 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3828 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3829 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3830 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3831 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3832 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3833 | |
| 3834 | Sponsored in part by the Defense Advanced Research Projects |
| 3835 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3836 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3837 | |
| 3838 | ------------------------------------------------------------------- |
| 3839 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3840 | Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3841 | |
| 3842 | Permission to use, copy, modify, and distribute this software for any |
| 3843 | purpose with or without fee is hereby granted, provided that the above |
| 3844 | copyright notice and this permission notice appear in all copies. |
| 3845 | |
| 3846 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3847 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3848 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3849 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3850 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3851 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3852 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3853 | |
| 3854 | Sponsored in part by the Defense Advanced Research Projects |
| 3855 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3856 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3857 | |
| 3858 | ------------------------------------------------------------------- |
| 3859 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3860 | Copyright (c) 2003, Steven G. Kargl |
| 3861 | All rights reserved. |
| 3862 | |
| 3863 | Redistribution and use in source and binary forms, with or without |
| 3864 | modification, are permitted provided that the following conditions |
| 3865 | are met: |
| 3866 | 1. Redistributions of source code must retain the above copyright |
| 3867 | notice unmodified, this list of conditions, and the following |
| 3868 | disclaimer. |
| 3869 | 2. Redistributions in binary form must reproduce the above copyright |
| 3870 | notice, this list of conditions and the following disclaimer in the |
| 3871 | documentation and/or other materials provided with the distribution. |
| 3872 | |
| 3873 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3874 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3875 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3876 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3877 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3878 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3879 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3880 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3881 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3882 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3883 | |
| 3884 | ------------------------------------------------------------------- |
| 3885 | |
| 3886 | Copyright (c) 2004 David Schultz <das@FreeBSD.ORG> |
| 3887 | All rights reserved. |
| 3888 | |
| 3889 | Redistribution and use in source and binary forms, with or without |
| 3890 | modification, are permitted provided that the following conditions |
| 3891 | are met: |
| 3892 | 1. Redistributions of source code must retain the above copyright |
| 3893 | notice, this list of conditions and the following disclaimer. |
| 3894 | 2. Redistributions in binary form must reproduce the above copyright |
| 3895 | notice, this list of conditions and the following disclaimer in the |
| 3896 | documentation and/or other materials provided with the distribution. |
| 3897 | |
| 3898 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3899 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3900 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3901 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3902 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3903 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3904 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3905 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3906 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3907 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3908 | SUCH DAMAGE. |
| 3909 | |
| 3910 | ------------------------------------------------------------------- |
| 3911 | |
| 3912 | Copyright (c) 2004 Stefan Farfeleder |
| 3913 | All rights reserved. |
| 3914 | |
| 3915 | Redistribution and use in source and binary forms, with or without |
| 3916 | modification, are permitted provided that the following conditions |
| 3917 | are met: |
| 3918 | 1. Redistributions of source code must retain the above copyright |
| 3919 | notice, this list of conditions and the following disclaimer. |
| 3920 | 2. Redistributions in binary form must reproduce the above copyright |
| 3921 | notice, this list of conditions and the following disclaimer in the |
| 3922 | documentation and/or other materials provided with the distribution. |
| 3923 | |
| 3924 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3925 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3926 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3927 | ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3928 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3929 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3930 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3931 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3932 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3933 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3934 | SUCH DAMAGE. |
| 3935 | |
| 3936 | ------------------------------------------------------------------- |
| 3937 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3938 | Copyright (c) 2004 The NetBSD Foundation, Inc. |
| 3939 | All rights reserved. |
| 3940 | |
| 3941 | This code is derived from software contributed to The NetBSD Foundation |
| 3942 | by Christos Zoulas. |
| 3943 | |
| 3944 | Redistribution and use in source and binary forms, with or without |
| 3945 | modification, are permitted provided that the following conditions |
| 3946 | are met: |
| 3947 | 1. Redistributions of source code must retain the above copyright |
| 3948 | notice, this list of conditions and the following disclaimer. |
| 3949 | 2. Redistributions in binary form must reproduce the above copyright |
| 3950 | notice, this list of conditions and the following disclaimer in the |
| 3951 | documentation and/or other materials provided with the distribution. |
| 3952 | 3. All advertising materials mentioning features or use of this software |
| 3953 | must display the following acknowledgement: |
| 3954 | This product includes software developed by the NetBSD |
| 3955 | Foundation, Inc. and its contributors. |
| 3956 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3957 | contributors may be used to endorse or promote products derived |
| 3958 | from this software without specific prior written permission. |
| 3959 | |
| 3960 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3961 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3962 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3963 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3964 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3965 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3966 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3967 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3968 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3969 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3970 | POSSIBILITY OF SUCH DAMAGE. |
| 3971 | |
| 3972 | ------------------------------------------------------------------- |
| 3973 | |
| 3974 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3975 | Copyright (c) 1995,1999 by Internet Software Consortium. |
| 3976 | |
| 3977 | Permission to use, copy, modify, and distribute this software for any |
| 3978 | purpose with or without fee is hereby granted, provided that the above |
| 3979 | copyright notice and this permission notice appear in all copies. |
| 3980 | |
| 3981 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3982 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3983 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3984 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3985 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3986 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3987 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3988 | |
| 3989 | ------------------------------------------------------------------- |
| 3990 | |
| 3991 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3992 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 3993 | |
| 3994 | Permission to use, copy, modify, and distribute this software for any |
| 3995 | purpose with or without fee is hereby granted, provided that the above |
| 3996 | copyright notice and this permission notice appear in all copies. |
| 3997 | |
| 3998 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3999 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4000 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4001 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4002 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4003 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4004 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4005 | |
| 4006 | ------------------------------------------------------------------- |
| 4007 | |
| 4008 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4009 | Copyright (c) 1995-1999 by Internet Software Consortium. |
| 4010 | |
| 4011 | Permission to use, copy, modify, and distribute this software for any |
| 4012 | purpose with or without fee is hereby granted, provided that the above |
| 4013 | copyright notice and this permission notice appear in all copies. |
| 4014 | |
| 4015 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4016 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4017 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4018 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4019 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4020 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4021 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4022 | |
| 4023 | ------------------------------------------------------------------- |
| 4024 | |
| 4025 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4026 | Copyright (c) 1996,1999 by Internet Software Consortium. |
| 4027 | |
| 4028 | Permission to use, copy, modify, and distribute this software for any |
| 4029 | purpose with or without fee is hereby granted, provided that the above |
| 4030 | copyright notice and this permission notice appear in all copies. |
| 4031 | |
| 4032 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4033 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4034 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4035 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4036 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4037 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4038 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4039 | |
| 4040 | ------------------------------------------------------------------- |
| 4041 | |
| 4042 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4043 | Copyright (c) 1996-1999 by Internet Software Consortium |
| 4044 | |
| 4045 | Permission to use, copy, modify, and distribute this software for any |
| 4046 | purpose with or without fee is hereby granted, provided that the above |
| 4047 | copyright notice and this permission notice appear in all copies. |
| 4048 | |
| 4049 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4050 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4051 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4052 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4053 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4054 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4055 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4056 | |
| 4057 | ------------------------------------------------------------------- |
| 4058 | |
| 4059 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4060 | Copyright (c) 1996-1999 by Internet Software Consortium. |
| 4061 | |
| 4062 | Permission to use, copy, modify, and distribute this software for any |
| 4063 | purpose with or without fee is hereby granted, provided that the above |
| 4064 | copyright notice and this permission notice appear in all copies. |
| 4065 | |
| 4066 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4067 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4068 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4069 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4070 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4071 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4072 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4073 | |
| 4074 | ------------------------------------------------------------------- |
| 4075 | |
| 4076 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4077 | Copyright (c) 1997,1999 by Internet Software Consortium. |
| 4078 | |
| 4079 | Permission to use, copy, modify, and distribute this software for any |
| 4080 | purpose with or without fee is hereby granted, provided that the above |
| 4081 | copyright notice and this permission notice appear in all copies. |
| 4082 | |
| 4083 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4084 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4085 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4086 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4087 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4088 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4089 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4090 | |
| 4091 | ------------------------------------------------------------------- |
| 4092 | |
| 4093 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4094 | Copyright (c) 1999 by Internet Software Consortium. |
| 4095 | |
| 4096 | Permission to use, copy, modify, and distribute this software for any |
| 4097 | purpose with or without fee is hereby granted, provided that the above |
| 4098 | copyright notice and this permission notice appear in all copies. |
| 4099 | |
| 4100 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4101 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4102 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4103 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4104 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4105 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4106 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4107 | |
| 4108 | ------------------------------------------------------------------- |
| 4109 | |
| 4110 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4111 | Portions Copyright (c) 1996-1999 by Internet Software Consortium. |
| 4112 | |
| 4113 | Permission to use, copy, modify, and distribute this software for any |
| 4114 | purpose with or without fee is hereby granted, provided that the above |
| 4115 | copyright notice and this permission notice appear in all copies. |
| 4116 | |
| 4117 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4118 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4119 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4120 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4121 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4122 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4123 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4124 | |
| 4125 | ------------------------------------------------------------------- |
| 4126 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4127 | Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> |
| 4128 | All rights reserved. |
| 4129 | |
| 4130 | Redistribution and use in source and binary forms, with or without |
| 4131 | modification, are permitted provided that the following conditions |
| 4132 | are met: |
| 4133 | 1. Redistributions of source code must retain the above copyright |
| 4134 | notice, this list of conditions and the following disclaimer. |
| 4135 | 2. Redistributions in binary form must reproduce the above copyright |
| 4136 | notice, this list of conditions and the following disclaimer in the |
| 4137 | documentation and/or other materials provided with the distribution. |
| 4138 | |
| 4139 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4140 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4141 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4142 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4143 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4144 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4145 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4146 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4147 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4148 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4149 | SUCH DAMAGE. |
| 4150 | |
| 4151 | ------------------------------------------------------------------- |
| 4152 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4153 | Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG> |
| 4154 | All rights reserved. |
| 4155 | |
| 4156 | Redistribution and use in source and binary forms, with or without |
| 4157 | modification, are permitted provided that the following conditions |
| 4158 | are met: |
| 4159 | 1. Redistributions of source code must retain the above copyright |
| 4160 | notice, this list of conditions and the following disclaimer. |
| 4161 | 2. Redistributions in binary form must reproduce the above copyright |
| 4162 | notice, this list of conditions and the following disclaimer in the |
| 4163 | documentation and/or other materials provided with the distribution. |
| 4164 | |
| 4165 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4166 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4167 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4168 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4169 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4170 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4171 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4172 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4173 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4174 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4175 | SUCH DAMAGE. |
| 4176 | |
| 4177 | ------------------------------------------------------------------- |
| 4178 | |
| 4179 | Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG> |
| 4180 | All rights reserved. |
| 4181 | |
| 4182 | Redistribution and use in source and binary forms, with or without |
| 4183 | modification, are permitted provided that the following conditions |
| 4184 | are met: |
| 4185 | 1. Redistributions of source code must retain the above copyright |
| 4186 | notice, this list of conditions and the following disclaimer. |
| 4187 | 2. Redistributions in binary form must reproduce the above copyright |
| 4188 | notice, this list of conditions and the following disclaimer in the |
| 4189 | documentation and/or other materials provided with the distribution. |
| 4190 | |
| 4191 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4192 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4193 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4194 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4195 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4196 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4197 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4198 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4199 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4200 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4201 | SUCH DAMAGE. |
| 4202 | |
| 4203 | ------------------------------------------------------------------- |
| 4204 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4205 | Copyright (c) 2005 Bruce D. Evans and Steven G. Kargl |
| 4206 | All rights reserved. |
| 4207 | |
| 4208 | Redistribution and use in source and binary forms, with or without |
| 4209 | modification, are permitted provided that the following conditions |
| 4210 | are met: |
| 4211 | 1. Redistributions of source code must retain the above copyright |
| 4212 | notice unmodified, this list of conditions, and the following |
| 4213 | disclaimer. |
| 4214 | 2. Redistributions in binary form must reproduce the above copyright |
| 4215 | notice, this list of conditions and the following disclaimer in the |
| 4216 | documentation and/or other materials provided with the distribution. |
| 4217 | |
| 4218 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4219 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4220 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4221 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4222 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4223 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4224 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4225 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4226 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4227 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4228 | |
| 4229 | ------------------------------------------------------------------- |
| 4230 | |
| 4231 | Copyright (c) 2005 David Schultz <das@FreeBSD.ORG> |
| 4232 | All rights reserved. |
| 4233 | |
| 4234 | Redistribution and use in source and binary forms, with or without |
| 4235 | modification, are permitted provided that the following conditions |
| 4236 | are met: |
| 4237 | 1. Redistributions of source code must retain the above copyright |
| 4238 | notice, this list of conditions and the following disclaimer. |
| 4239 | 2. Redistributions in binary form must reproduce the above copyright |
| 4240 | notice, this list of conditions and the following disclaimer in the |
| 4241 | documentation and/or other materials provided with the distribution. |
| 4242 | |
| 4243 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4244 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4245 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4246 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4247 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4248 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4249 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4250 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4251 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4252 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4253 | SUCH DAMAGE. |
| 4254 | |
| 4255 | ------------------------------------------------------------------- |
| 4256 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4257 | Copyright (c) 2005 Tim J. Robbins. |
| 4258 | All rights reserved. |
| 4259 | |
| 4260 | Redistribution and use in source and binary forms, with or without |
| 4261 | modification, are permitted provided that the following conditions |
| 4262 | are met: |
| 4263 | 1. Redistributions of source code must retain the above copyright |
| 4264 | notice, this list of conditions and the following disclaimer. |
| 4265 | 2. Redistributions in binary form must reproduce the above copyright |
| 4266 | notice, this list of conditions and the following disclaimer in the |
| 4267 | documentation and/or other materials provided with the distribution. |
| 4268 | |
| 4269 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4270 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4271 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4272 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4273 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4274 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4275 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4276 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4277 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4278 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4279 | SUCH DAMAGE. |
| 4280 | |
| 4281 | ------------------------------------------------------------------- |
| 4282 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 4283 | Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC") |
| 4284 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 4285 | |
| 4286 | Permission to use, copy, modify, and distribute this software for any |
| 4287 | purpose with or without fee is hereby granted, provided that the above |
| 4288 | copyright notice and this permission notice appear in all copies. |
| 4289 | |
| 4290 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4291 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4292 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4293 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4294 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4295 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4296 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4297 | |
| 4298 | ------------------------------------------------------------------- |
| 4299 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4300 | Copyright (c) 2005-2008 David Schultz <das@FreeBSD.ORG> |
| 4301 | All rights reserved. |
| 4302 | |
| 4303 | Redistribution and use in source and binary forms, with or without |
| 4304 | modification, are permitted provided that the following conditions |
| 4305 | are met: |
| 4306 | 1. Redistributions of source code must retain the above copyright |
| 4307 | notice, this list of conditions and the following disclaimer. |
| 4308 | 2. Redistributions in binary form must reproduce the above copyright |
| 4309 | notice, this list of conditions and the following disclaimer in the |
| 4310 | documentation and/or other materials provided with the distribution. |
| 4311 | |
| 4312 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4313 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4314 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4315 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4316 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4317 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4318 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4319 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4320 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4321 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4322 | SUCH DAMAGE. |
| 4323 | |
| 4324 | ------------------------------------------------------------------- |
| 4325 | |
| 4326 | Copyright (c) 2005-2011 David Schultz <das@FreeBSD.ORG> |
| 4327 | All rights reserved. |
| 4328 | |
| 4329 | Redistribution and use in source and binary forms, with or without |
| 4330 | modification, are permitted provided that the following conditions |
| 4331 | are met: |
| 4332 | 1. Redistributions of source code must retain the above copyright |
| 4333 | notice, this list of conditions and the following disclaimer. |
| 4334 | 2. Redistributions in binary form must reproduce the above copyright |
| 4335 | notice, this list of conditions and the following disclaimer in the |
| 4336 | documentation and/or other materials provided with the distribution. |
| 4337 | |
| 4338 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4339 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4340 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4341 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4342 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4343 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4344 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4345 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4346 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4347 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4348 | SUCH DAMAGE. |
| 4349 | |
| 4350 | ------------------------------------------------------------------- |
| 4351 | |
| 4352 | Copyright (c) 2007 David Schultz |
| 4353 | All rights reserved. |
| 4354 | |
| 4355 | Redistribution and use in source and binary forms, with or without |
| 4356 | modification, are permitted provided that the following conditions |
| 4357 | are met: |
| 4358 | 1. Redistributions of source code must retain the above copyright |
| 4359 | notice, this list of conditions and the following disclaimer. |
| 4360 | 2. Redistributions in binary form must reproduce the above copyright |
| 4361 | notice, this list of conditions and the following disclaimer in the |
| 4362 | documentation and/or other materials provided with the distribution. |
| 4363 | |
| 4364 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4365 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4366 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4367 | ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4368 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4369 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4370 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4371 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4372 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4373 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4374 | SUCH DAMAGE. |
| 4375 | |
| 4376 | ------------------------------------------------------------------- |
| 4377 | |
| 4378 | Copyright (c) 2007 David Schultz <das@FreeBSD.ORG> |
| 4379 | All rights reserved. |
| 4380 | |
| 4381 | Redistribution and use in source and binary forms, with or without |
| 4382 | modification, are permitted provided that the following conditions |
| 4383 | are met: |
| 4384 | 1. Redistributions of source code must retain the above copyright |
| 4385 | notice, this list of conditions and the following disclaimer. |
| 4386 | 2. Redistributions in binary form must reproduce the above copyright |
| 4387 | notice, this list of conditions and the following disclaimer in the |
| 4388 | documentation and/or other materials provided with the distribution. |
| 4389 | |
| 4390 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4391 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4392 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4393 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4394 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4395 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4396 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4397 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4398 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4399 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4400 | SUCH DAMAGE. |
| 4401 | |
| 4402 | ------------------------------------------------------------------- |
| 4403 | |
| 4404 | Copyright (c) 2007 David Schultz <das@FreeBSD.ORG> |
| 4405 | All rights reserved. |
| 4406 | |
| 4407 | Redistribution and use in source and binary forms, with or without |
| 4408 | modification, are permitted provided that the following conditions |
| 4409 | are met: |
| 4410 | 1. Redistributions of source code must retain the above copyright |
| 4411 | notice, this list of conditions and the following disclaimer. |
| 4412 | 2. Redistributions in binary form must reproduce the above copyright |
| 4413 | notice, this list of conditions and the following disclaimer in the |
| 4414 | documentation and/or other materials provided with the distribution. |
| 4415 | |
| 4416 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4417 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4418 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4419 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4420 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4421 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4422 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4423 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4424 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4425 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4426 | SUCH DAMAGE. |
| 4427 | |
| 4428 | Derived from s_modf.c, which has the following Copyright: |
| 4429 | ==================================================== |
| 4430 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 4431 | |
| 4432 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 4433 | Permission to use, copy, modify, and distribute this |
| 4434 | software is freely granted, provided that this notice |
| 4435 | is preserved. |
| 4436 | |
| 4437 | ------------------------------------------------------------------- |
| 4438 | |
| 4439 | Copyright (c) 2007 Steven G. Kargl |
| 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 unmodified, this list of conditions, and the following |
| 4447 | disclaimer. |
| 4448 | 2. Redistributions in binary form must reproduce the above copyright |
| 4449 | notice, this list of conditions and the following disclaimer in the |
| 4450 | documentation and/or other materials provided with the distribution. |
| 4451 | |
| 4452 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4453 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4454 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4455 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4456 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4457 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4458 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4459 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4460 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4461 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4462 | |
| 4463 | ------------------------------------------------------------------- |
| 4464 | |
| 4465 | Copyright (c) 2007 The NetBSD Foundation, Inc. |
| 4466 | All rights reserved. |
| 4467 | |
| 4468 | This code is derived from software written by Stephen L. Moshier. |
| 4469 | It is redistributed by the NetBSD Foundation by permission of the author. |
| 4470 | |
| 4471 | Redistribution and use in source and binary forms, with or without |
| 4472 | modification, are permitted provided that the following conditions |
| 4473 | are met: |
| 4474 | 1. Redistributions of source code must retain the above copyright |
| 4475 | notice, this list of conditions and the following disclaimer. |
| 4476 | 2. Redistributions in binary form must reproduce the above copyright |
| 4477 | notice, this list of conditions and the following disclaimer in the |
| 4478 | documentation and/or other materials provided with the distribution. |
| 4479 | |
| 4480 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4481 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4482 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4483 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4484 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4485 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4486 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4487 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4488 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4489 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4490 | POSSIBILITY OF SUCH DAMAGE. |
| 4491 | |
| 4492 | ------------------------------------------------------------------- |
| 4493 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 4494 | Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4495 | |
| 4496 | Permission to use, copy, modify, and distribute this software for any |
| 4497 | purpose with or without fee is hereby granted, provided that the above |
| 4498 | copyright notice and this permission notice appear in all copies. |
| 4499 | |
| 4500 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4501 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4502 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4503 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4504 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4505 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4506 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4507 | |
| 4508 | ------------------------------------------------------------------- |
| 4509 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4510 | Copyright (c) 2007-2008 Michael G Schwern |
| 4511 | |
| 4512 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
| 4513 | |
| 4514 | The MIT License: |
| 4515 | |
| 4516 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4517 | of this software and associated documentation files (the "Software"), to deal |
| 4518 | in the Software without restriction, including without limitation the rights |
| 4519 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4520 | copies of the Software, and to permit persons to whom the Software is |
| 4521 | furnished to do so, subject to the following conditions: |
| 4522 | |
| 4523 | The above copyright notice and this permission notice shall be included in |
| 4524 | all copies or substantial portions of the Software. |
| 4525 | |
| 4526 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4527 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4528 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4529 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4530 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4531 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4532 | THE SOFTWARE. |
| 4533 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4534 | ------------------------------------------------------------------- |
| 4535 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4536 | Copyright (c) 2007-2008 Michael G Schwern |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4537 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4538 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4539 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4540 | The MIT License: |
| 4541 | |
| 4542 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4543 | of this software and associated documentation files (the "Software"), to deal |
| 4544 | in the Software without restriction, including without limitation the rights |
| 4545 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4546 | copies of the Software, and to permit persons to whom the Software is |
| 4547 | furnished to do so, subject to the following conditions: |
| 4548 | |
| 4549 | The above copyright notice and this permission notice shall be included in |
| 4550 | all copies or substantial portions of the Software. |
| 4551 | |
| 4552 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4553 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4554 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4555 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4556 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4557 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4558 | THE SOFTWARE. |
| 4559 | |
| 4560 | Origin: http://code.google.com/p/y2038 |
| 4561 | Modified for Bionic by the Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4562 | |
| 4563 | ------------------------------------------------------------------- |
| 4564 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4565 | Copyright (c) 2007-2008 David Schultz <das@FreeBSD.ORG> |
| 4566 | All rights reserved. |
| 4567 | |
| 4568 | Redistribution and use in source and binary forms, with or without |
| 4569 | modification, are permitted provided that the following conditions |
| 4570 | are met: |
| 4571 | 1. Redistributions of source code must retain the above copyright |
| 4572 | notice, this list of conditions and the following disclaimer. |
| 4573 | 2. Redistributions in binary form must reproduce the above copyright |
| 4574 | notice, this list of conditions and the following disclaimer in the |
| 4575 | documentation and/or other materials provided with the distribution. |
| 4576 | |
| 4577 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4578 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4579 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4580 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4581 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4582 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4583 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4584 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4585 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4586 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4587 | SUCH DAMAGE. |
| 4588 | |
| 4589 | ------------------------------------------------------------------- |
| 4590 | |
| 4591 | Copyright (c) 2007-2013 Bruce D. Evans |
| 4592 | All rights reserved. |
| 4593 | |
| 4594 | Redistribution and use in source and binary forms, with or without |
| 4595 | modification, are permitted provided that the following conditions |
| 4596 | are met: |
| 4597 | 1. Redistributions of source code must retain the above copyright |
| 4598 | notice unmodified, this list of conditions, and the following |
| 4599 | disclaimer. |
| 4600 | 2. Redistributions in binary form must reproduce the above copyright |
| 4601 | notice, this list of conditions and the following disclaimer in the |
| 4602 | documentation and/or other materials provided with the distribution. |
| 4603 | |
| 4604 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4605 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4606 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4607 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4608 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4609 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4610 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4611 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4612 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4613 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4614 | |
| 4615 | ------------------------------------------------------------------- |
| 4616 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4617 | Copyright (c) 2008 David Schultz <das@FreeBSD.ORG> |
| 4618 | All rights reserved. |
| 4619 | |
| 4620 | Redistribution and use in source and binary forms, with or without |
| 4621 | modification, are permitted provided that the following conditions |
| 4622 | are met: |
| 4623 | 1. Redistributions of source code must retain the above copyright |
| 4624 | notice, this list of conditions and the following disclaimer. |
| 4625 | 2. Redistributions in binary form must reproduce the above copyright |
| 4626 | notice, this list of conditions and the following disclaimer in the |
| 4627 | documentation and/or other materials provided with the distribution. |
| 4628 | |
| 4629 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4630 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4631 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4632 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4633 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4634 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4635 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4636 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4637 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4638 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4639 | SUCH DAMAGE. |
| 4640 | |
| 4641 | ------------------------------------------------------------------- |
| 4642 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4643 | Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> |
| 4644 | |
| 4645 | Permission to use, copy, modify, and distribute this software for any |
| 4646 | purpose with or without fee is hereby granted, provided that the above |
| 4647 | copyright notice and this permission notice appear in all copies. |
| 4648 | |
| 4649 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4650 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4651 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4652 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4653 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4654 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4655 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4656 | |
| 4657 | ------------------------------------------------------------------- |
| 4658 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4659 | Copyright (c) 2008 Todd C. Miller <millert@openbsd.org> |
| 4660 | |
| 4661 | Permission to use, copy, modify, and distribute this software for any |
| 4662 | purpose with or without fee is hereby granted, provided that the above |
| 4663 | copyright notice and this permission notice appear in all copies. |
| 4664 | |
| 4665 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4666 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4667 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4668 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4669 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4670 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4671 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4672 | |
| 4673 | ------------------------------------------------------------------- |
| 4674 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4675 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
| 4676 | |
| 4677 | Permission to use, copy, modify, and distribute this software for any |
| 4678 | purpose with or without fee is hereby granted, provided that the above |
| 4679 | copyright notice and this permission notice appear in all copies. |
| 4680 | |
| 4681 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4682 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4683 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4684 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4685 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4686 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4687 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4688 | |
| 4689 | ------------------------------------------------------------------- |
| 4690 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4691 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4692 | All rights reserved. |
| 4693 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4694 | Copyright (c) 2011 The FreeBSD Foundation |
| 4695 | All rights reserved. |
| 4696 | Portions of this software were developed by David Chisnall |
| 4697 | under sponsorship from the FreeBSD Foundation. |
| 4698 | |
| 4699 | Redistribution and use in source and binary forms, with or without |
| 4700 | modification, are permitted provided that the following conditions |
| 4701 | are met: |
| 4702 | 1. Redistributions of source code must retain the above copyright |
| 4703 | notice, this list of conditions and the following disclaimer. |
| 4704 | 2. Redistributions in binary form must reproduce the above copyright |
| 4705 | notice, this list of conditions and the following disclaimer in the |
| 4706 | documentation and/or other materials provided with the distribution. |
| 4707 | |
| 4708 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4709 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4710 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4711 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4712 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4713 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4714 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4715 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4716 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4717 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4718 | SUCH DAMAGE. |
| 4719 | |
| 4720 | ------------------------------------------------------------------- |
| 4721 | |
| 4722 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4723 | All rights reserved. |
| 4724 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4725 | Redistribution and use in source and binary forms, with or without |
| 4726 | modification, are permitted provided that the following conditions |
| 4727 | are met: |
| 4728 | 1. Redistributions of source code must retain the above copyright |
| 4729 | notice, this list of conditions and the following disclaimer. |
| 4730 | 2. Redistributions in binary form must reproduce the above copyright |
| 4731 | notice, this list of conditions and the following disclaimer in the |
| 4732 | documentation and/or other materials provided with the distribution. |
| 4733 | |
| 4734 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4735 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4736 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4737 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4738 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4739 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4740 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4741 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4742 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4743 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4744 | SUCH DAMAGE. |
| 4745 | |
| 4746 | ------------------------------------------------------------------- |
| 4747 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 4748 | Copyright (c) 2009 The NetBSD Foundation, Inc. |
| 4749 | |
| 4750 | This code is derived from software contributed to The NetBSD Foundation |
| 4751 | by Roy Marples. |
| 4752 | |
| 4753 | Redistribution and use in source and binary forms, with or without |
| 4754 | modification, are permitted provided that the following conditions |
| 4755 | are met: |
| 4756 | 1. Redistributions of source code must retain the above copyright |
| 4757 | notice, this list of conditions and the following disclaimer. |
| 4758 | 2. Redistributions in binary form must reproduce the above copyright |
| 4759 | notice, this list of conditions and the following disclaimer in the |
| 4760 | documentation and/or other materials provided with the distribution. |
| 4761 | |
| 4762 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4763 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4764 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4765 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4766 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4767 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4768 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4769 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4770 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4771 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4772 | |
| 4773 | ------------------------------------------------------------------- |
| 4774 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4775 | Copyright (c) 2009-2013 Steven G. Kargl |
| 4776 | All rights reserved. |
| 4777 | |
| 4778 | Redistribution and use in source and binary forms, with or without |
| 4779 | modification, are permitted provided that the following conditions |
| 4780 | are met: |
| 4781 | 1. Redistributions of source code must retain the above copyright |
| 4782 | notice unmodified, this list of conditions, and the following |
| 4783 | disclaimer. |
| 4784 | 2. Redistributions in binary form must reproduce the above copyright |
| 4785 | notice, this list of conditions and the following disclaimer in the |
| 4786 | documentation and/or other materials provided with the distribution. |
| 4787 | |
| 4788 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4789 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4790 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4791 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4792 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4793 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4794 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4795 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4796 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4797 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4798 | |
| 4799 | Optimized by Bruce D. Evans. |
| 4800 | |
| 4801 | ------------------------------------------------------------------- |
| 4802 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4803 | Copyright (c) 2010 MIPS Technologies, Inc. |
| 4804 | |
| 4805 | All rights reserved. |
| 4806 | |
| 4807 | Redistribution and use in source and binary forms, with or without |
| 4808 | modification, are permitted provided that the following conditions |
| 4809 | are met: |
| 4810 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4811 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4812 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4813 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4814 | notice, this list of conditions and the following disclaimer |
| 4815 | in the documentation and/or other materials provided with |
| 4816 | the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4817 | * Neither the name of MIPS Technologies Inc. nor the names of its |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4818 | contributors may be used to endorse or promote products derived |
| 4819 | from this software without specific prior written permission. |
| 4820 | |
| 4821 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4822 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4823 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4824 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4825 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4826 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4827 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4828 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4829 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4830 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4831 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4832 | |
| 4833 | ------------------------------------------------------------------- |
| 4834 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4835 | Copyright (c) 2010 The NetBSD Foundation, Inc. |
| 4836 | All rights reserved. |
| 4837 | |
| 4838 | Redistribution and use in source and binary forms, with or without |
| 4839 | modification, are permitted provided that the following conditions |
| 4840 | are met: |
| 4841 | 1. Redistributions of source code must retain the above copyright |
| 4842 | notice, this list of conditions and the following disclaimer. |
| 4843 | 2. Redistributions in binary form must reproduce the above copyright |
| 4844 | notice, this list of conditions and the following disclaimer in the |
| 4845 | documentation and/or other materials provided with the distribution. |
| 4846 | |
| 4847 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4848 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4849 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4850 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4851 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4852 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4853 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4854 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4855 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4856 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4857 | POSSIBILITY OF SUCH DAMAGE. |
| 4858 | |
| 4859 | ------------------------------------------------------------------- |
| 4860 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4861 | Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4862 | |
| 4863 | Permission to use, copy, modify, and distribute this software for any |
| 4864 | purpose with or without fee is hereby granted, provided that the above |
| 4865 | copyright notice and this permission notice appear in all copies. |
| 4866 | |
| 4867 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4868 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4869 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4870 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4871 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4872 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4873 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4874 | |
| 4875 | ------------------------------------------------------------------- |
| 4876 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4877 | Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4878 | All rights reserved. |
| 4879 | |
| 4880 | Redistribution and use in source and binary forms, with or without |
| 4881 | modification, are permitted provided that the following conditions are met: |
| 4882 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4883 | * Redistributions of source code must retain the above copyright notice, |
| 4884 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4885 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4886 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4887 | * this list of conditions and the following disclaimer in the documentation |
| 4888 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4889 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4890 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4891 | * may be used to endorse or promote products derived from this software |
| 4892 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4893 | |
| 4894 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4895 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4896 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4897 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4898 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4899 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4900 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4901 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4902 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4903 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4904 | |
| 4905 | ------------------------------------------------------------------- |
| 4906 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4907 | Copyright (c) 2010, Intel Corporation |
| 4908 | All rights reserved. |
| 4909 | |
| 4910 | Redistribution and use in source and binary forms, with or without |
| 4911 | modification, are permitted provided that the following conditions are met: |
| 4912 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4913 | * Redistributions of source code must retain the above copyright notice, |
| 4914 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4915 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4916 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4917 | * this list of conditions and the following disclaimer in the documentation |
| 4918 | * and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4919 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4920 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4921 | * may be used to endorse or promote products derived from this software |
| 4922 | * without specific prior written permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4923 | |
| 4924 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4925 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4926 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4927 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4928 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4929 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4930 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4931 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4932 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4933 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4934 | |
| 4935 | ------------------------------------------------------------------- |
| 4936 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4937 | Copyright (c) 2011 David Chisnall |
| 4938 | All rights reserved. |
| 4939 | |
| 4940 | Redistribution and use in source and binary forms, with or without |
| 4941 | modification, are permitted provided that the following conditions |
| 4942 | are met: |
| 4943 | 1. Redistributions of source code must retain the above copyright |
| 4944 | notice, this list of conditions and the following disclaimer. |
| 4945 | 2. Redistributions in binary form must reproduce the above copyright |
| 4946 | notice, this list of conditions and the following disclaimer in the |
| 4947 | documentation and/or other materials provided with the distribution. |
| 4948 | |
| 4949 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4950 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4951 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4952 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4953 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4954 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4955 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4956 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4957 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4958 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4959 | SUCH DAMAGE. |
| 4960 | |
| 4961 | ------------------------------------------------------------------- |
| 4962 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4963 | Copyright (c) 2011 David Schultz |
| 4964 | All rights reserved. |
| 4965 | |
| 4966 | Redistribution and use in source and binary forms, with or without |
| 4967 | modification, are permitted provided that the following conditions |
| 4968 | are met: |
| 4969 | 1. Redistributions of source code must retain the above copyright |
| 4970 | notice unmodified, this list of conditions, and the following |
| 4971 | disclaimer. |
| 4972 | 2. Redistributions in binary form must reproduce the above copyright |
| 4973 | notice, this list of conditions and the following disclaimer in the |
| 4974 | documentation and/or other materials provided with the distribution. |
| 4975 | |
| 4976 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4977 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4978 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4979 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4980 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4981 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4982 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4983 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4984 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4985 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4986 | |
| 4987 | ------------------------------------------------------------------- |
| 4988 | |
| 4989 | Copyright (c) 2011 David Schultz <das@FreeBSD.ORG> |
| 4990 | All rights reserved. |
| 4991 | |
| 4992 | Redistribution and use in source and binary forms, with or without |
| 4993 | modification, are permitted provided that the following conditions |
| 4994 | are met: |
| 4995 | 1. Redistributions of source code must retain the above copyright |
| 4996 | notice, this list of conditions and the following disclaimer. |
| 4997 | 2. Redistributions in binary form must reproduce the above copyright |
| 4998 | notice, this list of conditions and the following disclaimer in the |
| 4999 | documentation and/or other materials provided with the distribution. |
| 5000 | |
| 5001 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5002 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5003 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5004 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5005 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5006 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5007 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5008 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5009 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5010 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5011 | SUCH DAMAGE. |
| 5012 | |
| 5013 | ------------------------------------------------------------------- |
| 5014 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5015 | Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org> |
| 5016 | David Chisnall <theraven@FreeBSD.org> |
| 5017 | All rights reserved. |
| 5018 | |
| 5019 | Redistribution and use in source and binary forms, with or without |
| 5020 | modification, are permitted provided that the following conditions |
| 5021 | are met: |
| 5022 | 1. Redistributions of source code must retain the above copyright |
| 5023 | notice, this list of conditions and the following disclaimer. |
| 5024 | 2. Redistributions in binary form must reproduce the above copyright |
| 5025 | notice, this list of conditions and the following disclaimer in the |
| 5026 | documentation and/or other materials provided with the distribution. |
| 5027 | |
| 5028 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5029 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5030 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5031 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5032 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5033 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5034 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5035 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5036 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5037 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5038 | SUCH DAMAGE. |
| 5039 | |
| 5040 | ------------------------------------------------------------------- |
| 5041 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5042 | Copyright (c) 2011 Intel Corporation |
| 5043 | All rights reserved. |
| 5044 | |
| 5045 | Redistribution and use in source and binary forms, with or without |
| 5046 | modification, are permitted provided that the following conditions are met: |
| 5047 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5048 | * Redistributions of source code must retain the above copyright notice, |
| 5049 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5050 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5051 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5052 | * this list of conditions and the following disclaimer in the documentation |
| 5053 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5054 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5055 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5056 | * may be used to endorse or promote products derived from this software |
| 5057 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5058 | |
| 5059 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5060 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5061 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5062 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5063 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5064 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5065 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5066 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5067 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5068 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5069 | |
| 5070 | ------------------------------------------------------------------- |
| 5071 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 5072 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 5073 | |
| 5074 | Permission to use, copy, modify, and distribute this software for any |
| 5075 | purpose with or without fee is hereby granted, provided that the above |
| 5076 | copyright notice and this permission notice appear in all copies. |
| 5077 | |
| 5078 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5079 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5080 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5081 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5082 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5083 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5084 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5085 | |
| 5086 | ------------------------------------------------------------------- |
| 5087 | |
| 5088 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 5089 | Copyright (c) 2009 Ted Unangst |
| 5090 | |
| 5091 | Permission to use, copy, modify, and distribute this software for any |
| 5092 | purpose with or without fee is hereby granted, provided that the above |
| 5093 | copyright notice and this permission notice appear in all copies. |
| 5094 | |
| 5095 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5096 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5097 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5098 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5099 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5100 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5101 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5102 | |
| 5103 | ------------------------------------------------------------------- |
| 5104 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5105 | Copyright (c) 2011 The Android Open Source Project |
| 5106 | Copyright (c) 2008 ARM Ltd |
| 5107 | All rights reserved. |
| 5108 | |
| 5109 | Redistribution and use in source and binary forms, with or without |
| 5110 | modification, are permitted provided that the following conditions |
| 5111 | are met: |
| 5112 | 1. Redistributions of source code must retain the above copyright |
| 5113 | notice, this list of conditions and the following disclaimer. |
| 5114 | 2. Redistributions in binary form must reproduce the above copyright |
| 5115 | notice, this list of conditions and the following disclaimer in the |
| 5116 | documentation and/or other materials provided with the distribution. |
| 5117 | 3. The name of the company may not be used to endorse or promote |
| 5118 | products derived from this software without specific prior written |
| 5119 | permission. |
| 5120 | |
| 5121 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5122 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5123 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5124 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5125 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5126 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5127 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5128 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5129 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5130 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5131 | |
| 5132 | ------------------------------------------------------------------- |
| 5133 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5134 | Copyright (c) 2011, 2012, 2013 Intel Corporation |
| 5135 | All rights reserved. |
| 5136 | |
| 5137 | Redistribution and use in source and binary forms, with or without |
| 5138 | modification, are permitted provided that the following conditions are met: |
| 5139 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5140 | * Redistributions of source code must retain the above copyright notice, |
| 5141 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5142 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5143 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5144 | * this list of conditions and the following disclaimer in the documentation |
| 5145 | * and/or other materials provided with the distribution. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5146 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5147 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5148 | * may be used to endorse or promote products derived from this software |
| 5149 | * without specific prior written permission. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5150 | |
| 5151 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5152 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5153 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5154 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5155 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5156 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5157 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5158 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5159 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5160 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5161 | |
| 5162 | ------------------------------------------------------------------- |
| 5163 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5164 | Copyright (c) 2011, Intel Corporation |
| 5165 | All rights reserved. |
| 5166 | |
| 5167 | Redistribution and use in source and binary forms, with or without |
| 5168 | modification, are permitted provided that the following conditions are met: |
| 5169 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5170 | * Redistributions of source code must retain the above copyright notice, |
| 5171 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5172 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5173 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5174 | * this list of conditions and the following disclaimer in the documentation |
| 5175 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5176 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5177 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5178 | * may be used to endorse or promote products derived from this software |
| 5179 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5180 | |
| 5181 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5182 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5183 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5184 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5185 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5186 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5187 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5188 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5189 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5190 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5191 | |
| 5192 | ------------------------------------------------------------------- |
| 5193 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5194 | Copyright (c) 2011, VMware, Inc. |
| 5195 | All rights reserved. |
| 5196 | |
| 5197 | Redistribution and use in source and binary forms, with or without |
| 5198 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5199 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5200 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5201 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5202 | notice, this list of conditions and the following disclaimer in the |
| 5203 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5204 | * 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] | 5205 | may be used to endorse or promote products derived from this software |
| 5206 | without specific prior written permission. |
| 5207 | |
| 5208 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 5209 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5210 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5211 | ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR |
| 5212 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5213 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5214 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 5215 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5216 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5217 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5218 | |
| 5219 | ------------------------------------------------------------------- |
| 5220 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5221 | Copyright (c) 2012 Stephen Montgomery-Smith <stephen@FreeBSD.ORG> |
| 5222 | All rights reserved. |
| 5223 | |
| 5224 | Redistribution and use in source and binary forms, with or without |
| 5225 | modification, are permitted provided that the following conditions |
| 5226 | are met: |
| 5227 | 1. Redistributions of source code must retain the above copyright |
| 5228 | notice, this list of conditions and the following disclaimer. |
| 5229 | 2. Redistributions in binary form must reproduce the above copyright |
| 5230 | notice, this list of conditions and the following disclaimer in the |
| 5231 | documentation and/or other materials provided with the distribution. |
| 5232 | |
| 5233 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5234 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5235 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5236 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5237 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5238 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5239 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5240 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5241 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5242 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5243 | SUCH DAMAGE. |
| 5244 | |
| 5245 | ------------------------------------------------------------------- |
| 5246 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5247 | Copyright (c) 2012, Linaro Limited |
| 5248 | All rights reserved. |
| 5249 | |
| 5250 | Redistribution and use in source and binary forms, with or without |
| 5251 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5252 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5253 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5254 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5255 | notice, this list of conditions and the following disclaimer in the |
| 5256 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5257 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5258 | names of its contributors may be used to endorse or promote products |
| 5259 | derived from this software without specific prior written permission. |
| 5260 | |
| 5261 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5262 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5263 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5264 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5265 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5266 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5267 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5268 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5269 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5270 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5271 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5272 | |
| 5273 | ------------------------------------------------------------------- |
| 5274 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5275 | Copyright (c) 2012, Linaro Limited |
| 5276 | All rights reserved. |
| 5277 | Copyright (c) 2014, NVIDIA Corporation. All rights reserved. |
| 5278 | |
| 5279 | Redistribution and use in source and binary forms, with or without |
| 5280 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5281 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5282 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5283 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5284 | notice, this list of conditions and the following disclaimer in the |
| 5285 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5286 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5287 | names of its contributors may be used to endorse or promote products |
| 5288 | derived from this software without specific prior written permission. |
| 5289 | |
| 5290 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5291 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5292 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5293 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5294 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5295 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5296 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5297 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5298 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5299 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5300 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5301 | |
| 5302 | ------------------------------------------------------------------- |
| 5303 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5304 | Copyright (c) 2012-2013, Linaro Limited |
| 5305 | All rights reserved. |
| 5306 | |
| 5307 | Redistribution and use in source and binary forms, with or without |
| 5308 | modification, are permitted provided that the following conditions are met: |
| 5309 | * Redistributions of source code must retain the above copyright |
| 5310 | notice, this list of conditions and the following disclaimer. |
| 5311 | * Redistributions in binary form must reproduce the above copyright |
| 5312 | notice, this list of conditions and the following disclaimer in the |
| 5313 | documentation and/or other materials provided with the distribution. |
| 5314 | * Neither the name of the Linaro nor the |
| 5315 | names of its contributors may be used to endorse or promote products |
| 5316 | derived from this software without specific prior written permission. |
| 5317 | |
| 5318 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5319 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5320 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5321 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5322 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5323 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5324 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5325 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5326 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5327 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5328 | |
| 5329 | ------------------------------------------------------------------- |
| 5330 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 5331 | Copyright (c) 2012-2015 |
| 5332 | MIPS Technologies, Inc., California. |
| 5333 | |
| 5334 | Redistribution and use in source and binary forms, with or without |
| 5335 | modification, are permitted provided that the following conditions |
| 5336 | are met: |
| 5337 | 1. Redistributions of source code must retain the above copyright |
| 5338 | notice, this list of conditions and the following disclaimer. |
| 5339 | 2. Redistributions in binary form must reproduce the above copyright |
| 5340 | notice, this list of conditions and the following disclaimer in the |
| 5341 | documentation and/or other materials provided with the distribution. |
| 5342 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 5343 | contributors may be used to endorse or promote products derived from |
| 5344 | this software without specific prior written permission. |
| 5345 | |
| 5346 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 5347 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5348 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5349 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 5350 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5351 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5352 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5353 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5354 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5355 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5356 | SUCH DAMAGE. |
| 5357 | |
| 5358 | ------------------------------------------------------------------- |
| 5359 | |
| 5360 | Copyright (c) 2013 |
| 5361 | MIPS Technologies, Inc., California. |
| 5362 | |
| 5363 | Redistribution and use in source and binary forms, with or without |
| 5364 | modification, are permitted provided that the following conditions |
| 5365 | are met: |
| 5366 | 1. Redistributions of source code must retain the above copyright |
| 5367 | notice, this list of conditions and the following disclaimer. |
| 5368 | 2. Redistributions in binary form must reproduce the above copyright |
| 5369 | notice, this list of conditions and the following disclaimer in the |
| 5370 | documentation and/or other materials provided with the distribution. |
| 5371 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 5372 | contributors may be used to endorse or promote products derived from |
| 5373 | this software without specific prior written permission. |
| 5374 | |
| 5375 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 5376 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5377 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5378 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 5379 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5380 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5381 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5382 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5383 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5384 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5385 | SUCH DAMAGE. |
| 5386 | |
| 5387 | ------------------------------------------------------------------- |
| 5388 | |
Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 5389 | Copyright (c) 2013 ARM Ltd |
| 5390 | All rights reserved. |
| 5391 | |
| 5392 | Redistribution and use in source and binary forms, with or without |
| 5393 | modification, are permitted provided that the following conditions |
| 5394 | are met: |
| 5395 | 1. Redistributions of source code must retain the above copyright |
| 5396 | notice, this list of conditions and the following disclaimer. |
| 5397 | 2. Redistributions in binary form must reproduce the above copyright |
| 5398 | notice, this list of conditions and the following disclaimer in the |
| 5399 | documentation and/or other materials provided with the distribution. |
| 5400 | 3. The name of the company may not be used to endorse or promote |
| 5401 | products derived from this software without specific prior written |
| 5402 | permission. |
| 5403 | |
| 5404 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5405 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5406 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5407 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5408 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5409 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5410 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5411 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5412 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5413 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5414 | |
| 5415 | ------------------------------------------------------------------- |
| 5416 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5417 | Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org> |
| 5418 | |
| 5419 | Permission to use, copy, modify, and distribute this software for any |
| 5420 | purpose with or without fee is hereby granted, provided that the above |
| 5421 | copyright notice and this permission notice appear in all copies. |
| 5422 | |
| 5423 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5424 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5425 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5426 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5427 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5428 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5429 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5430 | |
| 5431 | ------------------------------------------------------------------- |
| 5432 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5433 | Copyright (c) 2013 David Chisnall |
| 5434 | All rights reserved. |
| 5435 | |
| 5436 | Redistribution and use in source and binary forms, with or without |
| 5437 | modification, are permitted provided that the following conditions |
| 5438 | are met: |
| 5439 | 1. Redistributions of source code must retain the above copyright |
| 5440 | notice, this list of conditions and the following disclaimer. |
| 5441 | 2. Redistributions in binary form must reproduce the above copyright |
| 5442 | notice, this list of conditions and the following disclaimer in the |
| 5443 | documentation and/or other materials provided with the distribution. |
| 5444 | |
| 5445 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5446 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5447 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5448 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5449 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5450 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5451 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5452 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5453 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5454 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5455 | SUCH DAMAGE. |
| 5456 | |
| 5457 | ------------------------------------------------------------------- |
| 5458 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5459 | Copyright (c) 2013 The NetBSD Foundation, Inc. |
| 5460 | All rights reserved. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5461 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5462 | This code is derived from software contributed to The NetBSD Foundation |
| 5463 | by Christos Zoulas. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5464 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5465 | Redistribution and use in source and binary forms, with or without |
| 5466 | modification, are permitted provided that the following conditions |
| 5467 | are met: |
| 5468 | 1. Redistributions of source code must retain the above copyright |
| 5469 | notice, this list of conditions and the following disclaimer. |
| 5470 | 2. Redistributions in binary form must reproduce the above copyright |
| 5471 | notice, this list of conditions and the following disclaimer in the |
| 5472 | documentation and/or other materials provided with the distribution. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5473 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5474 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 5475 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 5476 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 5477 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 5478 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 5479 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 5480 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 5481 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 5482 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 5483 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 5484 | POSSIBILITY OF SUCH DAMAGE. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5485 | |
| 5486 | ------------------------------------------------------------------- |
| 5487 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5488 | Copyright (c) 2013, Linaro Limited |
| 5489 | All rights reserved. |
| 5490 | |
| 5491 | Redistribution and use in source and binary forms, with or without |
| 5492 | modification, are permitted provided that the following conditions are met: |
| 5493 | * Redistributions of source code must retain the above copyright |
| 5494 | notice, this list of conditions and the following disclaimer. |
| 5495 | * Redistributions in binary form must reproduce the above copyright |
| 5496 | notice, this list of conditions and the following disclaimer in the |
| 5497 | documentation and/or other materials provided with the distribution. |
| 5498 | * Neither the name of the Linaro nor the |
| 5499 | names of its contributors may be used to endorse or promote products |
| 5500 | derived from this software without specific prior written permission. |
| 5501 | |
| 5502 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5503 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5504 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5505 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5506 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5507 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5508 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5509 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5510 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5511 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5512 | |
| 5513 | ------------------------------------------------------------------- |
| 5514 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5515 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 5516 | Johnny Qiu <joqiu@nvidia.com> |
| 5517 | Shu Zhang <chazhang@nvidia.com> |
| 5518 | |
| 5519 | Redistribution and use in source and binary forms, with or without |
| 5520 | modification, are permitted provided that the following conditions are |
| 5521 | met: |
| 5522 | * Redistributions of source code must retain the above copyright |
| 5523 | notice, this list of conditions and the following disclaimer. |
| 5524 | * Redistributions in binary form must reproduce the above |
| 5525 | copyright notice, this list of conditions and the following |
| 5526 | disclaimer in the documentation and/or other materials provided |
| 5527 | with the distribution. |
| 5528 | * Neither the name of The Linux Foundation nor the names of its |
| 5529 | contributors may be used to endorse or promote products derived |
| 5530 | from this software without specific prior written permission. |
| 5531 | |
| 5532 | THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 5533 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5534 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| 5535 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| 5536 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 5537 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 5538 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 5539 | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 5540 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 5541 | OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 5542 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5543 | |
| 5544 | ------------------------------------------------------------------- |
| 5545 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5546 | Copyright (c) 2013-2015, Linaro Limited |
| 5547 | All rights reserved. |
| 5548 | |
| 5549 | Redistribution and use in source and binary forms, with or without |
| 5550 | modification, are permitted provided that the following conditions are met: |
| 5551 | * Redistributions of source code must retain the above copyright |
| 5552 | notice, this list of conditions and the following disclaimer. |
| 5553 | * Redistributions in binary form must reproduce the above copyright |
| 5554 | notice, this list of conditions and the following disclaimer in the |
| 5555 | documentation and/or other materials provided with the distribution. |
| 5556 | * Neither the name of the Linaro nor the |
| 5557 | names of its contributors may be used to endorse or promote products |
| 5558 | derived from this software without specific prior written permission. |
| 5559 | |
| 5560 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5561 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5562 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5563 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5564 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5565 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5566 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5567 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5568 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5569 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5570 | |
| 5571 | ------------------------------------------------------------------- |
| 5572 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 5573 | Copyright (c) 2014 |
| 5574 | Imagination Technologies Limited. |
| 5575 | |
| 5576 | Redistribution and use in source and binary forms, with or without |
| 5577 | modification, are permitted provided that the following conditions |
| 5578 | are met: |
| 5579 | 1. Redistributions of source code must retain the above copyright |
| 5580 | notice, this list of conditions and the following disclaimer. |
| 5581 | 2. Redistributions in binary form must reproduce the above copyright |
| 5582 | notice, this list of conditions and the following disclaimer in the |
| 5583 | documentation and/or other materials provided with the distribution. |
| 5584 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 5585 | contributors may be used to endorse or promote products derived from |
| 5586 | this software without specific prior written permission. |
| 5587 | |
| 5588 | THIS SOFTWARE IS PROVIDED BY IMAGINATION TECHNOLOGIES LIMITED ``AS IS'' AND |
| 5589 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5590 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5591 | ARE DISCLAIMED. IN NO EVENT SHALL IMAGINATION TECHNOLOGIES LIMITED BE LIABLE |
| 5592 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5593 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5594 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5595 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5596 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5597 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5598 | SUCH DAMAGE. |
| 5599 | |
| 5600 | ------------------------------------------------------------------- |
| 5601 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5602 | Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org> |
| 5603 | Copyright (c) 2014 Bob Beck <beck@obtuse.com> |
| 5604 | |
| 5605 | Permission to use, copy, modify, and distribute this software for any |
| 5606 | purpose with or without fee is hereby granted, provided that the above |
| 5607 | copyright notice and this permission notice appear in all copies. |
| 5608 | |
| 5609 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5610 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5611 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5612 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5613 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5614 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5615 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5616 | |
| 5617 | Emulation of getentropy(2) as documented at: |
Josh Gao | 98d655c | 2016-11-10 16:08:20 -0800 | [diff] [blame] | 5618 | http://man.openbsd.org/getentropy.2 |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5619 | |
| 5620 | ------------------------------------------------------------------- |
| 5621 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5622 | Copyright (c) 2014, Intel Corporation |
| 5623 | All rights reserved. |
| 5624 | |
| 5625 | Redistribution and use in source and binary forms, with or without |
| 5626 | modification, are permitted provided that the following conditions are met: |
| 5627 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5628 | * Redistributions of source code must retain the above copyright notice, |
| 5629 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5630 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5631 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5632 | * this list of conditions and the following disclaimer in the documentation |
| 5633 | * and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5634 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5635 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5636 | * may be used to endorse or promote products derived from this software |
| 5637 | * without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5638 | |
| 5639 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5640 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5641 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5642 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5643 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5644 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5645 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5646 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5647 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5648 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5649 | |
| 5650 | ------------------------------------------------------------------- |
| 5651 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5652 | Copyright (c) 2014, Linaro Limited |
| 5653 | All rights reserved. |
| 5654 | |
| 5655 | Redistribution and use in source and binary forms, with or without |
| 5656 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5657 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5658 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5659 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5660 | notice, this list of conditions and the following disclaimer in the |
| 5661 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5662 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5663 | names of its contributors may be used to endorse or promote products |
| 5664 | derived from this software without specific prior written permission. |
| 5665 | |
| 5666 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5667 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5668 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5669 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5670 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5671 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5672 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5673 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5674 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5675 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5676 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5677 | |
| 5678 | ------------------------------------------------------------------- |
| 5679 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5680 | Copyright (c) 2015 ARM Ltd |
| 5681 | All rights reserved. |
| 5682 | |
| 5683 | Redistribution and use in source and binary forms, with or without |
| 5684 | modification, are permitted provided that the following conditions |
| 5685 | are met: |
| 5686 | 1. Redistributions of source code must retain the above copyright |
| 5687 | notice, this list of conditions and the following disclaimer. |
| 5688 | 2. Redistributions in binary form must reproduce the above copyright |
| 5689 | notice, this list of conditions and the following disclaimer in the |
| 5690 | documentation and/or other materials provided with the distribution. |
| 5691 | 3. The name of the company may not be used to endorse or promote |
| 5692 | products derived from this software without specific prior written |
| 5693 | permission. |
| 5694 | |
| 5695 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5696 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5697 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5698 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5699 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5700 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5701 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5702 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5703 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5704 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5705 | |
| 5706 | ------------------------------------------------------------------- |
| 5707 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 5708 | Copyright (c) 2015 Joerg Sonnenberger <joerg@NetBSD.org>. |
| 5709 | All rights reserved. |
| 5710 | |
| 5711 | Redistribution and use in source and binary forms, with or without |
| 5712 | modification, are permitted provided that the following conditions |
| 5713 | are met: |
| 5714 | |
| 5715 | 1. Redistributions of source code must retain the above copyright |
| 5716 | notice, this list of conditions and the following disclaimer. |
| 5717 | 2. Redistributions in binary form must reproduce the above copyright |
| 5718 | notice, this list of conditions and the following disclaimer in |
| 5719 | the documentation and/or other materials provided with the |
| 5720 | distribution. |
| 5721 | |
| 5722 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5723 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5724 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 5725 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 5726 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5727 | INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 5728 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5729 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 5730 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 5731 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 5732 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5733 | SUCH DAMAGE. |
| 5734 | |
| 5735 | ------------------------------------------------------------------- |
| 5736 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5737 | Copyright (c)1999 Citrus Project, |
| 5738 | All rights reserved. |
| 5739 | |
| 5740 | Redistribution and use in source and binary forms, with or without |
| 5741 | modification, are permitted provided that the following conditions |
| 5742 | are met: |
| 5743 | 1. Redistributions of source code must retain the above copyright |
| 5744 | notice, this list of conditions and the following disclaimer. |
| 5745 | 2. Redistributions in binary form must reproduce the above copyright |
| 5746 | notice, this list of conditions and the following disclaimer in the |
| 5747 | documentation and/or other materials provided with the distribution. |
| 5748 | |
| 5749 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5750 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5751 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5752 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5753 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5754 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5755 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5756 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5757 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5758 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5759 | SUCH DAMAGE. |
| 5760 | |
| 5761 | ------------------------------------------------------------------- |
| 5762 | |
| 5763 | Copyright (c)2001 Citrus Project, |
| 5764 | All rights reserved. |
| 5765 | |
| 5766 | Redistribution and use in source and binary forms, with or without |
| 5767 | modification, are permitted provided that the following conditions |
| 5768 | are met: |
| 5769 | 1. Redistributions of source code must retain the above copyright |
| 5770 | notice, this list of conditions and the following disclaimer. |
| 5771 | 2. Redistributions in binary form must reproduce the above copyright |
| 5772 | notice, this list of conditions and the following disclaimer in the |
| 5773 | documentation and/or other materials provided with the distribution. |
| 5774 | |
| 5775 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5776 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5777 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5778 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5779 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5780 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5781 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5782 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5783 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5784 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5785 | SUCH DAMAGE. |
| 5786 | |
| 5787 | ------------------------------------------------------------------- |
| 5788 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5789 | Copyright (c)2003 Citrus Project, |
| 5790 | All rights reserved. |
| 5791 | |
| 5792 | Redistribution and use in source and binary forms, with or without |
| 5793 | modification, are permitted provided that the following conditions |
| 5794 | are met: |
| 5795 | 1. Redistributions of source code must retain the above copyright |
| 5796 | notice, this list of conditions and the following disclaimer. |
| 5797 | 2. Redistributions in binary form must reproduce the above copyright |
| 5798 | notice, this list of conditions and the following disclaimer in the |
| 5799 | documentation and/or other materials provided with the distribution. |
| 5800 | |
| 5801 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5802 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5803 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5804 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5805 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5806 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5807 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5808 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5809 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5810 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5811 | SUCH DAMAGE. |
| 5812 | |
| 5813 | ------------------------------------------------------------------- |
| 5814 | |
Elliott Hughes | 77a3e28 | 2016-08-08 12:39:56 -0700 | [diff] [blame] | 5815 | Copyright 1989 The Regents of the University of California. |
| 5816 | All rights reserved. |
| 5817 | |
| 5818 | Redistribution and use in source and binary forms, with or without |
| 5819 | modification, are permitted provided that the following conditions |
| 5820 | are met: |
| 5821 | 1. Redistributions of source code must retain the above copyright |
| 5822 | notice, this list of conditions and the following disclaimer. |
| 5823 | 2. Redistributions in binary form must reproduce the above copyright |
| 5824 | notice, this list of conditions and the following disclaimer in the |
| 5825 | documentation and/or other materials provided with the distribution. |
| 5826 | 3. Neither the name of the University nor the names of its contributors |
| 5827 | may be used to endorse or promote products derived from this software |
| 5828 | without specific prior written permission. |
| 5829 | |
| 5830 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND |
| 5831 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5832 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5833 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 5834 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5835 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5836 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5837 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5838 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5839 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5840 | |
| 5841 | ------------------------------------------------------------------- |
| 5842 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 5843 | Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
| 5844 | Copyright 2008 Damien Miller <djm@openbsd.org> |
| 5845 | All rights reserved. |
| 5846 | |
| 5847 | Theo de Raadt <deraadt@openbsd.org> came up with the idea of using |
| 5848 | such a mathematical system to generate more random (yet non-repeating) |
| 5849 | ids to solve the resolver/named problem. But Niels designed the |
| 5850 | actual system based on the constraints. |
| 5851 | |
| 5852 | Later modified by Damien Miller to wrap the LCG output in a 15-bit |
| 5853 | permutation generator based on a Luby-Rackoff block cipher. This |
| 5854 | ensures the output is non-repeating and preserves the MSB twiddle |
| 5855 | trick, but makes it more resistant to LCG prediction. |
| 5856 | |
| 5857 | Redistribution and use in source and binary forms, with or without |
| 5858 | modification, are permitted provided that the following conditions |
| 5859 | are met: |
| 5860 | 1. Redistributions of source code must retain the above copyright |
| 5861 | notice, this list of conditions and the following disclaimer. |
| 5862 | 2. Redistributions in binary form must reproduce the above copyright |
| 5863 | notice, this list of conditions and the following disclaimer in the |
| 5864 | documentation and/or other materials provided with the distribution. |
| 5865 | |
| 5866 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 5867 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 5868 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5869 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5870 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 5871 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5872 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5873 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5874 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5875 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5876 | |
| 5877 | ------------------------------------------------------------------- |
| 5878 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5879 | From: @(#)s_ilogb.c 5.1 93/09/24 |
| 5880 | ==================================================== |
| 5881 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 5882 | |
| 5883 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 5884 | Permission to use, copy, modify, and distribute this |
| 5885 | software is freely granted, provided that this notice |
| 5886 | is preserved. |
| 5887 | |
| 5888 | ------------------------------------------------------------------- |
| 5889 | |
Calin Juravle | c4fbf92 | 2014-03-10 11:23:52 +0000 | [diff] [blame] | 5890 | Portions Copyright (C) 2004, 2005, 2008, 2009 Internet Systems Consortium, Inc. ("ISC") |
| 5891 | Portions Copyright (C) 1996-2003 Internet Software Consortium. |
| 5892 | |
| 5893 | Permission to use, copy, modify, and/or distribute this software for any |
| 5894 | purpose with or without fee is hereby granted, provided that the above |
| 5895 | copyright notice and this permission notice appear in all copies. |
| 5896 | |
| 5897 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 5898 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 5899 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 5900 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 5901 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 5902 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 5903 | PERFORMANCE OF THIS SOFTWARE. |
| 5904 | |
| 5905 | ------------------------------------------------------------------- |
| 5906 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5907 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 5908 | |
| 5909 | Permission to use, copy, modify, and distribute this software for any |
| 5910 | purpose with or without fee is hereby granted, provided that the above |
| 5911 | copyright notice and this permission notice appear in all copies, and that |
| 5912 | the name of Digital Equipment Corporation not be used in advertising or |
| 5913 | publicity pertaining to distribution of the document or software without |
| 5914 | specific, written prior permission. |
| 5915 | |
| 5916 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 5917 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 5918 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 5919 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 5920 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 5921 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 5922 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 5923 | SOFTWARE. |
| 5924 | |
| 5925 | ------------------------------------------------------------------- |
| 5926 | |
| 5927 | Portions Copyright (c) 1995 by International Business Machines, Inc. |
| 5928 | |
| 5929 | International Business Machines, Inc. (hereinafter called IBM) grants |
| 5930 | permission under its copyrights to use, copy, modify, and distribute this |
| 5931 | Software with or without fee, provided that the above copyright notice and |
| 5932 | all paragraphs of this notice appear in all copies, and that the name of IBM |
| 5933 | not be used in connection with the marketing of any product incorporating |
| 5934 | the Software or modifications thereof, without specific, written prior |
| 5935 | permission. |
| 5936 | |
| 5937 | To the extent it has a right to do so, IBM grants an immunity from suit |
| 5938 | under its patents, if any, for the use, sale or manufacture of products to |
| 5939 | the extent that such products are used for performing Domain Name System |
| 5940 | dynamic updates in TCP/IP networks by means of the Software. No immunity is |
| 5941 | granted for any product per se or for any other function of any product. |
| 5942 | |
| 5943 | THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, |
| 5944 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 5945 | PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, |
| 5946 | DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING |
| 5947 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN |
| 5948 | IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| 5949 | |
| 5950 | ------------------------------------------------------------------- |
| 5951 | |
| 5952 | Portions Copyright(C) 1995, Jason Downs. All rights reserved. |
| 5953 | |
| 5954 | Redistribution and use in source and binary forms, with or without |
| 5955 | modification, are permitted provided that the following conditions |
| 5956 | are met: |
| 5957 | 1. Redistributions of source code must retain the above copyright |
| 5958 | notice, this list of conditions and the following disclaimer. |
| 5959 | 2. Redistributions in binary form must reproduce the above copyright |
| 5960 | notice, this list of conditions and the following disclaimer in the |
| 5961 | documentation and/or other materials provided with the distribution. |
| 5962 | |
| 5963 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS |
| 5964 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5965 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5966 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, |
| 5967 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5968 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 5969 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 5970 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5971 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5972 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5973 | SUCH DAMAGE. |
| 5974 | |
| 5975 | ------------------------------------------------------------------- |
| 5976 | |
| 5977 | The author of this software is David M. Gay. |
| 5978 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5979 | Copyright (C) 1998 by Lucent Technologies |
| 5980 | All Rights Reserved |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5981 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5982 | Permission to use, copy, modify, and distribute this software and |
| 5983 | its documentation for any purpose and without fee is hereby |
| 5984 | granted, provided that the above copyright notice appear in all |
| 5985 | copies and that both that the copyright notice and this |
| 5986 | permission notice and warranty disclaimer appear in supporting |
| 5987 | documentation, and that the name of Lucent or any of its entities |
| 5988 | not be used in advertising or publicity pertaining to |
| 5989 | distribution of the software without specific, written prior |
| 5990 | permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5991 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5992 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5993 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5994 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5995 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5996 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5997 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5998 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5999 | THIS SOFTWARE. |
| 6000 | |
| 6001 | ------------------------------------------------------------------- |
| 6002 | |
| 6003 | The author of this software is David M. Gay. |
| 6004 | |
| 6005 | Copyright (C) 1998, 1999 by Lucent Technologies |
| 6006 | All Rights Reserved |
| 6007 | |
| 6008 | Permission to use, copy, modify, and distribute this software and |
| 6009 | its documentation for any purpose and without fee is hereby |
| 6010 | granted, provided that the above copyright notice appear in all |
| 6011 | copies and that both that the copyright notice and this |
| 6012 | permission notice and warranty disclaimer appear in supporting |
| 6013 | documentation, and that the name of Lucent or any of its entities |
| 6014 | not be used in advertising or publicity pertaining to |
| 6015 | distribution of the software without specific, written prior |
| 6016 | permission. |
| 6017 | |
| 6018 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6019 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6020 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6021 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6022 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6023 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6024 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6025 | THIS SOFTWARE. |
| 6026 | |
| 6027 | ------------------------------------------------------------------- |
| 6028 | |
| 6029 | The author of this software is David M. Gay. |
| 6030 | |
| 6031 | Copyright (C) 1998, 2000 by Lucent Technologies |
| 6032 | All Rights Reserved |
| 6033 | |
| 6034 | Permission to use, copy, modify, and distribute this software and |
| 6035 | its documentation for any purpose and without fee is hereby |
| 6036 | granted, provided that the above copyright notice appear in all |
| 6037 | copies and that both that the copyright notice and this |
| 6038 | permission notice and warranty disclaimer appear in supporting |
| 6039 | documentation, and that the name of Lucent or any of its entities |
| 6040 | not be used in advertising or publicity pertaining to |
| 6041 | distribution of the software without specific, written prior |
| 6042 | permission. |
| 6043 | |
| 6044 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6045 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6046 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6047 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6048 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6049 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6050 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6051 | THIS SOFTWARE. |
| 6052 | |
| 6053 | ------------------------------------------------------------------- |
| 6054 | |
| 6055 | The author of this software is David M. Gay. |
| 6056 | |
| 6057 | Copyright (C) 1998-2000 by Lucent Technologies |
| 6058 | All Rights Reserved |
| 6059 | |
| 6060 | Permission to use, copy, modify, and distribute this software and |
| 6061 | its documentation for any purpose and without fee is hereby |
| 6062 | granted, provided that the above copyright notice appear in all |
| 6063 | copies and that both that the copyright notice and this |
| 6064 | permission notice and warranty disclaimer appear in supporting |
| 6065 | documentation, and that the name of Lucent or any of its entities |
| 6066 | not be used in advertising or publicity pertaining to |
| 6067 | distribution of the software without specific, written prior |
| 6068 | permission. |
| 6069 | |
| 6070 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6071 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6072 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6073 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6074 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6075 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6076 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6077 | THIS SOFTWARE. |
| 6078 | |
| 6079 | ------------------------------------------------------------------- |
| 6080 | |
| 6081 | The author of this software is David M. Gay. |
| 6082 | |
| 6083 | Copyright (C) 1998-2001 by Lucent Technologies |
| 6084 | All Rights Reserved |
| 6085 | |
| 6086 | Permission to use, copy, modify, and distribute this software and |
| 6087 | its documentation for any purpose and without fee is hereby |
| 6088 | granted, provided that the above copyright notice appear in all |
| 6089 | copies and that both that the copyright notice and this |
| 6090 | permission notice and warranty disclaimer appear in supporting |
| 6091 | documentation, and that the name of Lucent or any of its entities |
| 6092 | not be used in advertising or publicity pertaining to |
| 6093 | distribution of the software without specific, written prior |
| 6094 | permission. |
| 6095 | |
| 6096 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6097 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6098 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6099 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6100 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6101 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6102 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6103 | THIS SOFTWARE. |
| 6104 | |
| 6105 | ------------------------------------------------------------------- |
| 6106 | |
| 6107 | The author of this software is David M. Gay. |
| 6108 | |
| 6109 | Copyright (C) 2000 by Lucent Technologies |
| 6110 | All Rights Reserved |
| 6111 | |
| 6112 | Permission to use, copy, modify, and distribute this software and |
| 6113 | its documentation for any purpose and without fee is hereby |
| 6114 | granted, provided that the above copyright notice appear in all |
| 6115 | copies and that both that the copyright notice and this |
| 6116 | permission notice and warranty disclaimer appear in supporting |
| 6117 | documentation, and that the name of Lucent or any of its entities |
| 6118 | not be used in advertising or publicity pertaining to |
| 6119 | distribution of the software without specific, written prior |
| 6120 | permission. |
| 6121 | |
| 6122 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6123 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6124 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6125 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6126 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6127 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6128 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6129 | THIS SOFTWARE. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 6130 | |
| 6131 | ------------------------------------------------------------------- |
| 6132 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 6133 | memchr - find a character in a memory zone |
| 6134 | |
| 6135 | Copyright (c) 2014, ARM Limited |
| 6136 | All rights Reserved. |
| 6137 | Copyright (c) 2014, Linaro Ltd. |
| 6138 | |
| 6139 | Redistribution and use in source and binary forms, with or without |
| 6140 | modification, are permitted provided that the following conditions are met: |
| 6141 | * Redistributions of source code must retain the above copyright |
| 6142 | notice, this list of conditions and the following disclaimer. |
| 6143 | * Redistributions in binary form must reproduce the above copyright |
| 6144 | notice, this list of conditions and the following disclaimer in the |
| 6145 | documentation and/or other materials provided with the distribution. |
| 6146 | * Neither the name of the company nor the names of its contributors |
| 6147 | may be used to endorse or promote products derived from this |
| 6148 | software without specific prior written permission. |
| 6149 | |
| 6150 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 6151 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 6152 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 6153 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 6154 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 6155 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 6156 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 6157 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 6158 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 6159 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 6160 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 6161 | |
| 6162 | ------------------------------------------------------------------- |
| 6163 | |