Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 1 | Copyright (c) 2014, Linaro Limited |
| 2 | All rights reserved. |
| 3 | |
| 4 | Redistribution and use in source and binary forms, with or without |
| 5 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 6 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 7 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 8 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 9 | notice, this list of conditions and the following disclaimer in the |
| 10 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 11 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 12 | names of its contributors may be used to endorse or promote products |
| 13 | derived from this software without specific prior written permission. |
| 14 | |
| 15 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 18 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 19 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 21 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 22 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 23 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | |
| 27 | ------------------------------------------------------------------- |
| 28 | |
| 29 | strchr - find a character in a string |
| 30 | |
| 31 | Copyright (c) 2014, ARM Limited |
| 32 | All rights Reserved. |
| 33 | Copyright (c) 2014, Linaro Ltd. |
| 34 | |
| 35 | Redistribution and use in source and binary forms, with or without |
| 36 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 37 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 38 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 39 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 40 | notice, this list of conditions and the following disclaimer in the |
| 41 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 42 | * Neither the name of the company nor the names of its contributors |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 43 | may be used to endorse or promote products derived from this |
| 44 | software without specific prior written permission. |
| 45 | |
| 46 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 47 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 48 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 49 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 50 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 51 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 52 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 53 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 54 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 55 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 56 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 57 | |
| 58 | ------------------------------------------------------------------- |
| 59 | |
Elliott Hughes | 3e424d0 | 2014-07-23 16:02:26 -0700 | [diff] [blame] | 60 | Copyright (c) 1993 John Brezak |
| 61 | All rights reserved. |
| 62 | |
| 63 | Redistribution and use in source and binary forms, with or without |
| 64 | modification, are permitted provided that the following conditions |
| 65 | are met: |
| 66 | 1. Redistributions of source code must retain the above copyright |
| 67 | notice, this list of conditions and the following disclaimer. |
| 68 | 2. Redistributions in binary form must reproduce the above copyright |
| 69 | notice, this list of conditions and the following disclaimer in the |
| 70 | documentation and/or other materials provided with the distribution. |
| 71 | 3. The name of the author may be used to endorse or promote products |
| 72 | derived from this software without specific prior written permission. |
| 73 | |
| 74 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR |
| 75 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 76 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 77 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, |
| 78 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 79 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 80 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 81 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 82 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 83 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 84 | POSSIBILITY OF SUCH DAMAGE. |
| 85 | |
| 86 | ------------------------------------------------------------------- |
| 87 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 88 | Copyright (c) 2009-2013 The Linux Foundation. All rights reserved. |
| 89 | |
| 90 | Redistribution and use in source and binary forms, with or without |
| 91 | modification, are permitted provided that the following conditions are met: |
| 92 | * Redistributions of source code must retain the above copyright |
| 93 | notice, this list of conditions and the following disclaimer. |
| 94 | * Redistributions in binary form must reproduce the above copyright |
| 95 | notice, this list of conditions and the following disclaimer in the |
| 96 | documentation and/or other materials provided with the distribution. |
| 97 | * Neither the name of The Linux Foundation nor the names of its contributors may |
| 98 | be used to endorse or promote products derived from this software |
| 99 | without specific prior written permission. |
| 100 | |
| 101 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 102 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 103 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 104 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 105 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 106 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 107 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 108 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 109 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 110 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 111 | POSSIBILITY OF SUCH DAMAGE. |
| 112 | |
| 113 | ------------------------------------------------------------------- |
| 114 | |
Neil Fuller | 7336db7 | 2017-04-05 14:57:00 +0100 | [diff] [blame] | 115 | <?xml version="1.0" encoding="utf-8"?> |
| 116 | <!-- |
| 117 | |
| 118 | Copyright 2006, The Android Open Source Project |
| 119 | |
| 120 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 121 | you may not use this file except in compliance with the License. |
| 122 | You may obtain a copy of the License at |
| 123 | |
| 124 | http://www.apache.org/licenses/LICENSE-2.0 |
| 125 | |
| 126 | Unless required by applicable law or agreed to in writing, software |
| 127 | distributed under the License is distributed on an "AS IS" BASIS, |
| 128 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 129 | See the License for the specific language governing permissions and |
| 130 | limitations under the License. |
| 131 | |
| 132 | ------------------------------------------------------------------- |
| 133 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 134 | ==================================================== |
| 135 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 136 | |
| 137 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 138 | Permission to use, copy, modify, and distribute this |
| 139 | software is freely granted, provided that this notice |
| 140 | is preserved. |
| 141 | |
| 142 | ------------------------------------------------------------------- |
| 143 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 144 | ==================================================== |
| 145 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 146 | |
| 147 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 148 | Permission to use, copy, modify, and distribute this |
| 149 | software is freely granted, provided that this notice |
| 150 | is preserved. |
| 151 | ==================================================== |
| 152 | |
| 153 | Optimized by Bruce D. Evans. |
| 154 | |
| 155 | ------------------------------------------------------------------- |
| 156 | |
| 157 | ==================================================== |
| 158 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 159 | |
| 160 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 161 | Permission to use, copy, modify, and distribute this |
| 162 | software is freely granted, provided that this notice |
| 163 | is preserved. |
| 164 | |
| 165 | ------------------------------------------------------------------- |
| 166 | |
| 167 | ==================================================== |
| 168 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 169 | |
| 170 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 171 | Permission to use, copy, modify, and distribute this |
| 172 | software is freely granted, provided that this notice |
| 173 | is preserved. |
| 174 | ==================================================== |
| 175 | |
| 176 | Optimized by Bruce D. Evans. |
| 177 | |
| 178 | ------------------------------------------------------------------- |
| 179 | |
| 180 | ==================================================== |
| 181 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 182 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 183 | |
| 184 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 185 | Permission to use, copy, modify, and distribute this |
| 186 | software is freely granted, provided that this notice |
| 187 | is preserved. |
| 188 | |
| 189 | ------------------------------------------------------------------- |
| 190 | |
| 191 | ==================================================== |
| 192 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 193 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 194 | |
| 195 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 196 | Permission to use, copy, modify, and distribute this |
| 197 | software is freely granted, provided that this notice |
| 198 | is preserved. |
| 199 | ==================================================== |
| 200 | |
| 201 | Optimized by Bruce D. Evans. |
| 202 | |
| 203 | ------------------------------------------------------------------- |
| 204 | |
| 205 | ==================================================== |
| 206 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 207 | Copyright (c) 2009-2011, Bruce D. Evans, Steven G. Kargl, David Schultz. |
| 208 | |
| 209 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 210 | Permission to use, copy, modify, and distribute this |
| 211 | software is freely granted, provided that this notice |
| 212 | is preserved. |
| 213 | ==================================================== |
| 214 | |
| 215 | The argument reduction and testing for exceptional cases was |
| 216 | written by Steven G. Kargl with input from Bruce D. Evans |
| 217 | and David A. Schultz. |
| 218 | |
| 219 | ------------------------------------------------------------------- |
| 220 | |
| 221 | ==================================================== |
| 222 | Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved. |
| 223 | |
| 224 | Permission to use, copy, modify, and distribute this |
| 225 | software is freely granted, provided that this notice |
| 226 | is preserved. |
| 227 | |
| 228 | ------------------------------------------------------------------- |
| 229 | |
| 230 | ==================================================== |
| 231 | Copyright 2004 Sun Microsystems, Inc. All Rights Reserved. |
| 232 | |
| 233 | Permission to use, copy, modify, and distribute this |
| 234 | software is freely granted, provided that this notice |
| 235 | is preserved. |
| 236 | |
| 237 | ------------------------------------------------------------------- |
| 238 | |
| 239 | ==================================================== |
| 240 | Copyright 2004 Sun Microsystems, Inc. All Rights Reserved. |
| 241 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 242 | |
| 243 | Permission to use, copy, modify, and distribute this |
| 244 | software is freely granted, provided that this notice |
| 245 | is preserved. |
| 246 | |
| 247 | ------------------------------------------------------------------- |
| 248 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 249 | Based on the UCB version with the ID appearing below. |
| 250 | This is ANSIish only when "multibyte character == plain character". |
| 251 | |
| 252 | Copyright (c) 1989, 1993 |
| 253 | The Regents of the University of California. All rights reserved. |
| 254 | |
| 255 | Redistribution and use in source and binary forms, with or without |
| 256 | modification, are permitted provided that the following conditions |
| 257 | are met: |
| 258 | 1. Redistributions of source code must retain the above copyright |
| 259 | notice, this list of conditions and the following disclaimer. |
| 260 | 2. Redistributions in binary form must reproduce the above copyright |
| 261 | notice, this list of conditions and the following disclaimer in the |
| 262 | documentation and/or other materials provided with the distribution. |
| 263 | 3. Neither the name of the University nor the names of its contributors |
| 264 | may be used to endorse or promote products derived from this software |
| 265 | without specific prior written permission. |
| 266 | |
| 267 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 268 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 269 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 270 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 271 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 272 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 273 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 274 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 275 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 276 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 277 | SUCH DAMAGE. |
| 278 | |
| 279 | ------------------------------------------------------------------- |
| 280 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 281 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 282 | All rights reserved. |
| 283 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 284 | Redistribution and use in source and binary forms, with or without |
| 285 | modification, are permitted provided that the following conditions |
| 286 | are met: |
| 287 | 1. Redistributions of source code must retain the above copyright |
| 288 | notice, this list of conditions and the following disclaimer. |
| 289 | 2. Redistributions in binary form must reproduce the above copyright |
| 290 | notice, this list of conditions and the following disclaimer in the |
| 291 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 292 | 3. Neither the name of the project nor the names of its contributors |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 293 | may be used to endorse or promote products derived from this software |
| 294 | without specific prior written permission. |
| 295 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 296 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 297 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 298 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 299 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 300 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 301 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 302 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 303 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 304 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 305 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 306 | SUCH DAMAGE. |
| 307 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 308 | ------------------------------------------------------------------- |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 309 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 310 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 311 | Copyright (C) 1995-1999, 2001, 2003 Internet Software Consortium. |
| 312 | |
| 313 | Permission to use, copy, modify, and/or distribute this software for any |
| 314 | purpose with or without fee is hereby granted, provided that the above |
| 315 | copyright notice and this permission notice appear in all copies. |
| 316 | |
| 317 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 318 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 319 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 320 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 321 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 322 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 323 | PERFORMANCE OF THIS SOFTWARE. |
| 324 | |
| 325 | ------------------------------------------------------------------- |
| 326 | |
| 327 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 328 | Copyright (C) 1997-2001 Internet Software Consortium. |
| 329 | |
| 330 | Permission to use, copy, modify, and/or distribute this software for any |
| 331 | purpose with or without fee is hereby granted, provided that the above |
| 332 | copyright notice and this permission notice appear in all copies. |
| 333 | |
| 334 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 335 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 336 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 337 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 338 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 339 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 340 | PERFORMANCE OF THIS SOFTWARE. |
| 341 | |
| 342 | ------------------------------------------------------------------- |
| 343 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 344 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 345 | |
| 346 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 347 | you may not use this file except in compliance with the License. |
| 348 | You may obtain a copy of the License at |
| 349 | |
| 350 | http://www.apache.org/licenses/LICENSE-2.0 |
| 351 | |
| 352 | Unless required by applicable law or agreed to in writing, software |
| 353 | distributed under the License is distributed on an "AS IS" BASIS, |
| 354 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 355 | See the License for the specific language governing permissions and |
| 356 | limitations under the License. |
| 357 | |
| 358 | ------------------------------------------------------------------- |
| 359 | |
| 360 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 361 | All rights reserved. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 362 | |
| 363 | Redistribution and use in source and binary forms, with or without |
| 364 | modification, are permitted provided that the following conditions |
| 365 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 366 | * Redistributions of source code must retain the above copyright |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 367 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 368 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 369 | notice, this list of conditions and the following disclaimer in |
| 370 | the documentation and/or other materials provided with the |
| 371 | distribution. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 372 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 373 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 374 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 375 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 376 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 377 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 378 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 379 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 380 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 381 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 382 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 383 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 384 | SUCH DAMAGE. |
| 385 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 386 | ------------------------------------------------------------------- |
| 387 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 388 | Copyright (C) 2007 The Android Open Source Project |
| 389 | |
| 390 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 391 | you may not use this file except in compliance with the License. |
| 392 | You may obtain a copy of the License at |
| 393 | |
| 394 | http://www.apache.org/licenses/LICENSE-2.0 |
| 395 | |
| 396 | Unless required by applicable law or agreed to in writing, software |
| 397 | distributed under the License is distributed on an "AS IS" BASIS, |
| 398 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 399 | See the License for the specific language governing permissions and |
| 400 | limitations under the License. |
| 401 | |
| 402 | ------------------------------------------------------------------- |
| 403 | |
Dimitry Ivanov | bcc4da9 | 2017-02-15 15:31:13 -0800 | [diff] [blame] | 404 | Copyright (C) 2007 The Android Open Source Project |
| 405 | All rights reserved. |
| 406 | |
| 407 | Redistribution and use in source and binary forms, with or without |
| 408 | modification, are permitted provided that the following conditions |
| 409 | are met: |
| 410 | * Redistributions of source code must retain the above copyright |
| 411 | notice, this list of conditions and the following disclaimer. |
| 412 | * Redistributions in binary form must reproduce the above copyright |
| 413 | notice, this list of conditions and the following disclaimer in |
| 414 | the documentation and/or other materials provided with the |
| 415 | distribution. |
| 416 | |
| 417 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 418 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 419 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 420 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 421 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 422 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 423 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 424 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 425 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 426 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 427 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 428 | SUCH DAMAGE. |
| 429 | |
| 430 | ------------------------------------------------------------------- |
| 431 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 432 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 433 | |
| 434 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 435 | you may not use this file except in compliance with the License. |
| 436 | You may obtain a copy of the License at |
| 437 | |
| 438 | http://www.apache.org/licenses/LICENSE-2.0 |
| 439 | |
| 440 | Unless required by applicable law or agreed to in writing, software |
| 441 | distributed under the License is distributed on an "AS IS" BASIS, |
| 442 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 443 | See the License for the specific language governing permissions and |
| 444 | limitations under the License. |
| 445 | |
| 446 | ------------------------------------------------------------------- |
| 447 | |
| 448 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 449 | All rights reserved. |
| 450 | |
| 451 | Redistribution and use in source and binary forms, with or without |
| 452 | modification, are permitted provided that the following conditions |
| 453 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 454 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 455 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 456 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 457 | notice, this list of conditions and the following disclaimer in |
| 458 | the documentation and/or other materials provided with the |
| 459 | distribution. |
| 460 | |
| 461 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 462 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 463 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 464 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 465 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 466 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 467 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 468 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 469 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 470 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 471 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 472 | SUCH DAMAGE. |
| 473 | |
| 474 | ------------------------------------------------------------------- |
| 475 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 476 | Copyright (C) 2008 The Android Open Source Project |
| 477 | All rights reserved. |
| 478 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 479 | |
| 480 | Redistribution and use in source and binary forms, with or without |
| 481 | modification, are permitted provided that the following conditions |
| 482 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 483 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 484 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 485 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 486 | notice, this list of conditions and the following disclaimer in |
| 487 | the documentation and/or other materials provided with the |
| 488 | distribution. |
| 489 | |
| 490 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 491 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 492 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 493 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 494 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 495 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 496 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 497 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 498 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 499 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 500 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 501 | SUCH DAMAGE. |
| 502 | |
| 503 | ------------------------------------------------------------------- |
| 504 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 505 | Copyright (C) 2009 The Android Open Source Project |
| 506 | All rights reserved. |
| 507 | |
| 508 | Redistribution and use in source and binary forms, with or without |
| 509 | modification, are permitted provided that the following conditions |
| 510 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 511 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 512 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 513 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 514 | notice, this list of conditions and the following disclaimer in |
| 515 | the documentation and/or other materials provided with the |
| 516 | distribution. |
| 517 | |
| 518 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 519 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 520 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 521 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 522 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 523 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 524 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 525 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 526 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 527 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 528 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 529 | SUCH DAMAGE. |
| 530 | |
| 531 | ------------------------------------------------------------------- |
| 532 | |
| 533 | Copyright (C) 2010 The Android Open Source Project |
| 534 | |
| 535 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 536 | you may not use this file except in compliance with the License. |
| 537 | You may obtain a copy of the License at |
| 538 | |
| 539 | http://www.apache.org/licenses/LICENSE-2.0 |
| 540 | |
| 541 | Unless required by applicable law or agreed to in writing, software |
| 542 | distributed under the License is distributed on an "AS IS" BASIS, |
| 543 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 544 | See the License for the specific language governing permissions and |
| 545 | limitations under the License. |
| 546 | |
| 547 | ------------------------------------------------------------------- |
| 548 | |
| 549 | Copyright (C) 2010 The Android Open Source Project |
| 550 | All rights reserved. |
| 551 | |
| 552 | Redistribution and use in source and binary forms, with or without |
| 553 | modification, are permitted provided that the following conditions |
| 554 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 555 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 556 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 557 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 558 | notice, this list of conditions and the following disclaimer in |
| 559 | the documentation and/or other materials provided with the |
| 560 | distribution. |
| 561 | |
| 562 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 563 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 564 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 565 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 566 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 567 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 568 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 569 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 570 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 571 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 572 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 573 | SUCH DAMAGE. |
| 574 | |
| 575 | ------------------------------------------------------------------- |
| 576 | |
| 577 | Copyright (C) 2010 The Android Open Source Project |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 578 | All rights reserved. |
| 579 | |
| 580 | Redistribution and use in source and binary forms, with or without |
| 581 | modification, are permitted provided that the following conditions |
| 582 | are met: |
| 583 | 1. Redistributions of source code must retain the above copyright |
| 584 | notice, this list of conditions and the following disclaimer. |
| 585 | 2. Redistributions in binary form must reproduce the above copyright |
| 586 | notice, this list of conditions and the following disclaimer in the |
| 587 | documentation and/or other materials provided with the distribution. |
| 588 | |
| 589 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 590 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 591 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 592 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 593 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 594 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 595 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 596 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 597 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 598 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 599 | SUCH DAMAGE. |
| 600 | |
| 601 | ------------------------------------------------------------------- |
| 602 | |
| 603 | Copyright (C) 2010 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 604 | Copyright (c) 2008 ARM Ltd |
| 605 | All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 606 | |
| 607 | Redistribution and use in source and binary forms, with or without |
| 608 | modification, are permitted provided that the following conditions |
| 609 | are met: |
| 610 | 1. Redistributions of source code must retain the above copyright |
| 611 | notice, this list of conditions and the following disclaimer. |
| 612 | 2. Redistributions in binary form must reproduce the above copyright |
| 613 | notice, this list of conditions and the following disclaimer in the |
| 614 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 615 | 3. The name of the company may not be used to endorse or promote |
| 616 | products derived from this software without specific prior written |
| 617 | permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 618 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 619 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 620 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 621 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 622 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 623 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 624 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 625 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 626 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 627 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 628 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 629 | |
| 630 | Android adaptation and tweak by Jim Huang <jserv@0xlab.org>. |
| 631 | |
| 632 | ------------------------------------------------------------------- |
| 633 | |
| 634 | Copyright (C) 2011 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 635 | All rights reserved. |
| 636 | |
| 637 | Redistribution and use in source and binary forms, with or without |
| 638 | modification, are permitted provided that the following conditions |
| 639 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 640 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 641 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 642 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 643 | notice, this list of conditions and the following disclaimer in |
| 644 | the documentation and/or other materials provided with the |
| 645 | distribution. |
| 646 | |
| 647 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 648 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 649 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 650 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 651 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 652 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 653 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 654 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 655 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 656 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 657 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 658 | SUCH DAMAGE. |
| 659 | |
| 660 | ------------------------------------------------------------------- |
| 661 | |
| 662 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 663 | |
| 664 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 665 | you may not use this file except in compliance with the License. |
| 666 | You may obtain a copy of the License at |
| 667 | |
| 668 | http://www.apache.org/licenses/LICENSE-2.0 |
| 669 | |
| 670 | Unless required by applicable law or agreed to in writing, software |
| 671 | distributed under the License is distributed on an "AS IS" BASIS, |
| 672 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 673 | See the License for the specific language governing permissions and |
| 674 | limitations under the License. |
| 675 | |
| 676 | ------------------------------------------------------------------- |
| 677 | |
| 678 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 679 | All rights reserved. |
| 680 | |
| 681 | Redistribution and use in source and binary forms, with or without |
| 682 | modification, are permitted provided that the following conditions |
| 683 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 684 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 685 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 686 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 687 | notice, this list of conditions and the following disclaimer in |
| 688 | the documentation and/or other materials provided with the |
| 689 | distribution. |
| 690 | |
| 691 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 692 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 693 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 694 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 695 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 696 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 697 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 698 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 699 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 700 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 701 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 702 | SUCH DAMAGE. |
| 703 | |
| 704 | ------------------------------------------------------------------- |
| 705 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 706 | Copyright (C) 2013 The Android Open Source Project |
| 707 | |
| 708 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 709 | you may not use this file except in compliance with the License. |
| 710 | You may obtain a copy of the License at |
| 711 | |
| 712 | http://www.apache.org/licenses/LICENSE-2.0 |
| 713 | |
| 714 | Unless required by applicable law or agreed to in writing, software |
| 715 | distributed under the License is distributed on an "AS IS" BASIS, |
| 716 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 717 | See the License for the specific language governing permissions and |
| 718 | limitations under the License. |
| 719 | |
| 720 | ------------------------------------------------------------------- |
| 721 | |
| 722 | Copyright (C) 2013 The Android Open Source Project |
| 723 | All rights reserved. |
| 724 | |
| 725 | Redistribution and use in source and binary forms, with or without |
| 726 | modification, are permitted provided that the following conditions |
| 727 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 728 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 729 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 730 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 731 | notice, this list of conditions and the following disclaimer in |
| 732 | the documentation and/or other materials provided with the |
| 733 | distribution. |
| 734 | |
| 735 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 736 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 737 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 738 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 739 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 740 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 741 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 742 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 743 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 744 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 745 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 746 | SUCH DAMAGE. |
| 747 | |
| 748 | ------------------------------------------------------------------- |
| 749 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 750 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 751 | All rights reserved. |
| 752 | Copyright (c) 2013-2014 NVIDIA Corporation. All rights reserved. |
| 753 | |
| 754 | Redistribution and use in source and binary forms, with or without |
| 755 | modification, are permitted provided that the following conditions |
| 756 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 757 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 758 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 759 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 760 | notice, this list of conditions and the following disclaimer in |
| 761 | the documentation and/or other materials provided with the |
| 762 | distribution. |
| 763 | |
| 764 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 765 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 766 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 767 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 768 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 769 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 770 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 771 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 772 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 773 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 774 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 775 | SUCH DAMAGE. |
| 776 | |
| 777 | ------------------------------------------------------------------- |
| 778 | |
| 779 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 780 | Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. |
| 781 | All rights reserved. |
| 782 | |
| 783 | Redistribution and use in source and binary forms, with or without |
| 784 | modification, are permitted provided that the following conditions |
| 785 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 786 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 787 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 788 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 789 | notice, this list of conditions and the following disclaimer in |
| 790 | the documentation and/or other materials provided with the |
| 791 | distribution. |
| 792 | |
| 793 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 794 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 795 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 796 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 797 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 798 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 799 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 800 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 801 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 802 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 803 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 804 | SUCH DAMAGE. |
| 805 | |
| 806 | ------------------------------------------------------------------- |
| 807 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 808 | Copyright (C) 2014 The Android Open Source Project |
| 809 | |
| 810 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 811 | you may not use this file except in compliance with the License. |
| 812 | You may obtain a copy of the License at |
| 813 | |
| 814 | http://www.apache.org/licenses/LICENSE-2.0 |
| 815 | |
| 816 | Unless required by applicable law or agreed to in writing, software |
| 817 | distributed under the License is distributed on an "AS IS" BASIS, |
| 818 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 819 | See the License for the specific language governing permissions and |
| 820 | limitations under the License. |
| 821 | |
| 822 | ------------------------------------------------------------------- |
| 823 | |
| 824 | Copyright (C) 2014 The Android Open Source Project |
| 825 | All rights reserved. |
| 826 | |
| 827 | Redistribution and use in source and binary forms, with or without |
| 828 | modification, are permitted provided that the following conditions |
| 829 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 830 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 831 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 832 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 833 | notice, this list of conditions and the following disclaimer in |
| 834 | the documentation and/or other materials provided with the |
| 835 | distribution. |
| 836 | |
| 837 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 838 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 839 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 840 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 841 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 842 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 843 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 844 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 845 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 846 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 847 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 848 | SUCH DAMAGE. |
| 849 | |
| 850 | ------------------------------------------------------------------- |
| 851 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 852 | Copyright (C) 2014 The Android Open Source Project |
| 853 | All rights reserved. |
| 854 | |
| 855 | Redistribution and use in source and binary forms, with or without |
| 856 | modification, are permitted provided that the following conditions |
| 857 | are met: |
| 858 | 1. Redistributions of source code must retain the above copyright |
| 859 | notice, this list of conditions and the following disclaimer. |
| 860 | 2. Redistributions in binary form must reproduce the above copyright |
| 861 | notice, this list of conditions and the following disclaimer in the |
| 862 | documentation and/or other materials provided with the distribution. |
| 863 | |
| 864 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 865 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 866 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 867 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 868 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 869 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 870 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 871 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 872 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 873 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 874 | SUCH DAMAGE. |
| 875 | |
| 876 | ------------------------------------------------------------------- |
| 877 | |
| 878 | Copyright (C) 2015 The Android Open Source Project |
| 879 | |
| 880 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 881 | you may not use this file except in compliance with the License. |
| 882 | You may obtain a copy of the License at |
| 883 | |
| 884 | http://www.apache.org/licenses/LICENSE-2.0 |
| 885 | |
| 886 | Unless required by applicable law or agreed to in writing, software |
| 887 | distributed under the License is distributed on an "AS IS" BASIS, |
| 888 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 889 | See the License for the specific language governing permissions and |
| 890 | limitations under the License. |
| 891 | |
| 892 | ------------------------------------------------------------------- |
| 893 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 894 | Copyright (C) 2015 The Android Open Source Project |
| 895 | |
| 896 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 897 | you may not use this file except in compliance with the License. |
| 898 | You may obtain a copy of the License at |
| 899 | |
| 900 | http://www.apache.org/licenses/LICENSE-2.0 |
| 901 | |
| 902 | Unless required by applicable law or agreed to in writing, software |
| 903 | distributed under the License is distributed on an "AS IS" BASIS, |
| 904 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 905 | See the License for the specific language governing permissions and |
| 906 | limitations under the License. |
| 907 | |
| 908 | ------------------------------------------------------------------- |
| 909 | |
| 910 | Copyright (C) 2015 The Android Open Source Project |
| 911 | All rights reserved. |
| 912 | |
| 913 | Redistribution and use in source and binary forms, with or without |
| 914 | modification, are permitted provided that the following conditions |
| 915 | are met: |
| 916 | * Redistributions of source code must retain the above copyright |
| 917 | notice, this list of conditions and the following disclaimer. |
| 918 | * Redistributions in binary form must reproduce the above copyright |
| 919 | notice, this list of conditions and the following disclaimer in |
| 920 | the documentation and/or other materials provided with the |
| 921 | distribution. |
| 922 | |
| 923 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 924 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 925 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 926 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 927 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 928 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 929 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 930 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 931 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 932 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 933 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 934 | SUCH DAMAGE. |
| 935 | |
| 936 | ------------------------------------------------------------------- |
| 937 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 938 | Copyright (C) 2016 The Android Open Source Project |
| 939 | |
| 940 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 941 | you may not use this file except in compliance with the License. |
| 942 | You may obtain a copy of the License at |
| 943 | |
| 944 | http://www.apache.org/licenses/LICENSE-2.0 |
| 945 | |
| 946 | Unless required by applicable law or agreed to in writing, software |
| 947 | distributed under the License is distributed on an "AS IS" BASIS, |
| 948 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 949 | See the License for the specific language governing permissions and |
| 950 | limitations under the License. |
| 951 | |
| 952 | ------------------------------------------------------------------- |
| 953 | |
| 954 | Copyright (C) 2016 The Android Open Source Project |
| 955 | All rights reserved. |
| 956 | |
| 957 | Redistribution and use in source and binary forms, with or without |
| 958 | modification, are permitted provided that the following conditions |
| 959 | are met: |
| 960 | * Redistributions of source code must retain the above copyright |
| 961 | notice, this list of conditions and the following disclaimer. |
| 962 | * Redistributions in binary form must reproduce the above copyright |
| 963 | notice, this list of conditions and the following disclaimer in |
| 964 | the documentation and/or other materials provided with the |
| 965 | distribution. |
| 966 | |
| 967 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 968 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 969 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 970 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 971 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 972 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 973 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 974 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 975 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 976 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 977 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 978 | SUCH DAMAGE. |
| 979 | |
| 980 | ------------------------------------------------------------------- |
| 981 | |
mspector | 2e3d6a1 | 2017-01-24 21:51:51 -0800 | [diff] [blame] | 982 | Copyright (C) 2017 The Android Open Source Project |
Paul Lawrence | dfe8434 | 2017-02-16 09:24:39 -0800 | [diff] [blame] | 983 | |
| 984 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 985 | you may not use this file except in compliance with the License. |
| 986 | You may obtain a copy of the License at |
| 987 | |
| 988 | http://www.apache.org/licenses/LICENSE-2.0 |
| 989 | |
| 990 | Unless required by applicable law or agreed to in writing, software |
| 991 | distributed under the License is distributed on an "AS IS" BASIS, |
| 992 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 993 | See the License for the specific language governing permissions and |
| 994 | limitations under the License. |
| 995 | |
| 996 | ------------------------------------------------------------------- |
| 997 | |
| 998 | Copyright (C) 2017 The Android Open Source Project |
mspector | 2e3d6a1 | 2017-01-24 21:51:51 -0800 | [diff] [blame] | 999 | All rights reserved. |
| 1000 | |
Jake Weinstein | 04d99df | 2016-08-25 20:03:25 -0400 | [diff] [blame^] | 1001 | Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved. |
| 1002 | |
| 1003 | Redistribution and use in source and binary forms, with or without |
| 1004 | modification, are permitted provided that the following conditions |
| 1005 | are met: |
| 1006 | * Redistributions of source code must retain the above copyright |
| 1007 | notice, this list of conditions and the following disclaimer. |
| 1008 | * Redistributions in binary form must reproduce the above copyright |
| 1009 | notice, this list of conditions and the following disclaimer in |
| 1010 | the documentation and/or other materials provided with the |
| 1011 | distribution. |
| 1012 | |
| 1013 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 1014 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 1015 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 1016 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 1017 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 1018 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 1019 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 1020 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 1021 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 1022 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 1023 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1024 | SUCH DAMAGE. |
| 1025 | |
| 1026 | ------------------------------------------------------------------- |
| 1027 | |
| 1028 | Copyright (C) 2017 The Android Open Source Project |
| 1029 | All rights reserved. |
| 1030 | |
mspector | 2e3d6a1 | 2017-01-24 21:51:51 -0800 | [diff] [blame] | 1031 | Redistribution and use in source and binary forms, with or without |
| 1032 | modification, are permitted provided that the following conditions |
| 1033 | are met: |
| 1034 | * Redistributions of source code must retain the above copyright |
| 1035 | notice, this list of conditions and the following disclaimer. |
| 1036 | * Redistributions in binary form must reproduce the above copyright |
| 1037 | notice, this list of conditions and the following disclaimer in |
| 1038 | the documentation and/or other materials provided with the |
| 1039 | distribution. |
| 1040 | |
| 1041 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 1042 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 1043 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 1044 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 1045 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 1046 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 1047 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 1048 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 1049 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 1050 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 1051 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1052 | SUCH DAMAGE. |
| 1053 | |
| 1054 | ------------------------------------------------------------------- |
| 1055 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1056 | Copyright (c) 1980, 1983, 1988, 1993 |
| 1057 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1058 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1059 | Redistribution and use in source and binary forms, with or without |
| 1060 | modification, are permitted provided that the following conditions |
| 1061 | are met: |
| 1062 | 1. Redistributions of source code must retain the above copyright |
| 1063 | notice, this list of conditions and the following disclaimer. |
| 1064 | 2. Redistributions in binary form must reproduce the above copyright |
| 1065 | notice, this list of conditions and the following disclaimer in the |
| 1066 | documentation and/or other materials provided with the distribution. |
| 1067 | 3. All advertising materials mentioning features or use of this software |
| 1068 | must display the following acknowledgement: |
| 1069 | This product includes software developed by the University of |
| 1070 | California, Berkeley and its contributors. |
| 1071 | 4. Neither the name of the University nor the names of its contributors |
| 1072 | may be used to endorse or promote products derived from this software |
| 1073 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1074 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1075 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1076 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1077 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1078 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1079 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1080 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1081 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1082 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1083 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1084 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1085 | SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1086 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1087 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1088 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1089 | |
| 1090 | Permission to use, copy, modify, and distribute this software for any |
| 1091 | purpose with or without fee is hereby granted, provided that the above |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1092 | copyright notice and this permission notice appear in all copies, and that |
| 1093 | the name of Digital Equipment Corporation not be used in advertising or |
| 1094 | publicity pertaining to distribution of the document or software without |
| 1095 | specific, written prior permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1096 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1097 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1098 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1099 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1100 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1101 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1102 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1103 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1104 | SOFTWARE. |
| 1105 | |
| 1106 | ------------------------------------------------------------------- |
| 1107 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1108 | Copyright (c) 1982, 1986, 1993 |
| 1109 | The Regents of the University of California. All rights reserved. |
| 1110 | |
| 1111 | Redistribution and use in source and binary forms, with or without |
| 1112 | modification, are permitted provided that the following conditions |
| 1113 | are met: |
| 1114 | 1. Redistributions of source code must retain the above copyright |
| 1115 | notice, this list of conditions and the following disclaimer. |
| 1116 | 2. Redistributions in binary form must reproduce the above copyright |
| 1117 | notice, this list of conditions and the following disclaimer in the |
| 1118 | documentation and/or other materials provided with the distribution. |
| 1119 | 3. Neither the name of the University nor the names of its contributors |
| 1120 | may be used to endorse or promote products derived from this software |
| 1121 | without specific prior written permission. |
| 1122 | |
| 1123 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1124 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1125 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1126 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1127 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1128 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1129 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1130 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1131 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1132 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1133 | SUCH DAMAGE. |
| 1134 | |
| 1135 | ------------------------------------------------------------------- |
| 1136 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 1137 | Copyright (c) 1982, 1986, 1993 |
| 1138 | The Regents of the University of California. All rights reserved. |
| 1139 | (c) UNIX System Laboratories, Inc. |
| 1140 | All or some portions of this file are derived from material licensed |
| 1141 | to the University of California by American Telephone and Telegraph |
| 1142 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1143 | the permission of UNIX System Laboratories, Inc. |
| 1144 | |
| 1145 | Redistribution and use in source and binary forms, with or without |
| 1146 | modification, are permitted provided that the following conditions |
| 1147 | are met: |
| 1148 | 1. Redistributions of source code must retain the above copyright |
| 1149 | notice, this list of conditions and the following disclaimer. |
| 1150 | 2. Redistributions in binary form must reproduce the above copyright |
| 1151 | notice, this list of conditions and the following disclaimer in the |
| 1152 | documentation and/or other materials provided with the distribution. |
| 1153 | 3. Neither the name of the University nor the names of its contributors |
| 1154 | may be used to endorse or promote products derived from this software |
| 1155 | without specific prior written permission. |
| 1156 | |
| 1157 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1158 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1159 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1160 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1161 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1162 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1163 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1164 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1165 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1166 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1167 | SUCH DAMAGE. |
| 1168 | |
| 1169 | ------------------------------------------------------------------- |
| 1170 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1171 | Copyright (c) 1983, 1987, 1989 |
| 1172 | The Regents of the University of California. All rights reserved. |
| 1173 | |
| 1174 | Redistribution and use in source and binary forms, with or without |
| 1175 | modification, are permitted provided that the following conditions |
| 1176 | are met: |
| 1177 | 1. Redistributions of source code must retain the above copyright |
| 1178 | notice, this list of conditions and the following disclaimer. |
| 1179 | 2. Redistributions in binary form must reproduce the above copyright |
| 1180 | notice, this list of conditions and the following disclaimer in the |
| 1181 | documentation and/or other materials provided with the distribution. |
| 1182 | 3. Neither the name of the University nor the names of its contributors |
| 1183 | may be used to endorse or promote products derived from this software |
| 1184 | without specific prior written permission. |
| 1185 | |
| 1186 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1187 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1188 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1189 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1190 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1191 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1192 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1193 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1194 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1195 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1196 | SUCH DAMAGE. |
| 1197 | |
| 1198 | ------------------------------------------------------------------- |
| 1199 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1200 | Copyright (c) 1983, 1989 |
| 1201 | The Regents of the University of California. All rights reserved. |
| 1202 | |
| 1203 | Redistribution and use in source and binary forms, with or without |
| 1204 | modification, are permitted provided that the following conditions |
| 1205 | are met: |
| 1206 | 1. Redistributions of source code must retain the above copyright |
| 1207 | notice, this list of conditions and the following disclaimer. |
| 1208 | 2. Redistributions in binary form must reproduce the above copyright |
| 1209 | notice, this list of conditions and the following disclaimer in the |
| 1210 | documentation and/or other materials provided with the distribution. |
| 1211 | 3. All advertising materials mentioning features or use of this software |
| 1212 | must display the following acknowledgement: |
| 1213 | This product includes software developed by the University of |
| 1214 | California, Berkeley and its contributors. |
| 1215 | 4. Neither the name of the University nor the names of its contributors |
| 1216 | may be used to endorse or promote products derived from this software |
| 1217 | without specific prior written permission. |
| 1218 | |
| 1219 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1220 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1221 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1222 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1223 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1224 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1225 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1226 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1227 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1228 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1229 | SUCH DAMAGE. |
| 1230 | |
| 1231 | ------------------------------------------------------------------- |
| 1232 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1233 | Copyright (c) 1983, 1989, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1234 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1235 | |
| 1236 | Redistribution and use in source and binary forms, with or without |
| 1237 | modification, are permitted provided that the following conditions |
| 1238 | are met: |
| 1239 | 1. Redistributions of source code must retain the above copyright |
| 1240 | notice, this list of conditions and the following disclaimer. |
| 1241 | 2. Redistributions in binary form must reproduce the above copyright |
| 1242 | notice, this list of conditions and the following disclaimer in the |
| 1243 | documentation and/or other materials provided with the distribution. |
| 1244 | 3. Neither the name of the University nor the names of its contributors |
| 1245 | may be used to endorse or promote products derived from this software |
| 1246 | without specific prior written permission. |
| 1247 | |
| 1248 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1249 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1250 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1251 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1252 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1253 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1254 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1255 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1256 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1257 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1258 | SUCH DAMAGE. |
| 1259 | |
| 1260 | ------------------------------------------------------------------- |
| 1261 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1262 | Copyright (c) 1983, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1263 | The Regents of the University of California. All rights reserved. |
| 1264 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1265 | Redistribution and use in source and binary forms, with or without |
| 1266 | modification, are permitted provided that the following conditions |
| 1267 | are met: |
| 1268 | 1. Redistributions of source code must retain the above copyright |
| 1269 | notice, this list of conditions and the following disclaimer. |
| 1270 | 2. Redistributions in binary form must reproduce the above copyright |
| 1271 | notice, this list of conditions and the following disclaimer in the |
| 1272 | documentation and/or other materials provided with the distribution. |
| 1273 | 3. Neither the name of the University nor the names of its contributors |
| 1274 | may be used to endorse or promote products derived from this software |
| 1275 | without specific prior written permission. |
| 1276 | |
| 1277 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1278 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1279 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1280 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1281 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1282 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1283 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1284 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1285 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1286 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1287 | SUCH DAMAGE. |
| 1288 | |
| 1289 | ------------------------------------------------------------------- |
| 1290 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1291 | Copyright (c) 1983, 1993 |
| 1292 | The Regents of the University of California. All rights reserved. |
| 1293 | |
| 1294 | Redistribution and use in source and binary forms, with or without |
| 1295 | modification, are permitted provided that the following conditions |
| 1296 | are met: |
| 1297 | 1. Redistributions of source code must retain the above copyright |
| 1298 | notice, this list of conditions and the following disclaimer. |
| 1299 | 2. Redistributions in binary form must reproduce the above copyright |
| 1300 | notice, this list of conditions and the following disclaimer in the |
| 1301 | documentation and/or other materials provided with the distribution. |
| 1302 | 4. Neither the name of the University nor the names of its contributors |
| 1303 | may be used to endorse or promote products derived from this software |
| 1304 | without specific prior written permission. |
| 1305 | |
| 1306 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1307 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1308 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1309 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1310 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1311 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1312 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1313 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1314 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1315 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1316 | SUCH DAMAGE. |
| 1317 | |
| 1318 | ------------------------------------------------------------------- |
| 1319 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1320 | Copyright (c) 1985 |
| 1321 | The Regents of the University of California. All rights reserved. |
| 1322 | |
| 1323 | Redistribution and use in source and binary forms, with or without |
| 1324 | modification, are permitted provided that the following conditions |
| 1325 | are met: |
| 1326 | 1. Redistributions of source code must retain the above copyright |
| 1327 | notice, this list of conditions and the following disclaimer. |
| 1328 | 2. Redistributions in binary form must reproduce the above copyright |
| 1329 | notice, this list of conditions and the following disclaimer in the |
| 1330 | documentation and/or other materials provided with the distribution. |
| 1331 | 3. All advertising materials mentioning features or use of this software |
| 1332 | must display the following acknowledgement: |
| 1333 | This product includes software developed by the University of |
| 1334 | California, Berkeley and its contributors. |
| 1335 | 4. Neither the name of the University nor the names of its contributors |
| 1336 | may be used to endorse or promote products derived from this software |
| 1337 | without specific prior written permission. |
| 1338 | |
| 1339 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1340 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1341 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1342 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1343 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1344 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1345 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1346 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1347 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1348 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1349 | SUCH DAMAGE. |
| 1350 | |
| 1351 | ------------------------------------------------------------------- |
| 1352 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1353 | Copyright (c) 1985 Regents of the University of California. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1354 | All rights reserved. |
| 1355 | |
| 1356 | Redistribution and use in source and binary forms, with or without |
| 1357 | modification, are permitted provided that the following conditions |
| 1358 | are met: |
| 1359 | 1. Redistributions of source code must retain the above copyright |
| 1360 | notice, this list of conditions and the following disclaimer. |
| 1361 | 2. Redistributions in binary form must reproduce the above copyright |
| 1362 | notice, this list of conditions and the following disclaimer in the |
| 1363 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1364 | 3. Neither the name of the University nor the names of its contributors |
| 1365 | may be used to endorse or promote products derived from this software |
| 1366 | without specific prior written permission. |
| 1367 | |
| 1368 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1369 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1370 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1371 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1372 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1373 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1374 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1375 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1376 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1377 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1378 | SUCH DAMAGE. |
| 1379 | |
| 1380 | ------------------------------------------------------------------- |
| 1381 | |
| 1382 | Copyright (c) 1985, 1988, 1993 |
| 1383 | The Regents of the University of California. All rights reserved. |
| 1384 | |
| 1385 | Redistribution and use in source and binary forms, with or without |
| 1386 | modification, are permitted provided that the following conditions |
| 1387 | are met: |
| 1388 | 1. Redistributions of source code must retain the above copyright |
| 1389 | notice, this list of conditions and the following disclaimer. |
| 1390 | 2. Redistributions in binary form must reproduce the above copyright |
| 1391 | notice, this list of conditions and the following disclaimer in the |
| 1392 | documentation and/or other materials provided with the distribution. |
| 1393 | 3. Neither the name of the University nor the names of its contributors |
| 1394 | may be used to endorse or promote products derived from this software |
| 1395 | without specific prior written permission. |
| 1396 | |
| 1397 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1398 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1399 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1400 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1401 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1402 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1403 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1404 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1405 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1406 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1407 | SUCH DAMAGE. |
| 1408 | |
| 1409 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 1410 | |
| 1411 | Permission to use, copy, modify, and distribute this software for any |
| 1412 | purpose with or without fee is hereby granted, provided that the above |
| 1413 | copyright notice and this permission notice appear in all copies, and that |
| 1414 | the name of Digital Equipment Corporation not be used in advertising or |
| 1415 | publicity pertaining to distribution of the document or software without |
| 1416 | specific, written prior permission. |
| 1417 | |
| 1418 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1419 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1420 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1421 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1422 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1423 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1424 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1425 | SOFTWARE. |
| 1426 | |
| 1427 | ------------------------------------------------------------------- |
| 1428 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1429 | Copyright (c) 1985, 1989, 1993 |
| 1430 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1431 | |
| 1432 | Redistribution and use in source and binary forms, with or without |
| 1433 | modification, are permitted provided that the following conditions |
| 1434 | are met: |
| 1435 | 1. Redistributions of source code must retain the above copyright |
| 1436 | notice, this list of conditions and the following disclaimer. |
| 1437 | 2. Redistributions in binary form must reproduce the above copyright |
| 1438 | notice, this list of conditions and the following disclaimer in the |
| 1439 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1440 | 3. All advertising materials mentioning features or use of this software |
| 1441 | must display the following acknowledgement: |
| 1442 | This product includes software developed by the University of |
| 1443 | California, Berkeley and its contributors. |
| 1444 | 4. Neither the name of the University nor the names of its contributors |
| 1445 | may be used to endorse or promote products derived from this software |
| 1446 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1447 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1448 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1449 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1450 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1451 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1452 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1453 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1454 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1455 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1456 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1457 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1458 | SUCH DAMAGE. |
| 1459 | |
| 1460 | ------------------------------------------------------------------- |
| 1461 | |
| 1462 | Copyright (c) 1985, 1993 |
| 1463 | The Regents of the University of California. All rights reserved. |
| 1464 | |
| 1465 | Redistribution and use in source and binary forms, with or without |
| 1466 | modification, are permitted provided that the following conditions |
| 1467 | are met: |
| 1468 | 1. Redistributions of source code must retain the above copyright |
| 1469 | notice, this list of conditions and the following disclaimer. |
| 1470 | 2. Redistributions in binary form must reproduce the above copyright |
| 1471 | notice, this list of conditions and the following disclaimer in the |
| 1472 | documentation and/or other materials provided with the distribution. |
| 1473 | 3. All advertising materials mentioning features or use of this software |
| 1474 | must display the following acknowledgement: |
| 1475 | This product includes software developed by the University of |
| 1476 | California, Berkeley and its contributors. |
| 1477 | 4. Neither the name of the University nor the names of its contributors |
| 1478 | may be used to endorse or promote products derived from this software |
| 1479 | without specific prior written permission. |
| 1480 | |
| 1481 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1482 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1483 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1484 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1485 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1486 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1487 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1488 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1489 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1490 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1491 | SUCH DAMAGE. |
| 1492 | |
| 1493 | ------------------------------------------------------------------- |
| 1494 | |
| 1495 | Copyright (c) 1985, 1993 |
| 1496 | The Regents of the University of California. All rights reserved. |
| 1497 | |
| 1498 | Redistribution and use in source and binary forms, with or without |
| 1499 | modification, are permitted provided that the following conditions |
| 1500 | are met: |
| 1501 | 1. Redistributions of source code must retain the above copyright |
| 1502 | notice, this list of conditions and the following disclaimer. |
| 1503 | 2. Redistributions in binary form must reproduce the above copyright |
| 1504 | notice, this list of conditions and the following disclaimer in the |
| 1505 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 1506 | 3. All advertising materials mentioning features or use of this software |
| 1507 | must display the following acknowledgement: |
| 1508 | This product includes software developed by the University of |
| 1509 | California, Berkeley and its contributors. |
| 1510 | 4. Neither the name of the University nor the names of its contributors |
| 1511 | may be used to endorse or promote products derived from this software |
| 1512 | without specific prior written permission. |
| 1513 | |
| 1514 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1515 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1516 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1517 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1518 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1519 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1520 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1521 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1522 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1523 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1524 | SUCH DAMAGE. |
| 1525 | |
| 1526 | ------------------------------------------------------------------- |
| 1527 | |
| 1528 | Copyright (c) 1985, 1993 |
| 1529 | The Regents of the University of California. All rights reserved. |
| 1530 | |
| 1531 | Redistribution and use in source and binary forms, with or without |
| 1532 | modification, are permitted provided that the following conditions |
| 1533 | are met: |
| 1534 | 1. Redistributions of source code must retain the above copyright |
| 1535 | notice, this list of conditions and the following disclaimer. |
| 1536 | 2. Redistributions in binary form must reproduce the above copyright |
| 1537 | notice, this list of conditions and the following disclaimer in the |
| 1538 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1539 | 3. Neither the name of the University nor the names of its contributors |
| 1540 | may be used to endorse or promote products derived from this software |
| 1541 | without specific prior written permission. |
| 1542 | |
| 1543 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1544 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1545 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1546 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1547 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1548 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1549 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1550 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1551 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1552 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1553 | SUCH DAMAGE. |
| 1554 | |
| 1555 | ------------------------------------------------------------------- |
| 1556 | |
| 1557 | Copyright (c) 1987 Regents of the University of California. |
| 1558 | All rights reserved. |
| 1559 | |
| 1560 | Redistribution and use in source and binary forms, with or without |
| 1561 | modification, are permitted provided that the following conditions |
| 1562 | are met: |
| 1563 | 1. Redistributions of source code must retain the above copyright |
| 1564 | notice, this list of conditions and the following disclaimer. |
| 1565 | 2. Redistributions in binary form must reproduce the above copyright |
| 1566 | notice, this list of conditions and the following disclaimer in the |
| 1567 | documentation and/or other materials provided with the distribution. |
| 1568 | 3. Neither the name of the University nor the names of its contributors |
| 1569 | may be used to endorse or promote products derived from this software |
| 1570 | without specific prior written permission. |
| 1571 | |
| 1572 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1573 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1574 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1575 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1576 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1577 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1578 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1579 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1580 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1581 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1582 | SUCH DAMAGE. |
| 1583 | |
| 1584 | ------------------------------------------------------------------- |
| 1585 | |
| 1586 | Copyright (c) 1987, 1993 |
| 1587 | The Regents of the University of California. All rights reserved. |
| 1588 | |
| 1589 | Redistribution and use in source and binary forms, with or without |
| 1590 | modification, are permitted provided that the following conditions |
| 1591 | are met: |
| 1592 | 1. Redistributions of source code must retain the above copyright |
| 1593 | notice, this list of conditions and the following disclaimer. |
| 1594 | 2. Redistributions in binary form must reproduce the above copyright |
| 1595 | notice, this list of conditions and the following disclaimer in the |
| 1596 | documentation and/or other materials provided with the distribution. |
| 1597 | 3. All advertising materials mentioning features or use of this software |
| 1598 | must display the following acknowledgement: |
| 1599 | This product includes software developed by the University of |
| 1600 | California, Berkeley and its contributors. |
| 1601 | 4. Neither the name of the University nor the names of its contributors |
| 1602 | may be used to endorse or promote products derived from this software |
| 1603 | without specific prior written permission. |
| 1604 | |
| 1605 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1606 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1607 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1608 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1609 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1610 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1611 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1612 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1613 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1614 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1615 | SUCH DAMAGE. |
| 1616 | |
| 1617 | ------------------------------------------------------------------- |
| 1618 | |
| 1619 | Copyright (c) 1987, 1993 |
| 1620 | The Regents of the University of California. All rights reserved. |
| 1621 | |
| 1622 | Redistribution and use in source and binary forms, with or without |
| 1623 | modification, are permitted provided that the following conditions |
| 1624 | are met: |
| 1625 | 1. Redistributions of source code must retain the above copyright |
| 1626 | notice, this list of conditions and the following disclaimer. |
| 1627 | 2. Redistributions in binary form must reproduce the above copyright |
| 1628 | notice, this list of conditions and the following disclaimer in the |
| 1629 | documentation and/or other materials provided with the distribution. |
| 1630 | 3. Neither the name of the University nor the names of its contributors |
| 1631 | may be used to endorse or promote products derived from this software |
| 1632 | without specific prior written permission. |
| 1633 | |
| 1634 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1635 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1636 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1637 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1638 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1639 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1640 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1641 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1642 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1643 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1644 | SUCH DAMAGE. |
| 1645 | |
| 1646 | ------------------------------------------------------------------- |
| 1647 | |
| 1648 | Copyright (c) 1988 Regents of the University of California. |
| 1649 | All rights reserved. |
| 1650 | |
| 1651 | Redistribution and use in source and binary forms, with or without |
| 1652 | modification, are permitted provided that the following conditions |
| 1653 | are met: |
| 1654 | 1. Redistributions of source code must retain the above copyright |
| 1655 | notice, this list of conditions and the following disclaimer. |
| 1656 | 2. Redistributions in binary form must reproduce the above copyright |
| 1657 | notice, this list of conditions and the following disclaimer in the |
| 1658 | documentation and/or other materials provided with the distribution. |
| 1659 | 3. Neither the name of the University nor the names of its contributors |
| 1660 | may be used to endorse or promote products derived from this software |
| 1661 | without specific prior written permission. |
| 1662 | |
| 1663 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1664 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1665 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1666 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1667 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1668 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1669 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1670 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1671 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1672 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1673 | SUCH DAMAGE. |
| 1674 | |
| 1675 | ------------------------------------------------------------------- |
| 1676 | |
| 1677 | Copyright (c) 1988 The Regents of the University of California. |
| 1678 | All rights reserved. |
| 1679 | |
| 1680 | Redistribution and use in source and binary forms, with or without |
| 1681 | modification, are permitted provided that the following conditions |
| 1682 | are met: |
| 1683 | 1. Redistributions of source code must retain the above copyright |
| 1684 | notice, this list of conditions and the following disclaimer. |
| 1685 | 2. Redistributions in binary form must reproduce the above copyright |
| 1686 | notice, this list of conditions and the following disclaimer in the |
| 1687 | documentation and/or other materials provided with the distribution. |
| 1688 | 3. Neither the name of the University nor the names of its contributors |
| 1689 | may be used to endorse or promote products derived from this software |
| 1690 | without specific prior written permission. |
| 1691 | |
| 1692 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1693 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1694 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1695 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1696 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1697 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1698 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1699 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1700 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1701 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1702 | SUCH DAMAGE. |
| 1703 | |
| 1704 | ------------------------------------------------------------------- |
| 1705 | |
| 1706 | Copyright (c) 1988, 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1707 | The Regents of the University of California. All rights reserved. |
| 1708 | |
| 1709 | Redistribution and use in source and binary forms, with or without |
| 1710 | modification, are permitted provided that the following conditions |
| 1711 | are met: |
| 1712 | 1. Redistributions of source code must retain the above copyright |
| 1713 | notice, this list of conditions and the following disclaimer. |
| 1714 | 2. Redistributions in binary form must reproduce the above copyright |
| 1715 | notice, this list of conditions and the following disclaimer in the |
| 1716 | documentation and/or other materials provided with the distribution. |
| 1717 | 3. All advertising materials mentioning features or use of this software |
| 1718 | must display the following acknowledgement: |
| 1719 | This product includes software developed by the University of |
| 1720 | California, Berkeley and its contributors. |
| 1721 | 4. Neither the name of the University nor the names of its contributors |
| 1722 | may be used to endorse or promote products derived from this software |
| 1723 | without specific prior written permission. |
| 1724 | |
| 1725 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1726 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1727 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1728 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1729 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1730 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1731 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1732 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1733 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1734 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1735 | SUCH DAMAGE. |
| 1736 | |
| 1737 | ------------------------------------------------------------------- |
| 1738 | |
| 1739 | Copyright (c) 1988, 1993 |
| 1740 | The Regents of the University of California. All rights reserved. |
| 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. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 1750 | 3. All advertising materials mentioning features or use of this software |
| 1751 | must display the following acknowledgement: |
| 1752 | This product includes software developed by the University of |
| 1753 | California, Berkeley and its contributors. |
| 1754 | 4. Neither the name of the University nor the names of its contributors |
| 1755 | may be used to endorse or promote products derived from this software |
| 1756 | without specific prior written permission. |
| 1757 | |
| 1758 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1759 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1760 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1761 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1762 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1763 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1764 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1765 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1766 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1767 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1768 | SUCH DAMAGE. |
| 1769 | |
| 1770 | ------------------------------------------------------------------- |
| 1771 | |
| 1772 | Copyright (c) 1988, 1993 |
| 1773 | The Regents of the University of California. All rights reserved. |
| 1774 | |
| 1775 | Redistribution and use in source and binary forms, with or without |
| 1776 | modification, are permitted provided that the following conditions |
| 1777 | are met: |
| 1778 | 1. Redistributions of source code must retain the above copyright |
| 1779 | notice, this list of conditions and the following disclaimer. |
| 1780 | 2. Redistributions in binary form must reproduce the above copyright |
| 1781 | notice, this list of conditions and the following disclaimer in the |
| 1782 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1783 | 3. Neither the name of the University nor the names of its contributors |
| 1784 | may be used to endorse or promote products derived from this software |
| 1785 | without specific prior written permission. |
| 1786 | |
| 1787 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1788 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1789 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1790 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1791 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1792 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1793 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1794 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1795 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1796 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1797 | SUCH DAMAGE. |
| 1798 | |
| 1799 | ------------------------------------------------------------------- |
| 1800 | |
| 1801 | Copyright (c) 1988, 1993 |
| 1802 | The Regents of the University of California. All rights reserved. |
| 1803 | |
| 1804 | This code is derived from software written by Ken Arnold and |
| 1805 | published in UNIX Review, Vol. 6, No. 8. |
| 1806 | |
| 1807 | Redistribution and use in source and binary forms, with or without |
| 1808 | modification, are permitted provided that the following conditions |
| 1809 | are met: |
| 1810 | 1. Redistributions of source code must retain the above copyright |
| 1811 | notice, this list of conditions and the following disclaimer. |
| 1812 | 2. Redistributions in binary form must reproduce the above copyright |
| 1813 | notice, this list of conditions and the following disclaimer in the |
| 1814 | documentation and/or other materials provided with the distribution. |
| 1815 | 3. Neither the name of the University nor the names of its contributors |
| 1816 | may be used to endorse or promote products derived from this software |
| 1817 | without specific prior written permission. |
| 1818 | |
| 1819 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1820 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1821 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1822 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1823 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1824 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1825 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1826 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1827 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1828 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1829 | SUCH DAMAGE. |
| 1830 | |
| 1831 | ------------------------------------------------------------------- |
| 1832 | |
| 1833 | Copyright (c) 1989 The Regents of the University of California. |
| 1834 | All rights reserved. |
| 1835 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1836 | Redistribution and use in source and binary forms, with or without |
| 1837 | modification, are permitted provided that the following conditions |
| 1838 | are met: |
| 1839 | 1. Redistributions of source code must retain the above copyright |
| 1840 | notice, this list of conditions and the following disclaimer. |
| 1841 | 2. Redistributions in binary form must reproduce the above copyright |
| 1842 | notice, this list of conditions and the following disclaimer in the |
| 1843 | documentation and/or other materials provided with the distribution. |
| 1844 | 3. Neither the name of the University nor the names of its contributors |
| 1845 | may be used to endorse or promote products derived from this software |
| 1846 | without specific prior written permission. |
| 1847 | |
| 1848 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1849 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1850 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1851 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1852 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1853 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1854 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1855 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1856 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1857 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1858 | SUCH DAMAGE. |
| 1859 | |
| 1860 | ------------------------------------------------------------------- |
| 1861 | |
| 1862 | Copyright (c) 1989 The Regents of the University of California. |
| 1863 | All rights reserved. |
| 1864 | (c) UNIX System Laboratories, Inc. |
| 1865 | All or some portions of this file are derived from material licensed |
| 1866 | to the University of California by American Telephone and Telegraph |
| 1867 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1868 | the permission of UNIX System Laboratories, Inc. |
| 1869 | |
| 1870 | Redistribution and use in source and binary forms, with or without |
| 1871 | modification, are permitted provided that the following conditions |
| 1872 | are met: |
| 1873 | 1. Redistributions of source code must retain the above copyright |
| 1874 | notice, this list of conditions and the following disclaimer. |
| 1875 | 2. Redistributions in binary form must reproduce the above copyright |
| 1876 | notice, this list of conditions and the following disclaimer in the |
| 1877 | documentation and/or other materials provided with the distribution. |
| 1878 | 3. Neither the name of the University nor the names of its contributors |
| 1879 | may be used to endorse or promote products derived from this software |
| 1880 | without specific prior written permission. |
| 1881 | |
| 1882 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1883 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1884 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1885 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1886 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1887 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1888 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1889 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1890 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1891 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1892 | SUCH DAMAGE. |
| 1893 | |
| 1894 | ------------------------------------------------------------------- |
| 1895 | |
| 1896 | Copyright (c) 1989, 1993 |
| 1897 | The Regents of the University of California. All rights reserved. |
| 1898 | |
| 1899 | Redistribution and use in source and binary forms, with or without |
| 1900 | modification, are permitted provided that the following conditions |
| 1901 | are met: |
| 1902 | 1. Redistributions of source code must retain the above copyright |
| 1903 | notice, this list of conditions and the following disclaimer. |
| 1904 | 2. Redistributions in binary form must reproduce the above copyright |
| 1905 | notice, this list of conditions and the following disclaimer in the |
| 1906 | documentation and/or other materials provided with the distribution. |
| 1907 | 3. Neither the name of the University nor the names of its contributors |
| 1908 | may be used to endorse or promote products derived from this software |
| 1909 | without specific prior written permission. |
| 1910 | |
| 1911 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1912 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1913 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1914 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1915 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1916 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1917 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1918 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1919 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1920 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1921 | SUCH DAMAGE. |
| 1922 | |
| 1923 | ------------------------------------------------------------------- |
| 1924 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1925 | Copyright (c) 1989, 1993 |
| 1926 | The Regents of the University of California. All rights reserved. |
| 1927 | |
| 1928 | Redistribution and use in source and binary forms, with or without |
| 1929 | modification, are permitted provided that the following conditions |
| 1930 | are met: |
| 1931 | 1. Redistributions of source code must retain the above copyright |
| 1932 | notice, this list of conditions and the following disclaimer. |
| 1933 | 2. Redistributions in binary form must reproduce the above copyright |
| 1934 | notice, this list of conditions and the following disclaimer in the |
| 1935 | documentation and/or other materials provided with the distribution. |
| 1936 | 4. Neither the name of the University nor the names of its contributors |
| 1937 | may be used to endorse or promote products derived from this software |
| 1938 | without specific prior written permission. |
| 1939 | |
| 1940 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1941 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1942 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1943 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1944 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1945 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1946 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1947 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1948 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1949 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1950 | SUCH DAMAGE. |
| 1951 | |
| 1952 | ------------------------------------------------------------------- |
| 1953 | |
| 1954 | Copyright (c) 1989, 1993 |
| 1955 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 1956 | |
| 1957 | This code is derived from software contributed to Berkeley by |
| 1958 | Roger L. Snyder. |
| 1959 | |
| 1960 | Redistribution and use in source and binary forms, with or without |
| 1961 | modification, are permitted provided that the following conditions |
| 1962 | are met: |
| 1963 | 1. Redistributions of source code must retain the above copyright |
| 1964 | notice, this list of conditions and the following disclaimer. |
| 1965 | 2. Redistributions in binary form must reproduce the above copyright |
| 1966 | notice, this list of conditions and the following disclaimer in the |
| 1967 | documentation and/or other materials provided with the distribution. |
| 1968 | 3. Neither the name of the University nor the names of its contributors |
| 1969 | may be used to endorse or promote products derived from this software |
| 1970 | without specific prior written permission. |
| 1971 | |
| 1972 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1973 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1974 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1975 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1976 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1977 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1978 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1979 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1980 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1981 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1982 | SUCH DAMAGE. |
| 1983 | |
| 1984 | ------------------------------------------------------------------- |
| 1985 | |
| 1986 | Copyright (c) 1989, 1993 |
| 1987 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1988 | (c) UNIX System Laboratories, Inc. |
| 1989 | All or some portions of this file are derived from material licensed |
| 1990 | to the University of California by American Telephone and Telegraph |
| 1991 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1992 | the permission of UNIX System Laboratories, Inc. |
| 1993 | |
| 1994 | Redistribution and use in source and binary forms, with or without |
| 1995 | modification, are permitted provided that the following conditions |
| 1996 | are met: |
| 1997 | 1. Redistributions of source code must retain the above copyright |
| 1998 | notice, this list of conditions and the following disclaimer. |
| 1999 | 2. Redistributions in binary form must reproduce the above copyright |
| 2000 | notice, this list of conditions and the following disclaimer in the |
| 2001 | documentation and/or other materials provided with the distribution. |
| 2002 | 3. Neither the name of the University nor the names of its contributors |
| 2003 | may be used to endorse or promote products derived from this software |
| 2004 | without specific prior written permission. |
| 2005 | |
| 2006 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2007 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2008 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2009 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2010 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2011 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2012 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2013 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2014 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2015 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2016 | SUCH DAMAGE. |
| 2017 | |
| 2018 | ------------------------------------------------------------------- |
| 2019 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 2020 | Copyright (c) 1990 Regents of the University of California. |
| 2021 | All rights reserved. |
| 2022 | |
| 2023 | This code is derived from software contributed to Berkeley by |
| 2024 | Chris Torek. |
| 2025 | |
| 2026 | Redistribution and use in source and binary forms, with or without |
| 2027 | modification, are permitted provided that the following conditions |
| 2028 | are met: |
| 2029 | 1. Redistributions of source code must retain the above copyright |
| 2030 | notice, this list of conditions and the following disclaimer. |
| 2031 | 2. Redistributions in binary form must reproduce the above copyright |
| 2032 | notice, this list of conditions and the following disclaimer in the |
| 2033 | documentation and/or other materials provided with the distribution. |
| 2034 | 3. Neither the name of the University nor the names of its contributors |
| 2035 | may be used to endorse or promote products derived from this software |
| 2036 | without specific prior written permission. |
| 2037 | |
| 2038 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2039 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2040 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2041 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2042 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2043 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2044 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2045 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2046 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2047 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2048 | SUCH DAMAGE. |
| 2049 | |
| 2050 | ------------------------------------------------------------------- |
| 2051 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2052 | Copyright (c) 1990 The Regents of the University of California. |
| 2053 | All rights reserved. |
| 2054 | |
| 2055 | Redistribution and use in source and binary forms, with or without |
| 2056 | modification, are permitted provided that the following conditions |
| 2057 | are met: |
| 2058 | 1. Redistributions of source code must retain the above copyright |
| 2059 | notice, this list of conditions and the following disclaimer. |
| 2060 | 2. Redistributions in binary form must reproduce the above copyright |
| 2061 | notice, this list of conditions and the following disclaimer in the |
| 2062 | documentation and/or other materials provided with the distribution. |
| 2063 | 3. Neither the name of the University nor the names of its contributors |
| 2064 | may be used to endorse or promote products derived from this software |
| 2065 | without specific prior written permission. |
| 2066 | |
| 2067 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2068 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2069 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2070 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2071 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2072 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2073 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2074 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2075 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2076 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2077 | SUCH DAMAGE. |
| 2078 | |
| 2079 | ------------------------------------------------------------------- |
| 2080 | |
| 2081 | Copyright (c) 1990 The Regents of the University of California. |
| 2082 | All rights reserved. |
| 2083 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2084 | This code is derived from software contributed to Berkeley by |
| 2085 | Chris Torek. |
| 2086 | |
| 2087 | Redistribution and use in source and binary forms, with or without |
| 2088 | modification, are permitted provided that the following conditions |
| 2089 | are met: |
| 2090 | 1. Redistributions of source code must retain the above copyright |
| 2091 | notice, this list of conditions and the following disclaimer. |
| 2092 | 2. Redistributions in binary form must reproduce the above copyright |
| 2093 | notice, this list of conditions and the following disclaimer in the |
| 2094 | documentation and/or other materials provided with the distribution. |
| 2095 | 3. Neither the name of the University nor the names of its contributors |
| 2096 | may be used to endorse or promote products derived from this software |
| 2097 | without specific prior written permission. |
| 2098 | |
| 2099 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2100 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2101 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2102 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2103 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2104 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2105 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2106 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2107 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2108 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2109 | SUCH DAMAGE. |
| 2110 | |
| 2111 | ------------------------------------------------------------------- |
| 2112 | |
| 2113 | Copyright (c) 1990 The Regents of the University of California. |
| 2114 | All rights reserved. |
| 2115 | |
| 2116 | This code is derived from software contributed to Berkeley by |
| 2117 | William Jolitz. |
| 2118 | |
| 2119 | Redistribution and use in source and binary forms, with or without |
| 2120 | modification, are permitted provided that the following conditions |
| 2121 | are met: |
| 2122 | 1. Redistributions of source code must retain the above copyright |
| 2123 | notice, this list of conditions and the following disclaimer. |
| 2124 | 2. Redistributions in binary form must reproduce the above copyright |
| 2125 | notice, this list of conditions and the following disclaimer in the |
| 2126 | documentation and/or other materials provided with the distribution. |
| 2127 | 3. Neither the name of the University nor the names of its contributors |
| 2128 | may be used to endorse or promote products derived from this software |
| 2129 | without specific prior written permission. |
| 2130 | |
| 2131 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2132 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2133 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2134 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2135 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2136 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2137 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2138 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2139 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2140 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2141 | SUCH DAMAGE. |
| 2142 | |
| 2143 | ------------------------------------------------------------------- |
| 2144 | |
| 2145 | Copyright (c) 1990, 1993 |
| 2146 | The Regents of the University of California. All rights reserved. |
| 2147 | |
| 2148 | Redistribution and use in source and binary forms, with or without |
| 2149 | modification, are permitted provided that the following conditions |
| 2150 | are met: |
| 2151 | 1. Redistributions of source code must retain the above copyright |
| 2152 | notice, this list of conditions and the following disclaimer. |
| 2153 | 2. Redistributions in binary form must reproduce the above copyright |
| 2154 | notice, this list of conditions and the following disclaimer in the |
| 2155 | documentation and/or other materials provided with the distribution. |
| 2156 | 3. Neither the name of the University nor the names of its contributors |
| 2157 | may be used to endorse or promote products derived from this software |
| 2158 | without specific prior written permission. |
| 2159 | |
| 2160 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2161 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2162 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2163 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2164 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2165 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2166 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2167 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2168 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2169 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2170 | SUCH DAMAGE. |
| 2171 | |
| 2172 | ------------------------------------------------------------------- |
| 2173 | |
| 2174 | Copyright (c) 1990, 1993 |
| 2175 | The Regents of the University of California. All rights reserved. |
| 2176 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2177 | This code is derived from software contributed to Berkeley by |
| 2178 | Chris Torek. |
| 2179 | |
| 2180 | Redistribution and use in source and binary forms, with or without |
| 2181 | modification, are permitted provided that the following conditions |
| 2182 | are met: |
| 2183 | 1. Redistributions of source code must retain the above copyright |
| 2184 | notice, this list of conditions and the following disclaimer. |
| 2185 | 2. Redistributions in binary form must reproduce the above copyright |
| 2186 | notice, this list of conditions and the following disclaimer in the |
| 2187 | documentation and/or other materials provided with the distribution. |
| 2188 | 3. Neither the name of the University nor the names of its contributors |
| 2189 | may be used to endorse or promote products derived from this software |
| 2190 | without specific prior written permission. |
| 2191 | |
| 2192 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2193 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2194 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2195 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2196 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2197 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2198 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2199 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2200 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2201 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2202 | SUCH DAMAGE. |
| 2203 | |
| 2204 | ------------------------------------------------------------------- |
| 2205 | |
| 2206 | Copyright (c) 1990, 1993 |
| 2207 | The Regents of the University of California. All rights reserved. |
| 2208 | |
| 2209 | This code is derived from software contributed to Berkeley by |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2210 | Donn Seeley at UUNET Technologies, Inc. |
| 2211 | |
| 2212 | Redistribution and use in source and binary forms, with or without |
| 2213 | modification, are permitted provided that the following conditions |
| 2214 | are met: |
| 2215 | 1. Redistributions of source code must retain the above copyright |
| 2216 | notice, this list of conditions and the following disclaimer. |
| 2217 | 2. Redistributions in binary form must reproduce the above copyright |
| 2218 | notice, this list of conditions and the following disclaimer in the |
| 2219 | documentation and/or other materials provided with the distribution. |
| 2220 | 3. Neither the name of the University nor the names of its contributors |
| 2221 | may be used to endorse or promote products derived from this software |
| 2222 | without specific prior written permission. |
| 2223 | |
| 2224 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2225 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2226 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2227 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2228 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2229 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2230 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2231 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2232 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2233 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2234 | SUCH DAMAGE. |
| 2235 | |
| 2236 | ------------------------------------------------------------------- |
| 2237 | |
| 2238 | Copyright (c) 1990, 1993 |
| 2239 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2240 | |
| 2241 | This code is derived from software contributed to Berkeley by |
| 2242 | Donn Seeley at UUNET Technologies, Inc. |
| 2243 | |
| 2244 | Redistribution and use in source and binary forms, with or without |
| 2245 | modification, are permitted provided that the following conditions |
| 2246 | are met: |
| 2247 | 1. Redistributions of source code must retain the above copyright |
| 2248 | notice, this list of conditions and the following disclaimer. |
| 2249 | 2. Redistributions in binary form must reproduce the above copyright |
| 2250 | notice, this list of conditions and the following disclaimer in the |
| 2251 | documentation and/or other materials provided with the distribution. |
| 2252 | 4. Neither the name of the University nor the names of its contributors |
| 2253 | may be used to endorse or promote products derived from this software |
| 2254 | without specific prior written permission. |
| 2255 | |
| 2256 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2257 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2258 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2259 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2260 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2261 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2262 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2263 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2264 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2265 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2266 | SUCH DAMAGE. |
| 2267 | |
| 2268 | ------------------------------------------------------------------- |
| 2269 | |
| 2270 | Copyright (c) 1990, 1993 |
| 2271 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2272 | (c) UNIX System Laboratories, Inc. |
| 2273 | All or some portions of this file are derived from material licensed |
| 2274 | to the University of California by American Telephone and Telegraph |
| 2275 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2276 | the permission of UNIX System Laboratories, Inc. |
| 2277 | |
| 2278 | Redistribution and use in source and binary forms, with or without |
| 2279 | modification, are permitted provided that the following conditions |
| 2280 | are met: |
| 2281 | 1. Redistributions of source code must retain the above copyright |
| 2282 | notice, this list of conditions and the following disclaimer. |
| 2283 | 2. Redistributions in binary form must reproduce the above copyright |
| 2284 | notice, this list of conditions and the following disclaimer in the |
| 2285 | documentation and/or other materials provided with the distribution. |
| 2286 | 3. Neither the name of the University nor the names of its contributors |
| 2287 | may be used to endorse or promote products derived from this software |
| 2288 | without specific prior written permission. |
| 2289 | |
| 2290 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2291 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2292 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2293 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2294 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2295 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2296 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2297 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2298 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2299 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2300 | SUCH DAMAGE. |
| 2301 | |
| 2302 | ------------------------------------------------------------------- |
| 2303 | |
| 2304 | Copyright (c) 1990, 1993, 1994 |
| 2305 | The Regents of the University of California. All rights reserved. |
| 2306 | |
| 2307 | Redistribution and use in source and binary forms, with or without |
| 2308 | modification, are permitted provided that the following conditions |
| 2309 | are met: |
| 2310 | 1. Redistributions of source code must retain the above copyright |
| 2311 | notice, this list of conditions and the following disclaimer. |
| 2312 | 2. Redistributions in binary form must reproduce the above copyright |
| 2313 | notice, this list of conditions and the following disclaimer in the |
| 2314 | documentation and/or other materials provided with the distribution. |
| 2315 | 3. Neither the name of the University nor the names of its contributors |
| 2316 | may be used to endorse or promote products derived from this software |
| 2317 | without specific prior written permission. |
| 2318 | |
| 2319 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2320 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2321 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2322 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2323 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2324 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2325 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2326 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2327 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2328 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2329 | SUCH DAMAGE. |
| 2330 | |
| 2331 | ------------------------------------------------------------------- |
| 2332 | |
| 2333 | Copyright (c) 1990, 1993, 1994 |
| 2334 | The Regents of the University of California. All rights reserved. |
| 2335 | |
| 2336 | This code is derived from software contributed to Berkeley by |
| 2337 | Chris Torek. |
| 2338 | |
| 2339 | Redistribution and use in source and binary forms, with or without |
| 2340 | modification, are permitted provided that the following conditions |
| 2341 | are met: |
| 2342 | 1. Redistributions of source code must retain the above copyright |
| 2343 | notice, this list of conditions and the following disclaimer. |
| 2344 | 2. Redistributions in binary form must reproduce the above copyright |
| 2345 | notice, this list of conditions and the following disclaimer in the |
| 2346 | documentation and/or other materials provided with the distribution. |
| 2347 | 3. Neither the name of the University nor the names of its contributors |
| 2348 | may be used to endorse or promote products derived from this software |
| 2349 | without specific prior written permission. |
| 2350 | |
| 2351 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2352 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2353 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2354 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2355 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2356 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2357 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2358 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2359 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2360 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2361 | SUCH DAMAGE. |
| 2362 | |
| 2363 | ------------------------------------------------------------------- |
| 2364 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2365 | Copyright (c) 1991 The Regents of the University of California. |
| 2366 | All rights reserved. |
| 2367 | |
| 2368 | Redistribution and use in source and binary forms, with or without |
| 2369 | modification, are permitted provided that the following conditions |
| 2370 | are met: |
| 2371 | 1. Redistributions of source code must retain the above copyright |
| 2372 | notice, this list of conditions and the following disclaimer. |
| 2373 | 2. Redistributions in binary form must reproduce the above copyright |
| 2374 | notice, this list of conditions and the following disclaimer in the |
| 2375 | documentation and/or other materials provided with the distribution. |
| 2376 | 3. Neither the name of the University nor the names of its contributors |
| 2377 | may be used to endorse or promote products derived from this software |
| 2378 | without specific prior written permission. |
| 2379 | |
| 2380 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2381 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2382 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2383 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2384 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2385 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2386 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2387 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2388 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2389 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2390 | SUCH DAMAGE. |
| 2391 | |
| 2392 | ------------------------------------------------------------------- |
| 2393 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2394 | Copyright (c) 1991, 1993 |
| 2395 | The Regents of the University of California. All rights reserved. |
| 2396 | |
| 2397 | Redistribution and use in source and binary forms, with or without |
| 2398 | modification, are permitted provided that the following conditions |
| 2399 | are met: |
| 2400 | 1. Redistributions of source code must retain the above copyright |
| 2401 | notice, this list of conditions and the following disclaimer. |
| 2402 | 2. Redistributions in binary form must reproduce the above copyright |
| 2403 | notice, this list of conditions and the following disclaimer in the |
| 2404 | documentation and/or other materials provided with the distribution. |
| 2405 | 3. Neither the name of the University nor the names of its contributors |
| 2406 | may be used to endorse or promote products derived from this software |
| 2407 | without specific prior written permission. |
| 2408 | |
| 2409 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2410 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2411 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2412 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2413 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2414 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2415 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2416 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2417 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2418 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2419 | SUCH DAMAGE. |
| 2420 | |
| 2421 | ------------------------------------------------------------------- |
| 2422 | |
| 2423 | Copyright (c) 1991, 1993 |
| 2424 | The Regents of the University of California. All rights reserved. |
| 2425 | |
| 2426 | This code is derived from software contributed to Berkeley by |
| 2427 | Berkeley Software Design, Inc. |
| 2428 | |
| 2429 | Redistribution and use in source and binary forms, with or without |
| 2430 | modification, are permitted provided that the following conditions |
| 2431 | are met: |
| 2432 | 1. Redistributions of source code must retain the above copyright |
| 2433 | notice, this list of conditions and the following disclaimer. |
| 2434 | 2. Redistributions in binary form must reproduce the above copyright |
| 2435 | notice, this list of conditions and the following disclaimer in the |
| 2436 | documentation and/or other materials provided with the distribution. |
| 2437 | 3. Neither the name of the University nor the names of its contributors |
| 2438 | may be used to endorse or promote products derived from this software |
| 2439 | without specific prior written permission. |
| 2440 | |
| 2441 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2442 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2443 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2444 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2445 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2446 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2447 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2448 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2449 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2450 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2451 | SUCH DAMAGE. |
| 2452 | |
| 2453 | ------------------------------------------------------------------- |
| 2454 | |
| 2455 | Copyright (c) 1991, 1993 |
| 2456 | The Regents of the University of California. All rights reserved. |
| 2457 | (c) UNIX System Laboratories, Inc. |
| 2458 | All or some portions of this file are derived from material licensed |
| 2459 | to the University of California by American Telephone and Telegraph |
| 2460 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2461 | the permission of UNIX System Laboratories, Inc. |
| 2462 | |
| 2463 | This code is derived from software contributed to Berkeley by |
| 2464 | Hugh Smith at The University of Guelph. |
| 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) 1991, 1993, 1995, |
| 2493 | The Regents of the University of California. All rights reserved. |
| 2494 | |
| 2495 | This code is derived from software contributed to Berkeley by |
| 2496 | Havard Eidnes. |
| 2497 | |
| 2498 | Redistribution and use in source and binary forms, with or without |
| 2499 | modification, are permitted provided that the following conditions |
| 2500 | are met: |
| 2501 | 1. Redistributions of source code must retain the above copyright |
| 2502 | notice, this list of conditions and the following disclaimer. |
| 2503 | 2. Redistributions in binary form must reproduce the above copyright |
| 2504 | notice, this list of conditions and the following disclaimer in the |
| 2505 | documentation and/or other materials provided with the distribution. |
| 2506 | 3. Neither the name of the University nor the names of its contributors |
| 2507 | may be used to endorse or promote products derived from this software |
| 2508 | without specific prior written permission. |
| 2509 | |
| 2510 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2511 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2512 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2513 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2514 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2515 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2516 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2517 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2518 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2519 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2520 | SUCH DAMAGE. |
| 2521 | |
| 2522 | ------------------------------------------------------------------- |
| 2523 | |
| 2524 | Copyright (c) 1992 Henry Spencer. |
| 2525 | Copyright (c) 1992, 1993 |
| 2526 | The Regents of the University of California. All rights reserved. |
| 2527 | |
| 2528 | This code is derived from software contributed to Berkeley by |
| 2529 | Henry Spencer of the University of Toronto. |
| 2530 | |
| 2531 | Redistribution and use in source and binary forms, with or without |
| 2532 | modification, are permitted provided that the following conditions |
| 2533 | are met: |
| 2534 | 1. Redistributions of source code must retain the above copyright |
| 2535 | notice, this list of conditions and the following disclaimer. |
| 2536 | 2. Redistributions in binary form must reproduce the above copyright |
| 2537 | notice, this list of conditions and the following disclaimer in the |
| 2538 | documentation and/or other materials provided with the distribution. |
| 2539 | 3. Neither the name of the University nor the names of its contributors |
| 2540 | may be used to endorse or promote products derived from this software |
| 2541 | without specific prior written permission. |
| 2542 | |
| 2543 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2544 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2545 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2546 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2547 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2548 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2549 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2550 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2551 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2552 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2553 | SUCH DAMAGE. |
| 2554 | |
| 2555 | ------------------------------------------------------------------- |
| 2556 | |
| 2557 | Copyright (c) 1992 The Regents of the University of California. |
| 2558 | All rights reserved. |
| 2559 | |
| 2560 | Redistribution and use in source and binary forms, with or without |
| 2561 | modification, are permitted provided that the following conditions |
| 2562 | are met: |
| 2563 | 1. Redistributions of source code must retain the above copyright |
| 2564 | notice, this list of conditions and the following disclaimer. |
| 2565 | 2. Redistributions in binary form must reproduce the above copyright |
| 2566 | notice, this list of conditions and the following disclaimer in the |
| 2567 | documentation and/or other materials provided with the distribution. |
| 2568 | 3. Neither the name of the University nor the names of its contributors |
| 2569 | may be used to endorse or promote products derived from this software |
| 2570 | without specific prior written permission. |
| 2571 | |
| 2572 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2573 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2574 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2575 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2576 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2577 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2578 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2579 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2580 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2581 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2582 | SUCH DAMAGE. |
| 2583 | |
| 2584 | ------------------------------------------------------------------- |
| 2585 | |
| 2586 | Copyright (c) 1992, 1993 |
| 2587 | The Regents of the University of California. All rights reserved. |
| 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. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 2597 | 3. All advertising materials mentioning features or use of this software |
| 2598 | must display the following acknowledgement: |
| 2599 | This product includes software developed by the University of |
| 2600 | California, Berkeley and its contributors. |
| 2601 | 4. Neither the name of the University nor the names of its contributors |
| 2602 | may be used to endorse or promote products derived from this software |
| 2603 | without specific prior written permission. |
| 2604 | |
| 2605 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2606 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2607 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2608 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2609 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2610 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2611 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2612 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2613 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2614 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2615 | SUCH DAMAGE. |
| 2616 | |
| 2617 | ------------------------------------------------------------------- |
| 2618 | |
| 2619 | Copyright (c) 1992, 1993 |
| 2620 | The Regents of the University of California. All rights reserved. |
| 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. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 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 code is derived from software contributed to Berkeley by |
| 2652 | Ralph Campbell. |
| 2653 | |
| 2654 | Redistribution and use in source and binary forms, with or without |
| 2655 | modification, are permitted provided that the following conditions |
| 2656 | are met: |
| 2657 | 1. Redistributions of source code must retain the above copyright |
| 2658 | notice, this list of conditions and the following disclaimer. |
| 2659 | 2. Redistributions in binary form must reproduce the above copyright |
| 2660 | notice, this list of conditions and the following disclaimer in the |
| 2661 | documentation and/or other materials provided with the distribution. |
| 2662 | 3. Neither the name of the University nor the names of its contributors |
| 2663 | may be used to endorse or promote products derived from this software |
| 2664 | without specific prior written permission. |
| 2665 | |
| 2666 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2667 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2668 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2669 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2670 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2671 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2672 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2673 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2674 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2675 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2676 | SUCH DAMAGE. |
| 2677 | |
| 2678 | ------------------------------------------------------------------- |
| 2679 | |
| 2680 | Copyright (c) 1992, 1993 |
| 2681 | The Regents of the University of California. All rights reserved. |
| 2682 | |
| 2683 | This code is derived from software contributed to Berkeley by |
| 2684 | Ralph Campbell. This file is derived from the MIPS RISC |
| 2685 | Architecture book by Gerry Kane. |
| 2686 | |
| 2687 | Redistribution and use in source and binary forms, with or without |
| 2688 | modification, are permitted provided that the following conditions |
| 2689 | are met: |
| 2690 | 1. Redistributions of source code must retain the above copyright |
| 2691 | notice, this list of conditions and the following disclaimer. |
| 2692 | 2. Redistributions in binary form must reproduce the above copyright |
| 2693 | notice, this list of conditions and the following disclaimer in the |
| 2694 | documentation and/or other materials provided with the distribution. |
| 2695 | 3. Neither the name of the University nor the names of its contributors |
| 2696 | may be used to endorse or promote products derived from this software |
| 2697 | without specific prior written permission. |
| 2698 | |
| 2699 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2700 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2701 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2702 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2703 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2704 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2705 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2706 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2707 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2708 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2709 | SUCH DAMAGE. |
| 2710 | |
| 2711 | ------------------------------------------------------------------- |
| 2712 | |
| 2713 | Copyright (c) 1992, 1993 |
| 2714 | The Regents of the University of California. All rights reserved. |
| 2715 | |
| 2716 | This software was developed by the Computer Systems Engineering group |
| 2717 | at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and |
| 2718 | contributed to Berkeley. |
| 2719 | |
| 2720 | All advertising materials mentioning features or use of this software |
| 2721 | must display the following acknowledgement: |
| 2722 | This product includes software developed by the University of |
| 2723 | California, Lawrence Berkeley Laboratory. |
| 2724 | |
| 2725 | Redistribution and use in source and binary forms, with or without |
| 2726 | modification, are permitted provided that the following conditions |
| 2727 | are met: |
| 2728 | 1. Redistributions of source code must retain the above copyright |
| 2729 | notice, this list of conditions and the following disclaimer. |
| 2730 | 2. Redistributions in binary form must reproduce the above copyright |
| 2731 | notice, this list of conditions and the following disclaimer in the |
| 2732 | documentation and/or other materials provided with the distribution. |
| 2733 | 3. All advertising materials mentioning features or use of this software |
| 2734 | must display the following acknowledgement: |
| 2735 | This product includes software developed by the University of |
| 2736 | California, Berkeley and its contributors. |
| 2737 | 4. Neither the name of the University nor the names of its contributors |
| 2738 | may be used to endorse or promote products derived from this software |
| 2739 | without specific prior written permission. |
| 2740 | |
| 2741 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2742 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2743 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2744 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2745 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2746 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2747 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2748 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2749 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2750 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2751 | SUCH DAMAGE. |
| 2752 | |
| 2753 | ------------------------------------------------------------------- |
| 2754 | |
| 2755 | Copyright (c) 1992, 1993 |
| 2756 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2757 | (c) UNIX System Laboratories, Inc. |
| 2758 | All or some portions of this file are derived from material licensed |
| 2759 | to the University of California by American Telephone and Telegraph |
| 2760 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2761 | the permission of UNIX System Laboratories, Inc. |
| 2762 | |
| 2763 | Redistribution and use in source and binary forms, with or without |
| 2764 | modification, are permitted provided that the following conditions |
| 2765 | are met: |
| 2766 | 1. Redistributions of source code must retain the above copyright |
| 2767 | notice, this list of conditions and the following disclaimer. |
| 2768 | 2. Redistributions in binary form must reproduce the above copyright |
| 2769 | notice, this list of conditions and the following disclaimer in the |
| 2770 | documentation and/or other materials provided with the distribution. |
| 2771 | 3. Neither the name of the University nor the names of its contributors |
| 2772 | may be used to endorse or promote products derived from this software |
| 2773 | without specific prior written permission. |
| 2774 | |
| 2775 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2776 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2777 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2778 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2779 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2780 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2781 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2782 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2783 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2784 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2785 | SUCH DAMAGE. |
| 2786 | |
| 2787 | ------------------------------------------------------------------- |
| 2788 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2789 | Copyright (c) 1992, 1993, 1994 |
| 2790 | The Regents of the University of California. All rights reserved. |
| 2791 | |
| 2792 | This code is derived from software contributed to Berkeley by |
| 2793 | Henry Spencer. |
| 2794 | |
| 2795 | Redistribution and use in source and binary forms, with or without |
| 2796 | modification, are permitted provided that the following conditions |
| 2797 | are met: |
| 2798 | 1. Redistributions of source code must retain the above copyright |
| 2799 | notice, this list of conditions and the following disclaimer. |
| 2800 | 2. Redistributions in binary form must reproduce the above copyright |
| 2801 | notice, this list of conditions and the following disclaimer in the |
| 2802 | documentation and/or other materials provided with the distribution. |
| 2803 | 3. Neither the name of the University nor the names of its contributors |
| 2804 | may be used to endorse or promote products derived from this software |
| 2805 | without specific prior written permission. |
| 2806 | |
| 2807 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2808 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2809 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2810 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2811 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2812 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2813 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2814 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2815 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2816 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2817 | SUCH DAMAGE. |
| 2818 | |
| 2819 | ------------------------------------------------------------------- |
| 2820 | |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 2821 | Copyright (c) 1992, 1993, 1994 Henry Spencer. |
| 2822 | |
| 2823 | This code is derived from software contributed to Berkeley by |
| 2824 | Henry Spencer. |
| 2825 | |
| 2826 | Redistribution and use in source and binary forms, with or without |
| 2827 | modification, are permitted provided that the following conditions |
| 2828 | are met: |
| 2829 | 1. Redistributions of source code must retain the above copyright |
| 2830 | notice, this list of conditions and the following disclaimer. |
| 2831 | 2. Redistributions in binary form must reproduce the above copyright |
| 2832 | notice, this list of conditions and the following disclaimer in the |
| 2833 | documentation and/or other materials provided with the distribution. |
| 2834 | 3. All advertising materials mentioning features or use of this software |
| 2835 | must display the following acknowledgement: |
| 2836 | This product includes software developed by the University of |
| 2837 | California, Berkeley and its contributors. |
| 2838 | 4. Neither the name of the University nor the names of its contributors |
| 2839 | may be used to endorse or promote products derived from this software |
| 2840 | without specific prior written permission. |
| 2841 | |
| 2842 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2843 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2844 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2845 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2846 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2847 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2848 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2849 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2850 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2851 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2852 | SUCH DAMAGE. |
| 2853 | |
| 2854 | ------------------------------------------------------------------- |
| 2855 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2856 | Copyright (c) 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2857 | The Regents of the University of California. All rights reserved. |
| 2858 | |
| 2859 | Redistribution and use in source and binary forms, with or without |
| 2860 | modification, are permitted provided that the following conditions |
| 2861 | are met: |
| 2862 | 1. Redistributions of source code must retain the above copyright |
| 2863 | notice, this list of conditions and the following disclaimer. |
| 2864 | 2. Redistributions in binary form must reproduce the above copyright |
| 2865 | notice, this list of conditions and the following disclaimer in the |
| 2866 | documentation and/or other materials provided with the distribution. |
| 2867 | 3. Neither the name of the University nor the names of its contributors |
| 2868 | may be used to endorse or promote products derived from this software |
| 2869 | without specific prior written permission. |
| 2870 | |
| 2871 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2872 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2873 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2874 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2875 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2876 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2877 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2878 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2879 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2880 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2881 | SUCH DAMAGE. |
| 2882 | |
| 2883 | ------------------------------------------------------------------- |
| 2884 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2885 | Copyright (c) 1993 Martin Birgmeier |
| 2886 | All rights reserved. |
| 2887 | |
| 2888 | You may redistribute unmodified or modified versions of this source |
| 2889 | code provided that the above copyright notice and this and the |
| 2890 | following conditions are retained. |
| 2891 | |
| 2892 | This software is provided ``as is'', and comes with no warranties |
| 2893 | of any kind. I shall in no event be liable for anything that happens |
| 2894 | to anyone/anything when using this software. |
| 2895 | |
| 2896 | ------------------------------------------------------------------- |
| 2897 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2898 | Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2899 | All rights reserved. |
| 2900 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2901 | Redistribution and use in source and binary forms, with or without |
| 2902 | modification, are permitted provided that the following conditions |
| 2903 | are met: |
| 2904 | 1. Redistributions of source code must retain the above copyright |
| 2905 | notice, this list of conditions and the following disclaimer. |
| 2906 | 2. Redistributions in binary form must reproduce the above copyright |
| 2907 | notice, this list of conditions and the following disclaimer in the |
| 2908 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2909 | 3. The name of the author may not be used to endorse or promote products |
| 2910 | derived from this software without specific prior written permission. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2911 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2912 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2913 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2914 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2915 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2916 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2917 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2918 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2919 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2920 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2921 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2922 | |
| 2923 | ------------------------------------------------------------------- |
| 2924 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2925 | Copyright (c) 1996 by Internet Software Consortium. |
| 2926 | |
| 2927 | Permission to use, copy, modify, and distribute this software for any |
| 2928 | purpose with or without fee is hereby granted, provided that the above |
| 2929 | copyright notice and this permission notice appear in all copies. |
| 2930 | |
| 2931 | THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS |
| 2932 | ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES |
| 2933 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE |
| 2934 | CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 2935 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 2936 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 2937 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 2938 | SOFTWARE. |
| 2939 | |
| 2940 | ------------------------------------------------------------------- |
| 2941 | |
| 2942 | Copyright (c) 1996, David Mazieres <dm@uun.org> |
| 2943 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 2944 | Copyright (c) 2013, Markus Friedl <markus@openbsd.org> |
| 2945 | |
| 2946 | Permission to use, copy, modify, and distribute this software for any |
| 2947 | purpose with or without fee is hereby granted, provided that the above |
| 2948 | copyright notice and this permission notice appear in all copies. |
| 2949 | |
| 2950 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2951 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2952 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2953 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2954 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2955 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2956 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2957 | |
| 2958 | ------------------------------------------------------------------- |
| 2959 | |
| 2960 | Copyright (c) 1996-1998, 2008 Theo de Raadt |
| 2961 | Copyright (c) 1997, 2008-2009 Todd C. Miller |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2962 | |
| 2963 | Permission to use, copy, modify, and distribute this software for any |
| 2964 | purpose with or without fee is hereby granted, provided that the above |
| 2965 | copyright notice and this permission notice appear in all copies. |
| 2966 | |
| 2967 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2968 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2969 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2970 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2971 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2972 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2973 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2974 | |
| 2975 | ------------------------------------------------------------------- |
| 2976 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2977 | Copyright (c) 1997 Mark Brinicombe |
Elliott Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 2978 | Copyright (C) 2010 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2979 | All rights reserved. |
| 2980 | |
| 2981 | Redistribution and use in source and binary forms, with or without |
| 2982 | modification, are permitted provided that the following conditions |
| 2983 | are met: |
| 2984 | 1. Redistributions of source code must retain the above copyright |
| 2985 | notice, this list of conditions and the following disclaimer. |
| 2986 | 2. Redistributions in binary form must reproduce the above copyright |
| 2987 | notice, this list of conditions and the following disclaimer in the |
| 2988 | documentation and/or other materials provided with the distribution. |
| 2989 | 3. All advertising materials mentioning features or use of this software |
| 2990 | must display the following acknowledgement: |
| 2991 | This product includes software developed by Mark Brinicombe |
| 2992 | 4. Neither the name of the University nor the names of its contributors |
| 2993 | may be used to endorse or promote products derived from this software |
| 2994 | without specific prior written permission. |
| 2995 | |
| 2996 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 2997 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2998 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2999 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3000 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3001 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3002 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3003 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3004 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3005 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3006 | SUCH DAMAGE. |
| 3007 | |
| 3008 | ------------------------------------------------------------------- |
| 3009 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3010 | Copyright (c) 1997 Niklas Hallqvist. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3011 | |
| 3012 | Redistribution and use in source and binary forms, with or without |
| 3013 | modification, are permitted provided that the following conditions |
| 3014 | are met: |
| 3015 | 1. Redistributions of source code must retain the above copyright |
| 3016 | notice, this list of conditions and the following disclaimer. |
| 3017 | 2. Redistributions in binary form must reproduce the above copyright |
| 3018 | notice, this list of conditions and the following disclaimer in the |
| 3019 | documentation and/or other materials provided with the distribution. |
| 3020 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3021 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3022 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3023 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3024 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3025 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3026 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3027 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3028 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3029 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3030 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3031 | |
| 3032 | ------------------------------------------------------------------- |
| 3033 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3034 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3035 | |
| 3036 | Permission to use, copy, modify, and distribute this software for any |
| 3037 | purpose with or without fee is hereby granted, provided that the above |
| 3038 | copyright notice and this permission notice appear in all copies. |
| 3039 | |
| 3040 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3041 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3042 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3043 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3044 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3045 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3046 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3047 | |
| 3048 | ------------------------------------------------------------------- |
| 3049 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3050 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3051 | All rights reserved. |
| 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. |
| 3061 | 3. The name of the author may not be used to endorse or promote products |
| 3062 | derived from this software without specific prior written permission. |
| 3063 | |
| 3064 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 3065 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 3066 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 3067 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 3068 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 3069 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 3070 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3071 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3072 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3073 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3074 | |
| 3075 | ------------------------------------------------------------------- |
| 3076 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3077 | Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3078 | All rights reserved. |
| 3079 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3080 | This code was contributed to The NetBSD Foundation by Klaus Klein. |
| 3081 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 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. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 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 | |
| 3112 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 3113 | All rights reserved. |
| 3114 | |
| 3115 | This code is derived from software contributed to The NetBSD Foundation |
| 3116 | by Luke Mewburn. |
| 3117 | |
| 3118 | Redistribution and use in source and binary forms, with or without |
| 3119 | modification, are permitted provided that the following conditions |
| 3120 | are met: |
| 3121 | 1. Redistributions of source code must retain the above copyright |
| 3122 | notice, this list of conditions and the following disclaimer. |
| 3123 | 2. Redistributions in binary form must reproduce the above copyright |
| 3124 | notice, this list of conditions and the following disclaimer in the |
| 3125 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3126 | |
| 3127 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3128 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3129 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3130 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3131 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3132 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3133 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3134 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3135 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3136 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3137 | POSSIBILITY OF SUCH DAMAGE. |
| 3138 | |
| 3139 | ------------------------------------------------------------------- |
| 3140 | |
| 3141 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 3142 | All rights reserved. |
| 3143 | |
| 3144 | This code is derived from software contributed to The NetBSD Foundation |
| 3145 | by Luke Mewburn; and by Jason R. Thorpe. |
| 3146 | |
| 3147 | Redistribution and use in source and binary forms, with or without |
| 3148 | modification, are permitted provided that the following conditions |
| 3149 | are met: |
| 3150 | 1. Redistributions of source code must retain the above copyright |
| 3151 | notice, this list of conditions and the following disclaimer. |
| 3152 | 2. Redistributions in binary form must reproduce the above copyright |
| 3153 | notice, this list of conditions and the following disclaimer in the |
| 3154 | documentation and/or other materials provided with the distribution. |
| 3155 | 3. All advertising materials mentioning features or use of this software |
| 3156 | must display the following acknowledgement: |
| 3157 | This product includes software developed by the NetBSD |
| 3158 | Foundation, Inc. and its contributors. |
| 3159 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3160 | contributors may be used to endorse or promote products derived |
| 3161 | from this software without specific prior written permission. |
| 3162 | |
| 3163 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3164 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3165 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3166 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3167 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3168 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3169 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3170 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3171 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3172 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3173 | POSSIBILITY OF SUCH DAMAGE. |
| 3174 | |
| 3175 | ------------------------------------------------------------------- |
| 3176 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3177 | Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3178 | |
| 3179 | Permission to use, copy, modify, and distribute this software for any |
| 3180 | purpose with or without fee is hereby granted, provided that the above |
| 3181 | copyright notice and this permission notice appear in all copies. |
| 3182 | |
| 3183 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3184 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3185 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3186 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3187 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3188 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3189 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3190 | |
| 3191 | ------------------------------------------------------------------- |
| 3192 | |
| 3193 | Copyright (c) 1998 Softweyr LLC. All rights reserved. |
| 3194 | |
| 3195 | strtok_r, from Berkeley strtok |
| 3196 | Oct 13, 1998 by Wes Peters <wes@softweyr.com> |
| 3197 | |
| 3198 | Copyright (c) 1988, 1993 |
| 3199 | The Regents of the University of California. 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 | notices, this list of conditions and the following disclaimer. |
| 3206 | 2. Redistributions in binary form must reproduce the above copyright |
| 3207 | notices, this list of conditions and the following disclaimer in the |
| 3208 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 3209 | 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] | 3210 | may be used to endorse or promote products derived from this software |
| 3211 | without specific prior written permission. |
| 3212 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3213 | THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS |
| 3214 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3215 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 3216 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE |
| 3217 | REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 3218 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 3219 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 3220 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 3221 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 3222 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 3223 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3224 | |
| 3225 | ------------------------------------------------------------------- |
| 3226 | |
| 3227 | Copyright (c) 1998 The NetBSD Foundation, Inc. |
| 3228 | All rights reserved. |
| 3229 | |
| 3230 | This code is derived from software contributed to The NetBSD Foundation |
| 3231 | by Klaus Klein. |
| 3232 | |
| 3233 | Redistribution and use in source and binary forms, with or without |
| 3234 | modification, are permitted provided that the following conditions |
| 3235 | are met: |
| 3236 | 1. Redistributions of source code must retain the above copyright |
| 3237 | notice, this list of conditions and the following disclaimer. |
| 3238 | 2. Redistributions in binary form must reproduce the above copyright |
| 3239 | notice, this list of conditions and the following disclaimer in the |
| 3240 | documentation and/or other materials provided with the distribution. |
| 3241 | 3. All advertising materials mentioning features or use of this software |
| 3242 | must display the following acknowledgement: |
| 3243 | This product includes software developed by the NetBSD |
| 3244 | Foundation, Inc. and its contributors. |
| 3245 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3246 | contributors may be used to endorse or promote products derived |
| 3247 | from this software without specific prior written permission. |
| 3248 | |
| 3249 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3250 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3251 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3252 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3253 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3254 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3255 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3256 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3257 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3258 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3259 | POSSIBILITY OF SUCH DAMAGE. |
| 3260 | |
| 3261 | ------------------------------------------------------------------- |
| 3262 | |
| 3263 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3264 | All rights reserved. |
| 3265 | |
| 3266 | Redistribution and use in source and binary forms, with or without |
| 3267 | modification, are permitted provided that the following conditions |
| 3268 | are met: |
| 3269 | 1. Redistributions of source code must retain the above copyright |
| 3270 | notice, this list of conditions and the following disclaimer. |
| 3271 | 2. Redistributions in binary form must reproduce the above copyright |
| 3272 | notice, this list of conditions and the following disclaimer in the |
| 3273 | documentation and/or other materials provided with the distribution. |
| 3274 | 3. The name of the author may not be used to endorse or promote products |
| 3275 | derived from this software without specific prior written permission. |
| 3276 | |
| 3277 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 3278 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 3279 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 3280 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 3281 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 3282 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 3283 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3284 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3285 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3286 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3287 | |
| 3288 | ------------------------------------------------------------------- |
| 3289 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 3290 | Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3291 | |
| 3292 | Permission to use, copy, modify, and distribute this software for any |
| 3293 | purpose with or without fee is hereby granted, provided that the above |
| 3294 | copyright notice and this permission notice appear in all copies. |
| 3295 | |
| 3296 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3297 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3298 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3299 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3300 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3301 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3302 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3303 | |
| 3304 | ------------------------------------------------------------------- |
| 3305 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3306 | Copyright (c) 1999 |
| 3307 | David E. O'Brien |
| 3308 | Copyright (c) 1988, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3309 | The Regents of the University of California. All rights reserved. |
| 3310 | |
| 3311 | Redistribution and use in source and binary forms, with or without |
| 3312 | modification, are permitted provided that the following conditions |
| 3313 | are met: |
| 3314 | 1. Redistributions of source code must retain the above copyright |
| 3315 | notice, this list of conditions and the following disclaimer. |
| 3316 | 2. Redistributions in binary form must reproduce the above copyright |
| 3317 | notice, this list of conditions and the following disclaimer in the |
| 3318 | documentation and/or other materials provided with the distribution. |
| 3319 | 3. Neither the name of the University nor the names of its contributors |
| 3320 | may be used to endorse or promote products derived from this software |
| 3321 | without specific prior written permission. |
| 3322 | |
| 3323 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 3324 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3325 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3326 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 3327 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3328 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3329 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3330 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3331 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3332 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3333 | SUCH DAMAGE. |
| 3334 | |
| 3335 | ------------------------------------------------------------------- |
| 3336 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3337 | Copyright (c) 2000 Ben Harris. |
| 3338 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
| 3339 | All rights reserved. |
| 3340 | |
| 3341 | Redistribution and use in source and binary forms, with or without |
| 3342 | modification, are permitted provided that the following conditions |
| 3343 | are met: |
| 3344 | 1. Redistributions of source code must retain the above copyright |
| 3345 | notice, this list of conditions and the following disclaimer. |
| 3346 | 2. Redistributions in binary form must reproduce the above copyright |
| 3347 | notice, this list of conditions and the following disclaimer in the |
| 3348 | documentation and/or other materials provided with the distribution. |
| 3349 | 3. Neither the name of the project nor the names of its contributors |
| 3350 | may be used to endorse or promote products derived from this software |
| 3351 | without specific prior written permission. |
| 3352 | |
| 3353 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
| 3354 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3355 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3356 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
| 3357 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3358 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3359 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3360 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3361 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3362 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3363 | SUCH DAMAGE. |
| 3364 | |
| 3365 | ------------------------------------------------------------------- |
| 3366 | |
| 3367 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 3368 | All rights reserved. |
| 3369 | |
| 3370 | This code is derived from software contributed to The NetBSD Foundation |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3371 | by Dieter Baron and Thomas Klausner. |
| 3372 | |
| 3373 | Redistribution and use in source and binary forms, with or without |
| 3374 | modification, are permitted provided that the following conditions |
| 3375 | are met: |
| 3376 | 1. Redistributions of source code must retain the above copyright |
| 3377 | notice, this list of conditions and the following disclaimer. |
| 3378 | 2. Redistributions in binary form must reproduce the above copyright |
| 3379 | notice, this list of conditions and the following disclaimer in the |
| 3380 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3381 | |
| 3382 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3383 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3384 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3385 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3386 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3387 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3388 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3389 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3390 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3391 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3392 | POSSIBILITY OF SUCH DAMAGE. |
| 3393 | |
| 3394 | ------------------------------------------------------------------- |
| 3395 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3396 | Copyright (c) 2001 Wasabi Systems, Inc. |
| 3397 | All rights reserved. |
| 3398 | |
| 3399 | Written by Frank van der Linden for Wasabi Systems, Inc. |
| 3400 | |
| 3401 | Redistribution and use in source and binary forms, with or without |
| 3402 | modification, are permitted provided that the following conditions |
| 3403 | are met: |
| 3404 | 1. Redistributions of source code must retain the above copyright |
| 3405 | notice, this list of conditions and the following disclaimer. |
| 3406 | 2. Redistributions in binary form must reproduce the above copyright |
| 3407 | notice, this list of conditions and the following disclaimer in the |
| 3408 | documentation and/or other materials provided with the distribution. |
| 3409 | 3. All advertising materials mentioning features or use of this software |
| 3410 | must display the following acknowledgement: |
| 3411 | This product includes software developed for the NetBSD Project by |
| 3412 | Wasabi Systems, Inc. |
| 3413 | 4. The name of Wasabi Systems, Inc. may not be used to endorse |
| 3414 | or promote products derived from this software without specific prior |
| 3415 | written permission. |
| 3416 | |
| 3417 | THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND |
| 3418 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3419 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3420 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC |
| 3421 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3422 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3423 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3424 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3425 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3426 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3427 | POSSIBILITY OF SUCH DAMAGE. |
| 3428 | |
| 3429 | ------------------------------------------------------------------- |
| 3430 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3431 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3432 | |
| 3433 | Redistribution and use in source and binary forms, with or without |
| 3434 | modification, are permitted provided that the following conditions |
| 3435 | are met: |
| 3436 | 1. Redistributions of source code must retain the above copyright |
| 3437 | notice, this list of conditions and the following disclaimer. |
| 3438 | 2. Redistributions in binary form must reproduce the above copyright |
| 3439 | notice, this list of conditions and the following disclaimer in the |
| 3440 | documentation and/or other materials provided with the distribution. |
| 3441 | |
| 3442 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3443 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3444 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3445 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3446 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3447 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3448 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3449 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3450 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3451 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3452 | SUCH DAMAGE. |
| 3453 | |
| 3454 | ------------------------------------------------------------------- |
| 3455 | |
| 3456 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3457 | |
| 3458 | Redistribution and use in source and binary forms, with or without |
| 3459 | modification, are permitted provided that the following conditions |
| 3460 | are met: |
| 3461 | 1. Redistributions of source code must retain the above copyright |
| 3462 | notice, this list of conditions and the following disclaimer. |
| 3463 | 2. Redistributions in binary form must reproduce the above copyright |
| 3464 | notice, this list of conditions and the following disclaimer in the |
| 3465 | documentation and/or other materials provided with the distribution. |
| 3466 | 3. Neither the name of Opsycon AB nor the names of its contributors |
| 3467 | may be used to endorse or promote products derived from this software |
| 3468 | without specific prior written permission. |
| 3469 | |
| 3470 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3471 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3472 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3473 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3474 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3475 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3476 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3477 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3478 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3479 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3480 | SUCH DAMAGE. |
| 3481 | |
| 3482 | ------------------------------------------------------------------- |
| 3483 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3484 | Copyright (c) 2001-2011 The FreeBSD Project. |
| 3485 | All rights reserved. |
| 3486 | |
| 3487 | Redistribution and use in source and binary forms, with or without |
| 3488 | modification, are permitted provided that the following conditions |
| 3489 | are met: |
| 3490 | 1. Redistributions of source code must retain the above copyright |
| 3491 | notice, this list of conditions and the following disclaimer. |
| 3492 | 2. Redistributions in binary form must reproduce the above copyright |
| 3493 | notice, this list of conditions and the following disclaimer in the |
| 3494 | documentation and/or other materials provided with the distribution. |
| 3495 | |
| 3496 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3497 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3498 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3499 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3500 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3501 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3502 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3503 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3504 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3505 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3506 | SUCH DAMAGE. |
| 3507 | |
| 3508 | ------------------------------------------------------------------- |
| 3509 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3510 | Copyright (c) 2002 Daniel Hartmeier |
| 3511 | All rights reserved. |
| 3512 | |
| 3513 | Redistribution and use in source and binary forms, with or without |
| 3514 | modification, are permitted provided that the following conditions |
| 3515 | are met: |
| 3516 | |
| 3517 | - Redistributions of source code must retain the above copyright |
| 3518 | notice, this list of conditions and the following disclaimer. |
| 3519 | - Redistributions in binary form must reproduce the above |
| 3520 | copyright notice, this list of conditions and the following |
| 3521 | disclaimer in the documentation and/or other materials provided |
| 3522 | with the distribution. |
| 3523 | |
| 3524 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 3525 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3526 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 3527 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 3528 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3529 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 3530 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 3531 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 3532 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3533 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 3534 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3535 | POSSIBILITY OF SUCH DAMAGE. |
| 3536 | |
| 3537 | ------------------------------------------------------------------- |
| 3538 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3539 | Copyright (c) 2002 The NetBSD Foundation, Inc. |
| 3540 | All rights reserved. |
| 3541 | |
| 3542 | This code is derived from software contributed to The NetBSD Foundation |
| 3543 | by Christos Zoulas. |
| 3544 | |
| 3545 | Redistribution and use in source and binary forms, with or without |
| 3546 | modification, are permitted provided that the following conditions |
| 3547 | are met: |
| 3548 | 1. Redistributions of source code must retain the above copyright |
| 3549 | notice, this list of conditions and the following disclaimer. |
| 3550 | 2. Redistributions in binary form must reproduce the above copyright |
| 3551 | notice, this list of conditions and the following disclaimer in the |
| 3552 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3553 | |
| 3554 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3555 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3556 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3557 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3558 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3559 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3560 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3561 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3562 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3563 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3564 | POSSIBILITY OF SUCH DAMAGE. |
| 3565 | |
| 3566 | ------------------------------------------------------------------- |
| 3567 | |
| 3568 | Copyright (c) 2002 Tim J. Robbins |
| 3569 | All rights reserved. |
| 3570 | |
| 3571 | Redistribution and use in source and binary forms, with or without |
| 3572 | modification, are permitted provided that the following conditions |
| 3573 | are met: |
| 3574 | 1. Redistributions of source code must retain the above copyright |
| 3575 | notice, this list of conditions and the following disclaimer. |
| 3576 | 2. Redistributions in binary form must reproduce the above copyright |
| 3577 | notice, this list of conditions and the following disclaimer in the |
| 3578 | documentation and/or other materials provided with the distribution. |
| 3579 | |
| 3580 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3581 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3582 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3583 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3584 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3585 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3586 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3587 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3588 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3589 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3590 | SUCH DAMAGE. |
| 3591 | |
| 3592 | ------------------------------------------------------------------- |
| 3593 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3594 | Copyright (c) 2002 Tim J. Robbins. |
| 3595 | All rights reserved. |
| 3596 | |
| 3597 | Redistribution and use in source and binary forms, with or without |
| 3598 | modification, are permitted provided that the following conditions |
| 3599 | are met: |
| 3600 | 1. Redistributions of source code must retain the above copyright |
| 3601 | notice, this list of conditions and the following disclaimer. |
| 3602 | 2. Redistributions in binary form must reproduce the above copyright |
| 3603 | notice, this list of conditions and the following disclaimer in the |
| 3604 | documentation and/or other materials provided with the distribution. |
| 3605 | |
| 3606 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3607 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3608 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3609 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3610 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3611 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3612 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3613 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3614 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3615 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3616 | SUCH DAMAGE. |
| 3617 | |
| 3618 | ------------------------------------------------------------------- |
| 3619 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3620 | Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3621 | |
| 3622 | Permission to use, copy, modify, and distribute this software for any |
| 3623 | purpose with or without fee is hereby granted, provided that the above |
| 3624 | copyright notice and this permission notice appear in all copies. |
| 3625 | |
| 3626 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3627 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3628 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3629 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3630 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3631 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3632 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3633 | |
| 3634 | Sponsored in part by the Defense Advanced Research Projects |
| 3635 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3636 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3637 | |
| 3638 | ------------------------------------------------------------------- |
| 3639 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3640 | Copyright (c) 2002, 2003 Tim J. Robbins. |
| 3641 | All rights reserved. |
| 3642 | |
| 3643 | Redistribution and use in source and binary forms, with or without |
| 3644 | modification, are permitted provided that the following conditions |
| 3645 | are met: |
| 3646 | 1. Redistributions of source code must retain the above copyright |
| 3647 | notice, this list of conditions and the following disclaimer. |
| 3648 | 2. Redistributions in binary form must reproduce the above copyright |
| 3649 | notice, this list of conditions and the following disclaimer in the |
| 3650 | documentation and/or other materials provided with the distribution. |
| 3651 | |
| 3652 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3653 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3654 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3655 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3656 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3657 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3658 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3659 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3660 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3661 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3662 | SUCH DAMAGE. |
| 3663 | |
| 3664 | ------------------------------------------------------------------- |
| 3665 | |
| 3666 | Copyright (c) 2002-2004 Tim J. Robbins |
| 3667 | All rights reserved. |
| 3668 | |
| 3669 | Redistribution and use in source and binary forms, with or without |
| 3670 | modification, are permitted provided that the following conditions |
| 3671 | are met: |
| 3672 | 1. Redistributions of source code must retain the above copyright |
| 3673 | notice, this list of conditions and the following disclaimer. |
| 3674 | 2. Redistributions in binary form must reproduce the above copyright |
| 3675 | notice, this list of conditions and the following disclaimer in the |
| 3676 | documentation and/or other materials provided with the distribution. |
| 3677 | |
| 3678 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3679 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3680 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3681 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3682 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3683 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3684 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3685 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3686 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3687 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3688 | SUCH DAMAGE. |
| 3689 | |
| 3690 | ------------------------------------------------------------------- |
| 3691 | |
| 3692 | Copyright (c) 2002-2004 Tim J. Robbins. |
| 3693 | All rights reserved. |
| 3694 | |
| 3695 | Redistribution and use in source and binary forms, with or without |
| 3696 | modification, are permitted provided that the following conditions |
| 3697 | are met: |
| 3698 | 1. Redistributions of source code must retain the above copyright |
| 3699 | notice, this list of conditions and the following disclaimer. |
| 3700 | 2. Redistributions in binary form must reproduce the above copyright |
| 3701 | notice, this list of conditions and the following disclaimer in the |
| 3702 | documentation and/or other materials provided with the distribution. |
| 3703 | |
| 3704 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3705 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3706 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3707 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3708 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3709 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3710 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3711 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3712 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3713 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3714 | SUCH DAMAGE. |
| 3715 | |
| 3716 | ------------------------------------------------------------------- |
| 3717 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3718 | Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
| 3719 | |
| 3720 | Redistribution and use in source and binary forms, with or without |
| 3721 | modification, are permitted provided that the following conditions |
| 3722 | are met: |
| 3723 | 1. Redistributions of source code must retain the above copyright |
| 3724 | notice, this list of conditions and the following disclaimer. |
| 3725 | 2. Redistributions in binary form must reproduce the above copyright |
| 3726 | notice, this list of conditions and the following disclaimer in the |
| 3727 | documentation and/or other materials provided with the distribution. |
| 3728 | 3. The names of the authors may not be used to endorse or promote |
| 3729 | products derived from this software without specific prior written |
| 3730 | permission. |
| 3731 | |
| 3732 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3733 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3734 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3735 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3736 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3737 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3738 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3739 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3740 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3741 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3742 | SUCH DAMAGE. |
| 3743 | |
| 3744 | ------------------------------------------------------------------- |
| 3745 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3746 | Copyright (c) 2003 Dag-Erling Smørgrav |
| 3747 | All rights reserved. |
| 3748 | |
| 3749 | Redistribution and use in source and binary forms, with or without |
| 3750 | modification, are permitted provided that the following conditions |
| 3751 | are met: |
| 3752 | 1. Redistributions of source code must retain the above copyright |
| 3753 | notice, this list of conditions and the following disclaimer |
| 3754 | in this position and unchanged. |
| 3755 | 2. Redistributions in binary form must reproduce the above copyright |
| 3756 | notice, this list of conditions and the following disclaimer in the |
| 3757 | documentation and/or other materials provided with the distribution. |
| 3758 | 3. The name of the author may not be used to endorse or promote products |
| 3759 | derived from this software without specific prior written permission. |
| 3760 | |
| 3761 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3762 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3763 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3764 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3765 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3766 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3767 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3768 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3769 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3770 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3771 | |
| 3772 | ------------------------------------------------------------------- |
| 3773 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3774 | Copyright (c) 2003 David Schultz <das@FreeBSD.ORG> |
| 3775 | All rights reserved. |
| 3776 | |
| 3777 | Redistribution and use in source and binary forms, with or without |
| 3778 | modification, are permitted provided that the following conditions |
| 3779 | are met: |
| 3780 | 1. Redistributions of source code must retain the above copyright |
| 3781 | notice, this list of conditions and the following disclaimer. |
| 3782 | 2. Redistributions in binary form must reproduce the above copyright |
| 3783 | notice, this list of conditions and the following disclaimer in the |
| 3784 | documentation and/or other materials provided with the distribution. |
| 3785 | |
| 3786 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3787 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3788 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3789 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3790 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3791 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3792 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3793 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3794 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3795 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3796 | SUCH DAMAGE. |
| 3797 | |
| 3798 | ------------------------------------------------------------------- |
| 3799 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3800 | Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> |
| 3801 | All rights reserved. |
| 3802 | |
| 3803 | Redistribution and use in source and binary forms, with or without |
| 3804 | modification, are permitted provided that the following conditions |
| 3805 | are met: |
| 3806 | 1. Redistributions of source code must retain the above copyright |
| 3807 | notice, this list of conditions and the following disclaimer. |
| 3808 | 2. Redistributions in binary form must reproduce the above copyright |
| 3809 | notice, this list of conditions and the following disclaimer in the |
| 3810 | documentation and/or other materials provided with the distribution. |
| 3811 | |
| 3812 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3813 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3814 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3815 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3816 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3817 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3818 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3819 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3820 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3821 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3822 | SUCH DAMAGE. |
| 3823 | |
| 3824 | ------------------------------------------------------------------- |
| 3825 | |
| 3826 | Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> |
| 3827 | Copyright (c) 2002 David Schultz <das@FreeBSD.ORG> |
| 3828 | All rights reserved. |
| 3829 | |
| 3830 | Redistribution and use in source and binary forms, with or without |
| 3831 | modification, are permitted provided that the following conditions |
| 3832 | are met: |
| 3833 | 1. Redistributions of source code must retain the above copyright |
| 3834 | notice, this list of conditions and the following disclaimer. |
| 3835 | 2. Redistributions in binary form must reproduce the above copyright |
| 3836 | notice, this list of conditions and the following disclaimer in the |
| 3837 | documentation and/or other materials provided with the distribution. |
| 3838 | |
| 3839 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3840 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3841 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3842 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3843 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3844 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3845 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3846 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3847 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3848 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3849 | SUCH DAMAGE. |
| 3850 | |
| 3851 | ------------------------------------------------------------------- |
| 3852 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3853 | Copyright (c) 2003 Networks Associates Technology, Inc. |
| 3854 | All rights reserved. |
| 3855 | |
| 3856 | Portions of this software were developed for the FreeBSD Project by |
| 3857 | Jacques A. Vidrine, Safeport Network Services, and Network |
| 3858 | Associates Laboratories, the Security Research Division of Network |
| 3859 | Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 |
| 3860 | ("CBOSS"), as part of the DARPA CHATS research program. |
| 3861 | |
| 3862 | Redistribution and use in source and binary forms, with or without |
| 3863 | modification, are permitted provided that the following conditions |
| 3864 | are met: |
| 3865 | 1. Redistributions of source code must retain the above copyright |
| 3866 | notice, this list of conditions and the following disclaimer. |
| 3867 | 2. Redistributions in binary form must reproduce the above copyright |
| 3868 | notice, this list of conditions and the following disclaimer in the |
| 3869 | documentation and/or other materials provided with the distribution. |
| 3870 | |
| 3871 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3872 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3873 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3874 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3875 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3876 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3877 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3878 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3879 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3880 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3881 | SUCH DAMAGE. |
| 3882 | |
| 3883 | ------------------------------------------------------------------- |
| 3884 | |
Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 3885 | Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3886 | |
| 3887 | Permission to use, copy, modify, and distribute this software for any |
| 3888 | purpose with or without fee is hereby granted, provided that the above |
| 3889 | copyright notice and this permission notice appear in all copies. |
| 3890 | |
| 3891 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3892 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3893 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3894 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3895 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3896 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3897 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3898 | |
| 3899 | Sponsored in part by the Defense Advanced Research Projects |
| 3900 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3901 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3902 | |
| 3903 | ------------------------------------------------------------------- |
| 3904 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3905 | Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3906 | |
| 3907 | Permission to use, copy, modify, and distribute this software for any |
| 3908 | purpose with or without fee is hereby granted, provided that the above |
| 3909 | copyright notice and this permission notice appear in all copies. |
| 3910 | |
| 3911 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3912 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3913 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3914 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3915 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3916 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3917 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3918 | |
| 3919 | Sponsored in part by the Defense Advanced Research Projects |
| 3920 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3921 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3922 | |
| 3923 | ------------------------------------------------------------------- |
| 3924 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3925 | Copyright (c) 2003, Steven G. Kargl |
| 3926 | All rights reserved. |
| 3927 | |
| 3928 | Redistribution and use in source and binary forms, with or without |
| 3929 | modification, are permitted provided that the following conditions |
| 3930 | are met: |
| 3931 | 1. Redistributions of source code must retain the above copyright |
| 3932 | notice unmodified, this list of conditions, and the following |
| 3933 | disclaimer. |
| 3934 | 2. Redistributions in binary form must reproduce the above copyright |
| 3935 | notice, this list of conditions and the following disclaimer in the |
| 3936 | documentation and/or other materials provided with the distribution. |
| 3937 | |
| 3938 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3939 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3940 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3941 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3942 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3943 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3944 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3945 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3946 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3947 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3948 | |
| 3949 | ------------------------------------------------------------------- |
| 3950 | |
| 3951 | Copyright (c) 2004 David Schultz <das@FreeBSD.ORG> |
| 3952 | All rights reserved. |
| 3953 | |
| 3954 | Redistribution and use in source and binary forms, with or without |
| 3955 | modification, are permitted provided that the following conditions |
| 3956 | are met: |
| 3957 | 1. Redistributions of source code must retain the above copyright |
| 3958 | notice, this list of conditions and the following disclaimer. |
| 3959 | 2. Redistributions in binary form must reproduce the above copyright |
| 3960 | notice, this list of conditions and the following disclaimer in the |
| 3961 | documentation and/or other materials provided with the distribution. |
| 3962 | |
| 3963 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3964 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3965 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3966 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3967 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3968 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3969 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3970 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3971 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3972 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3973 | SUCH DAMAGE. |
| 3974 | |
| 3975 | ------------------------------------------------------------------- |
| 3976 | |
| 3977 | Copyright (c) 2004 Stefan Farfeleder |
| 3978 | All rights reserved. |
| 3979 | |
| 3980 | Redistribution and use in source and binary forms, with or without |
| 3981 | modification, are permitted provided that the following conditions |
| 3982 | are met: |
| 3983 | 1. Redistributions of source code must retain the above copyright |
| 3984 | notice, this list of conditions and the following disclaimer. |
| 3985 | 2. Redistributions in binary form must reproduce the above copyright |
| 3986 | notice, this list of conditions and the following disclaimer in the |
| 3987 | documentation and/or other materials provided with the distribution. |
| 3988 | |
| 3989 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3990 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3991 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3992 | ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3993 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3994 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3995 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3996 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3997 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3998 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3999 | SUCH DAMAGE. |
| 4000 | |
| 4001 | ------------------------------------------------------------------- |
| 4002 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4003 | Copyright (c) 2004 The NetBSD Foundation, Inc. |
| 4004 | All rights reserved. |
| 4005 | |
| 4006 | This code is derived from software contributed to The NetBSD Foundation |
| 4007 | by Christos Zoulas. |
| 4008 | |
| 4009 | Redistribution and use in source and binary forms, with or without |
| 4010 | modification, are permitted provided that the following conditions |
| 4011 | are met: |
| 4012 | 1. Redistributions of source code must retain the above copyright |
| 4013 | notice, this list of conditions and the following disclaimer. |
| 4014 | 2. Redistributions in binary form must reproduce the above copyright |
| 4015 | notice, this list of conditions and the following disclaimer in the |
| 4016 | documentation and/or other materials provided with the distribution. |
| 4017 | 3. All advertising materials mentioning features or use of this software |
| 4018 | must display the following acknowledgement: |
| 4019 | This product includes software developed by the NetBSD |
| 4020 | Foundation, Inc. and its contributors. |
| 4021 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 4022 | contributors may be used to endorse or promote products derived |
| 4023 | from this software without specific prior written permission. |
| 4024 | |
| 4025 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4026 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4027 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4028 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4029 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4030 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4031 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4032 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4033 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4034 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4035 | POSSIBILITY OF SUCH DAMAGE. |
| 4036 | |
| 4037 | ------------------------------------------------------------------- |
| 4038 | |
| 4039 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4040 | Copyright (c) 1995,1999 by Internet Software Consortium. |
| 4041 | |
| 4042 | Permission to use, copy, modify, and distribute this software for any |
| 4043 | purpose with or without fee is hereby granted, provided that the above |
| 4044 | copyright notice and this permission notice appear in all copies. |
| 4045 | |
| 4046 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4047 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4048 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4049 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4050 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4051 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4052 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4053 | |
| 4054 | ------------------------------------------------------------------- |
| 4055 | |
| 4056 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4057 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 4058 | |
| 4059 | Permission to use, copy, modify, and distribute this software for any |
| 4060 | purpose with or without fee is hereby granted, provided that the above |
| 4061 | copyright notice and this permission notice appear in all copies. |
| 4062 | |
| 4063 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4064 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4065 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4066 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4067 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4068 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4069 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4070 | |
| 4071 | ------------------------------------------------------------------- |
| 4072 | |
| 4073 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4074 | Copyright (c) 1995-1999 by Internet Software Consortium. |
| 4075 | |
| 4076 | Permission to use, copy, modify, and distribute this software for any |
| 4077 | purpose with or without fee is hereby granted, provided that the above |
| 4078 | copyright notice and this permission notice appear in all copies. |
| 4079 | |
| 4080 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4081 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4082 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4083 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4084 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4085 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4086 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4087 | |
| 4088 | ------------------------------------------------------------------- |
| 4089 | |
| 4090 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4091 | Copyright (c) 1996,1999 by Internet Software Consortium. |
| 4092 | |
| 4093 | Permission to use, copy, modify, and distribute this software for any |
| 4094 | purpose with or without fee is hereby granted, provided that the above |
| 4095 | copyright notice and this permission notice appear in all copies. |
| 4096 | |
| 4097 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4098 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4099 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4100 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4101 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4102 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4103 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4104 | |
| 4105 | ------------------------------------------------------------------- |
| 4106 | |
| 4107 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4108 | Copyright (c) 1996-1999 by Internet Software Consortium |
| 4109 | |
| 4110 | Permission to use, copy, modify, and distribute this software for any |
| 4111 | purpose with or without fee is hereby granted, provided that the above |
| 4112 | copyright notice and this permission notice appear in all copies. |
| 4113 | |
| 4114 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4115 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4116 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4117 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4118 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4119 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4120 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4121 | |
| 4122 | ------------------------------------------------------------------- |
| 4123 | |
| 4124 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4125 | Copyright (c) 1996-1999 by Internet Software Consortium. |
| 4126 | |
| 4127 | Permission to use, copy, modify, and distribute this software for any |
| 4128 | purpose with or without fee is hereby granted, provided that the above |
| 4129 | copyright notice and this permission notice appear in all copies. |
| 4130 | |
| 4131 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4132 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4133 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4134 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4135 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4136 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4137 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4138 | |
| 4139 | ------------------------------------------------------------------- |
| 4140 | |
| 4141 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4142 | Copyright (c) 1997,1999 by Internet Software Consortium. |
| 4143 | |
| 4144 | Permission to use, copy, modify, and distribute this software for any |
| 4145 | purpose with or without fee is hereby granted, provided that the above |
| 4146 | copyright notice and this permission notice appear in all copies. |
| 4147 | |
| 4148 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4149 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4150 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4151 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4152 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4153 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4154 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4155 | |
| 4156 | ------------------------------------------------------------------- |
| 4157 | |
| 4158 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4159 | Copyright (c) 1999 by Internet Software Consortium. |
| 4160 | |
| 4161 | Permission to use, copy, modify, and distribute this software for any |
| 4162 | purpose with or without fee is hereby granted, provided that the above |
| 4163 | copyright notice and this permission notice appear in all copies. |
| 4164 | |
| 4165 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4166 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4167 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4168 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4169 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4170 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4171 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4172 | |
| 4173 | ------------------------------------------------------------------- |
| 4174 | |
| 4175 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4176 | Portions Copyright (c) 1996-1999 by Internet Software Consortium. |
| 4177 | |
| 4178 | Permission to use, copy, modify, and distribute this software for any |
| 4179 | purpose with or without fee is hereby granted, provided that the above |
| 4180 | copyright notice and this permission notice appear in all copies. |
| 4181 | |
| 4182 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4183 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4184 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4185 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4186 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4187 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4188 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4189 | |
| 4190 | ------------------------------------------------------------------- |
| 4191 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4192 | Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> |
| 4193 | All rights reserved. |
| 4194 | |
| 4195 | Redistribution and use in source and binary forms, with or without |
| 4196 | modification, are permitted provided that the following conditions |
| 4197 | are met: |
| 4198 | 1. Redistributions of source code must retain the above copyright |
| 4199 | notice, this list of conditions and the following disclaimer. |
| 4200 | 2. Redistributions in binary form must reproduce the above copyright |
| 4201 | notice, this list of conditions and the following disclaimer in the |
| 4202 | documentation and/or other materials provided with the distribution. |
| 4203 | |
| 4204 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4205 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4206 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4207 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4208 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4209 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4210 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4211 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4212 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4213 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4214 | SUCH DAMAGE. |
| 4215 | |
| 4216 | ------------------------------------------------------------------- |
| 4217 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4218 | Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG> |
| 4219 | All rights reserved. |
| 4220 | |
| 4221 | Redistribution and use in source and binary forms, with or without |
| 4222 | modification, are permitted provided that the following conditions |
| 4223 | are met: |
| 4224 | 1. Redistributions of source code must retain the above copyright |
| 4225 | notice, this list of conditions and the following disclaimer. |
| 4226 | 2. Redistributions in binary form must reproduce the above copyright |
| 4227 | notice, this list of conditions and the following disclaimer in the |
| 4228 | documentation and/or other materials provided with the distribution. |
| 4229 | |
| 4230 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4231 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4232 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4233 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4234 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4235 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4236 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4237 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4238 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4239 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4240 | SUCH DAMAGE. |
| 4241 | |
| 4242 | ------------------------------------------------------------------- |
| 4243 | |
| 4244 | Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG> |
| 4245 | All rights reserved. |
| 4246 | |
| 4247 | Redistribution and use in source and binary forms, with or without |
| 4248 | modification, are permitted provided that the following conditions |
| 4249 | are met: |
| 4250 | 1. Redistributions of source code must retain the above copyright |
| 4251 | notice, this list of conditions and the following disclaimer. |
| 4252 | 2. Redistributions in binary form must reproduce the above copyright |
| 4253 | notice, this list of conditions and the following disclaimer in the |
| 4254 | documentation and/or other materials provided with the distribution. |
| 4255 | |
| 4256 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4257 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4258 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4259 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4260 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4261 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4262 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4263 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4264 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4265 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4266 | SUCH DAMAGE. |
| 4267 | |
| 4268 | ------------------------------------------------------------------- |
| 4269 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4270 | Copyright (c) 2005 Bruce D. Evans and Steven G. Kargl |
| 4271 | All rights reserved. |
| 4272 | |
| 4273 | Redistribution and use in source and binary forms, with or without |
| 4274 | modification, are permitted provided that the following conditions |
| 4275 | are met: |
| 4276 | 1. Redistributions of source code must retain the above copyright |
| 4277 | notice unmodified, this list of conditions, and the following |
| 4278 | disclaimer. |
| 4279 | 2. Redistributions in binary form must reproduce the above copyright |
| 4280 | notice, this list of conditions and the following disclaimer in the |
| 4281 | documentation and/or other materials provided with the distribution. |
| 4282 | |
| 4283 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4284 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4285 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4286 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4287 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4288 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4289 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4290 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4291 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4292 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4293 | |
| 4294 | ------------------------------------------------------------------- |
| 4295 | |
| 4296 | Copyright (c) 2005 David Schultz <das@FreeBSD.ORG> |
| 4297 | All rights reserved. |
| 4298 | |
| 4299 | Redistribution and use in source and binary forms, with or without |
| 4300 | modification, are permitted provided that the following conditions |
| 4301 | are met: |
| 4302 | 1. Redistributions of source code must retain the above copyright |
| 4303 | notice, this list of conditions and the following disclaimer. |
| 4304 | 2. Redistributions in binary form must reproduce the above copyright |
| 4305 | notice, this list of conditions and the following disclaimer in the |
| 4306 | documentation and/or other materials provided with the distribution. |
| 4307 | |
| 4308 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4309 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4310 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4311 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4312 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4313 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4314 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4315 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4316 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4317 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4318 | SUCH DAMAGE. |
| 4319 | |
| 4320 | ------------------------------------------------------------------- |
| 4321 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4322 | Copyright (c) 2005 Tim J. Robbins. |
| 4323 | All rights reserved. |
| 4324 | |
| 4325 | Redistribution and use in source and binary forms, with or without |
| 4326 | modification, are permitted provided that the following conditions |
| 4327 | are met: |
| 4328 | 1. Redistributions of source code must retain the above copyright |
| 4329 | notice, this list of conditions and the following disclaimer. |
| 4330 | 2. Redistributions in binary form must reproduce the above copyright |
| 4331 | notice, this list of conditions and the following disclaimer in the |
| 4332 | documentation and/or other materials provided with the distribution. |
| 4333 | |
| 4334 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4335 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4336 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4337 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4338 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4339 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4340 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4341 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4342 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4343 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4344 | SUCH DAMAGE. |
| 4345 | |
| 4346 | ------------------------------------------------------------------- |
| 4347 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 4348 | Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC") |
| 4349 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 4350 | |
| 4351 | Permission to use, copy, modify, and distribute this software for any |
| 4352 | purpose with or without fee is hereby granted, provided that the above |
| 4353 | copyright notice and this permission notice appear in all copies. |
| 4354 | |
| 4355 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4356 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4357 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4358 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4359 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4360 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4361 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4362 | |
| 4363 | ------------------------------------------------------------------- |
| 4364 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4365 | Copyright (c) 2005-2008 David Schultz <das@FreeBSD.ORG> |
| 4366 | All rights reserved. |
| 4367 | |
| 4368 | Redistribution and use in source and binary forms, with or without |
| 4369 | modification, are permitted provided that the following conditions |
| 4370 | are met: |
| 4371 | 1. Redistributions of source code must retain the above copyright |
| 4372 | notice, this list of conditions and the following disclaimer. |
| 4373 | 2. Redistributions in binary form must reproduce the above copyright |
| 4374 | notice, this list of conditions and the following disclaimer in the |
| 4375 | documentation and/or other materials provided with the distribution. |
| 4376 | |
| 4377 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4378 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4379 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4380 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4381 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4382 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4383 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4384 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4385 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4386 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4387 | SUCH DAMAGE. |
| 4388 | |
| 4389 | ------------------------------------------------------------------- |
| 4390 | |
| 4391 | Copyright (c) 2005-2011 David Schultz <das@FreeBSD.ORG> |
| 4392 | All rights reserved. |
| 4393 | |
| 4394 | Redistribution and use in source and binary forms, with or without |
| 4395 | modification, are permitted provided that the following conditions |
| 4396 | are met: |
| 4397 | 1. Redistributions of source code must retain the above copyright |
| 4398 | notice, this list of conditions and the following disclaimer. |
| 4399 | 2. Redistributions in binary form must reproduce the above copyright |
| 4400 | notice, this list of conditions and the following disclaimer in the |
| 4401 | documentation and/or other materials provided with the distribution. |
| 4402 | |
| 4403 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4404 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4405 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4406 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4407 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4408 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4409 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4410 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4411 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4412 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4413 | SUCH DAMAGE. |
| 4414 | |
| 4415 | ------------------------------------------------------------------- |
| 4416 | |
| 4417 | Copyright (c) 2007 David Schultz |
| 4418 | All rights reserved. |
| 4419 | |
| 4420 | Redistribution and use in source and binary forms, with or without |
| 4421 | modification, are permitted provided that the following conditions |
| 4422 | are met: |
| 4423 | 1. Redistributions of source code must retain the above copyright |
| 4424 | notice, this list of conditions and the following disclaimer. |
| 4425 | 2. Redistributions in binary form must reproduce the above copyright |
| 4426 | notice, this list of conditions and the following disclaimer in the |
| 4427 | documentation and/or other materials provided with the distribution. |
| 4428 | |
| 4429 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4430 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4431 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4432 | ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4433 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4434 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4435 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4436 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4437 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4438 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4439 | SUCH DAMAGE. |
| 4440 | |
| 4441 | ------------------------------------------------------------------- |
| 4442 | |
| 4443 | Copyright (c) 2007 David Schultz <das@FreeBSD.ORG> |
| 4444 | All rights reserved. |
| 4445 | |
| 4446 | Redistribution and use in source and binary forms, with or without |
| 4447 | modification, are permitted provided that the following conditions |
| 4448 | are met: |
| 4449 | 1. Redistributions of source code must retain the above copyright |
| 4450 | notice, this list of conditions and the following disclaimer. |
| 4451 | 2. Redistributions in binary form must reproduce the above copyright |
| 4452 | notice, this list of conditions and the following disclaimer in the |
| 4453 | documentation and/or other materials provided with the distribution. |
| 4454 | |
| 4455 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4456 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4457 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4458 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4459 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4460 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4461 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4462 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4463 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4464 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4465 | SUCH DAMAGE. |
| 4466 | |
| 4467 | ------------------------------------------------------------------- |
| 4468 | |
| 4469 | Copyright (c) 2007 David Schultz <das@FreeBSD.ORG> |
| 4470 | All rights reserved. |
| 4471 | |
| 4472 | Redistribution and use in source and binary forms, with or without |
| 4473 | modification, are permitted provided that the following conditions |
| 4474 | are met: |
| 4475 | 1. Redistributions of source code must retain the above copyright |
| 4476 | notice, this list of conditions and the following disclaimer. |
| 4477 | 2. Redistributions in binary form must reproduce the above copyright |
| 4478 | notice, this list of conditions and the following disclaimer in the |
| 4479 | documentation and/or other materials provided with the distribution. |
| 4480 | |
| 4481 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4482 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4483 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4484 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4485 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4486 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4487 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4488 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4489 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4490 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4491 | SUCH DAMAGE. |
| 4492 | |
| 4493 | Derived from s_modf.c, which has the following Copyright: |
| 4494 | ==================================================== |
| 4495 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 4496 | |
| 4497 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 4498 | Permission to use, copy, modify, and distribute this |
| 4499 | software is freely granted, provided that this notice |
| 4500 | is preserved. |
| 4501 | |
| 4502 | ------------------------------------------------------------------- |
| 4503 | |
| 4504 | Copyright (c) 2007 Steven G. Kargl |
| 4505 | All rights reserved. |
| 4506 | |
| 4507 | Redistribution and use in source and binary forms, with or without |
| 4508 | modification, are permitted provided that the following conditions |
| 4509 | are met: |
| 4510 | 1. Redistributions of source code must retain the above copyright |
| 4511 | notice unmodified, this list of conditions, and the following |
| 4512 | disclaimer. |
| 4513 | 2. Redistributions in binary form must reproduce the above copyright |
| 4514 | notice, this list of conditions and the following disclaimer in the |
| 4515 | documentation and/or other materials provided with the distribution. |
| 4516 | |
| 4517 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4518 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4519 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4520 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4521 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4522 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4523 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4524 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4525 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4526 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4527 | |
| 4528 | ------------------------------------------------------------------- |
| 4529 | |
| 4530 | Copyright (c) 2007 The NetBSD Foundation, Inc. |
| 4531 | All rights reserved. |
| 4532 | |
| 4533 | This code is derived from software written by Stephen L. Moshier. |
| 4534 | It is redistributed by the NetBSD Foundation by permission of the author. |
| 4535 | |
| 4536 | Redistribution and use in source and binary forms, with or without |
| 4537 | modification, are permitted provided that the following conditions |
| 4538 | are met: |
| 4539 | 1. Redistributions of source code must retain the above copyright |
| 4540 | notice, this list of conditions and the following disclaimer. |
| 4541 | 2. Redistributions in binary form must reproduce the above copyright |
| 4542 | notice, this list of conditions and the following disclaimer in the |
| 4543 | documentation and/or other materials provided with the distribution. |
| 4544 | |
| 4545 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4546 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4547 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4548 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4549 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4550 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4551 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4552 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4553 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4554 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4555 | POSSIBILITY OF SUCH DAMAGE. |
| 4556 | |
| 4557 | ------------------------------------------------------------------- |
| 4558 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 4559 | Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4560 | |
| 4561 | Permission to use, copy, modify, and distribute this software for any |
| 4562 | purpose with or without fee is hereby granted, provided that the above |
| 4563 | copyright notice and this permission notice appear in all copies. |
| 4564 | |
| 4565 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4566 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4567 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4568 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4569 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4570 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4571 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4572 | |
| 4573 | ------------------------------------------------------------------- |
| 4574 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4575 | Copyright (c) 2007-2008 Michael G Schwern |
| 4576 | |
| 4577 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
| 4578 | |
| 4579 | The MIT License: |
| 4580 | |
| 4581 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4582 | of this software and associated documentation files (the "Software"), to deal |
| 4583 | in the Software without restriction, including without limitation the rights |
| 4584 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4585 | copies of the Software, and to permit persons to whom the Software is |
| 4586 | furnished to do so, subject to the following conditions: |
| 4587 | |
| 4588 | The above copyright notice and this permission notice shall be included in |
| 4589 | all copies or substantial portions of the Software. |
| 4590 | |
| 4591 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4592 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4593 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4594 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4595 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4596 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4597 | THE SOFTWARE. |
| 4598 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4599 | ------------------------------------------------------------------- |
| 4600 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4601 | Copyright (c) 2007-2008 Michael G Schwern |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4602 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4603 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4604 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4605 | The MIT License: |
| 4606 | |
| 4607 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4608 | of this software and associated documentation files (the "Software"), to deal |
| 4609 | in the Software without restriction, including without limitation the rights |
| 4610 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4611 | copies of the Software, and to permit persons to whom the Software is |
| 4612 | furnished to do so, subject to the following conditions: |
| 4613 | |
| 4614 | The above copyright notice and this permission notice shall be included in |
| 4615 | all copies or substantial portions of the Software. |
| 4616 | |
| 4617 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4618 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4619 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4620 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4621 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4622 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4623 | THE SOFTWARE. |
| 4624 | |
| 4625 | Origin: http://code.google.com/p/y2038 |
| 4626 | Modified for Bionic by the Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4627 | |
| 4628 | ------------------------------------------------------------------- |
| 4629 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4630 | Copyright (c) 2007-2008 David Schultz <das@FreeBSD.ORG> |
| 4631 | All rights reserved. |
| 4632 | |
| 4633 | Redistribution and use in source and binary forms, with or without |
| 4634 | modification, are permitted provided that the following conditions |
| 4635 | are met: |
| 4636 | 1. Redistributions of source code must retain the above copyright |
| 4637 | notice, this list of conditions and the following disclaimer. |
| 4638 | 2. Redistributions in binary form must reproduce the above copyright |
| 4639 | notice, this list of conditions and the following disclaimer in the |
| 4640 | documentation and/or other materials provided with the distribution. |
| 4641 | |
| 4642 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4643 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4644 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4645 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4646 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4647 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4648 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4649 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4650 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4651 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4652 | SUCH DAMAGE. |
| 4653 | |
| 4654 | ------------------------------------------------------------------- |
| 4655 | |
| 4656 | Copyright (c) 2007-2013 Bruce D. Evans |
| 4657 | All rights reserved. |
| 4658 | |
| 4659 | Redistribution and use in source and binary forms, with or without |
| 4660 | modification, are permitted provided that the following conditions |
| 4661 | are met: |
| 4662 | 1. Redistributions of source code must retain the above copyright |
| 4663 | notice unmodified, this list of conditions, and the following |
| 4664 | disclaimer. |
| 4665 | 2. Redistributions in binary form must reproduce the above copyright |
| 4666 | notice, this list of conditions and the following disclaimer in the |
| 4667 | documentation and/or other materials provided with the distribution. |
| 4668 | |
| 4669 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4670 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4671 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4672 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4673 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4674 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4675 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4676 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4677 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4678 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4679 | |
| 4680 | ------------------------------------------------------------------- |
| 4681 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4682 | Copyright (c) 2008 David Schultz <das@FreeBSD.ORG> |
| 4683 | All rights reserved. |
| 4684 | |
| 4685 | Redistribution and use in source and binary forms, with or without |
| 4686 | modification, are permitted provided that the following conditions |
| 4687 | are met: |
| 4688 | 1. Redistributions of source code must retain the above copyright |
| 4689 | notice, this list of conditions and the following disclaimer. |
| 4690 | 2. Redistributions in binary form must reproduce the above copyright |
| 4691 | notice, this list of conditions and the following disclaimer in the |
| 4692 | documentation and/or other materials provided with the distribution. |
| 4693 | |
| 4694 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4695 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4696 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4697 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4698 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4699 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4700 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4701 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4702 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4703 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4704 | SUCH DAMAGE. |
| 4705 | |
| 4706 | ------------------------------------------------------------------- |
| 4707 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4708 | Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> |
| 4709 | |
| 4710 | Permission to use, copy, modify, and distribute this software for any |
| 4711 | purpose with or without fee is hereby granted, provided that the above |
| 4712 | copyright notice and this permission notice appear in all copies. |
| 4713 | |
| 4714 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4715 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4716 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4717 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4718 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4719 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4720 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4721 | |
| 4722 | ------------------------------------------------------------------- |
| 4723 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4724 | Copyright (c) 2008 Todd C. Miller <millert@openbsd.org> |
| 4725 | |
| 4726 | Permission to use, copy, modify, and distribute this software for any |
| 4727 | purpose with or without fee is hereby granted, provided that the above |
| 4728 | copyright notice and this permission notice appear in all copies. |
| 4729 | |
| 4730 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4731 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4732 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4733 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4734 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4735 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4736 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4737 | |
| 4738 | ------------------------------------------------------------------- |
| 4739 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4740 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
| 4741 | |
| 4742 | Permission to use, copy, modify, and distribute this software for any |
| 4743 | purpose with or without fee is hereby granted, provided that the above |
| 4744 | copyright notice and this permission notice appear in all copies. |
| 4745 | |
| 4746 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4747 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4748 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4749 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4750 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4751 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4752 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4753 | |
| 4754 | ------------------------------------------------------------------- |
| 4755 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4756 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4757 | All rights reserved. |
| 4758 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4759 | Copyright (c) 2011 The FreeBSD Foundation |
| 4760 | All rights reserved. |
| 4761 | Portions of this software were developed by David Chisnall |
| 4762 | under sponsorship from the FreeBSD Foundation. |
| 4763 | |
| 4764 | Redistribution and use in source and binary forms, with or without |
| 4765 | modification, are permitted provided that the following conditions |
| 4766 | are met: |
| 4767 | 1. Redistributions of source code must retain the above copyright |
| 4768 | notice, this list of conditions and the following disclaimer. |
| 4769 | 2. Redistributions in binary form must reproduce the above copyright |
| 4770 | notice, this list of conditions and the following disclaimer in the |
| 4771 | documentation and/or other materials provided with the distribution. |
| 4772 | |
| 4773 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4774 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4775 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4776 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4777 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4778 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4779 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4780 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4781 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4782 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4783 | SUCH DAMAGE. |
| 4784 | |
| 4785 | ------------------------------------------------------------------- |
| 4786 | |
| 4787 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4788 | All rights reserved. |
| 4789 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4790 | Redistribution and use in source and binary forms, with or without |
| 4791 | modification, are permitted provided that the following conditions |
| 4792 | are met: |
| 4793 | 1. Redistributions of source code must retain the above copyright |
| 4794 | notice, this list of conditions and the following disclaimer. |
| 4795 | 2. Redistributions in binary form must reproduce the above copyright |
| 4796 | notice, this list of conditions and the following disclaimer in the |
| 4797 | documentation and/or other materials provided with the distribution. |
| 4798 | |
| 4799 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4800 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4801 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4802 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4803 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4804 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4805 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4806 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4807 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4808 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4809 | SUCH DAMAGE. |
| 4810 | |
| 4811 | ------------------------------------------------------------------- |
| 4812 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 4813 | Copyright (c) 2009 The NetBSD Foundation, Inc. |
| 4814 | |
| 4815 | This code is derived from software contributed to The NetBSD Foundation |
| 4816 | by Roy Marples. |
| 4817 | |
| 4818 | Redistribution and use in source and binary forms, with or without |
| 4819 | modification, are permitted provided that the following conditions |
| 4820 | are met: |
| 4821 | 1. Redistributions of source code must retain the above copyright |
| 4822 | notice, this list of conditions and the following disclaimer. |
| 4823 | 2. Redistributions in binary form must reproduce the above copyright |
| 4824 | notice, this list of conditions and the following disclaimer in the |
| 4825 | documentation and/or other materials provided with the distribution. |
| 4826 | |
| 4827 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4828 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4829 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4830 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4831 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4832 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4833 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4834 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4835 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4836 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4837 | |
| 4838 | ------------------------------------------------------------------- |
| 4839 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4840 | Copyright (c) 2009-2013 Steven G. Kargl |
| 4841 | All rights reserved. |
| 4842 | |
| 4843 | Redistribution and use in source and binary forms, with or without |
| 4844 | modification, are permitted provided that the following conditions |
| 4845 | are met: |
| 4846 | 1. Redistributions of source code must retain the above copyright |
| 4847 | notice unmodified, this list of conditions, and the following |
| 4848 | disclaimer. |
| 4849 | 2. Redistributions in binary form must reproduce the above copyright |
| 4850 | notice, this list of conditions and the following disclaimer in the |
| 4851 | documentation and/or other materials provided with the distribution. |
| 4852 | |
| 4853 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4854 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4855 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4856 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4857 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4858 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4859 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4860 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4861 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4862 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4863 | |
| 4864 | Optimized by Bruce D. Evans. |
| 4865 | |
| 4866 | ------------------------------------------------------------------- |
| 4867 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4868 | Copyright (c) 2010 The NetBSD Foundation, Inc. |
| 4869 | All rights reserved. |
| 4870 | |
| 4871 | Redistribution and use in source and binary forms, with or without |
| 4872 | modification, are permitted provided that the following conditions |
| 4873 | are met: |
| 4874 | 1. Redistributions of source code must retain the above copyright |
| 4875 | notice, this list of conditions and the following disclaimer. |
| 4876 | 2. Redistributions in binary form must reproduce the above copyright |
| 4877 | notice, this list of conditions and the following disclaimer in the |
| 4878 | documentation and/or other materials provided with the distribution. |
| 4879 | |
| 4880 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4881 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4882 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4883 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4884 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4885 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4886 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4887 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4888 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4889 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4890 | POSSIBILITY OF SUCH DAMAGE. |
| 4891 | |
| 4892 | ------------------------------------------------------------------- |
| 4893 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4894 | Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4895 | |
| 4896 | Permission to use, copy, modify, and distribute this software for any |
| 4897 | purpose with or without fee is hereby granted, provided that the above |
| 4898 | copyright notice and this permission notice appear in all copies. |
| 4899 | |
| 4900 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4901 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4902 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4903 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4904 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4905 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4906 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4907 | |
| 4908 | ------------------------------------------------------------------- |
| 4909 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4910 | Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4911 | All rights reserved. |
| 4912 | |
| 4913 | Redistribution and use in source and binary forms, with or without |
| 4914 | modification, are permitted provided that the following conditions are met: |
| 4915 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4916 | * Redistributions of source code must retain the above copyright notice, |
| 4917 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4918 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4919 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4920 | * this list of conditions and the following disclaimer in the documentation |
| 4921 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4922 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4923 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4924 | * may be used to endorse or promote products derived from this software |
| 4925 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4926 | |
| 4927 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4928 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4929 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4930 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4931 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4932 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4933 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4934 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4935 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4936 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4937 | |
| 4938 | ------------------------------------------------------------------- |
| 4939 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4940 | Copyright (c) 2010, Intel Corporation |
| 4941 | All rights reserved. |
| 4942 | |
| 4943 | Redistribution and use in source and binary forms, with or without |
| 4944 | modification, are permitted provided that the following conditions are met: |
| 4945 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4946 | * Redistributions of source code must retain the above copyright notice, |
| 4947 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4948 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4949 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4950 | * this list of conditions and the following disclaimer in the documentation |
| 4951 | * and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4952 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4953 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4954 | * may be used to endorse or promote products derived from this software |
| 4955 | * without specific prior written permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4956 | |
| 4957 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4958 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4959 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4960 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4961 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4962 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4963 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4964 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4965 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4966 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4967 | |
| 4968 | ------------------------------------------------------------------- |
| 4969 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4970 | Copyright (c) 2011 David Chisnall |
| 4971 | All rights reserved. |
| 4972 | |
| 4973 | Redistribution and use in source and binary forms, with or without |
| 4974 | modification, are permitted provided that the following conditions |
| 4975 | are met: |
| 4976 | 1. Redistributions of source code must retain the above copyright |
| 4977 | notice, this list of conditions and the following disclaimer. |
| 4978 | 2. Redistributions in binary form must reproduce the above copyright |
| 4979 | notice, this list of conditions and the following disclaimer in the |
| 4980 | documentation and/or other materials provided with the distribution. |
| 4981 | |
| 4982 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4983 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4984 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4985 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4986 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4987 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4988 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4989 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4990 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4991 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4992 | SUCH DAMAGE. |
| 4993 | |
| 4994 | ------------------------------------------------------------------- |
| 4995 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4996 | Copyright (c) 2011 David Schultz |
| 4997 | All rights reserved. |
| 4998 | |
| 4999 | Redistribution and use in source and binary forms, with or without |
| 5000 | modification, are permitted provided that the following conditions |
| 5001 | are met: |
| 5002 | 1. Redistributions of source code must retain the above copyright |
| 5003 | notice unmodified, this list of conditions, and the following |
| 5004 | disclaimer. |
| 5005 | 2. Redistributions in binary form must reproduce the above copyright |
| 5006 | notice, this list of conditions and the following disclaimer in the |
| 5007 | documentation and/or other materials provided with the distribution. |
| 5008 | |
| 5009 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 5010 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 5011 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5012 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5013 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 5014 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5015 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5016 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5017 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5018 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5019 | |
| 5020 | ------------------------------------------------------------------- |
| 5021 | |
| 5022 | Copyright (c) 2011 David Schultz <das@FreeBSD.ORG> |
| 5023 | All rights reserved. |
| 5024 | |
| 5025 | Redistribution and use in source and binary forms, with or without |
| 5026 | modification, are permitted provided that the following conditions |
| 5027 | are met: |
| 5028 | 1. Redistributions of source code must retain the above copyright |
| 5029 | notice, this list of conditions and the following disclaimer. |
| 5030 | 2. Redistributions in binary form must reproduce the above copyright |
| 5031 | notice, this list of conditions and the following disclaimer in the |
| 5032 | documentation and/or other materials provided with the distribution. |
| 5033 | |
| 5034 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5035 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5036 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5037 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5038 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5039 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5040 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5041 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5042 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5043 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5044 | SUCH DAMAGE. |
| 5045 | |
| 5046 | ------------------------------------------------------------------- |
| 5047 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5048 | Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org> |
| 5049 | David Chisnall <theraven@FreeBSD.org> |
| 5050 | All rights reserved. |
| 5051 | |
| 5052 | Redistribution and use in source and binary forms, with or without |
| 5053 | modification, are permitted provided that the following conditions |
| 5054 | are met: |
| 5055 | 1. Redistributions of source code must retain the above copyright |
| 5056 | notice, this list of conditions and the following disclaimer. |
| 5057 | 2. Redistributions in binary form must reproduce the above copyright |
| 5058 | notice, this list of conditions and the following disclaimer in the |
| 5059 | documentation and/or other materials provided with the distribution. |
| 5060 | |
| 5061 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5062 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5063 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5064 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5065 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5066 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5067 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5068 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5069 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5070 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5071 | SUCH DAMAGE. |
| 5072 | |
| 5073 | ------------------------------------------------------------------- |
| 5074 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5075 | Copyright (c) 2011 Intel Corporation |
| 5076 | All rights reserved. |
| 5077 | |
| 5078 | Redistribution and use in source and binary forms, with or without |
| 5079 | modification, are permitted provided that the following conditions are met: |
| 5080 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5081 | * Redistributions of source code must retain the above copyright notice, |
| 5082 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5083 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5084 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5085 | * this list of conditions and the following disclaimer in the documentation |
| 5086 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5087 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5088 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5089 | * may be used to endorse or promote products derived from this software |
| 5090 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5091 | |
| 5092 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5093 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5094 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5095 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5096 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5097 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5098 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5099 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5100 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5101 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5102 | |
| 5103 | ------------------------------------------------------------------- |
| 5104 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 5105 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 5106 | |
| 5107 | Permission to use, copy, modify, and distribute this software for any |
| 5108 | purpose with or without fee is hereby granted, provided that the above |
| 5109 | copyright notice and this permission notice appear in all copies. |
| 5110 | |
| 5111 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5112 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5113 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5114 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5115 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5116 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5117 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5118 | |
| 5119 | ------------------------------------------------------------------- |
| 5120 | |
| 5121 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 5122 | Copyright (c) 2009 Ted Unangst |
| 5123 | |
| 5124 | Permission to use, copy, modify, and distribute this software for any |
| 5125 | purpose with or without fee is hereby granted, provided that the above |
| 5126 | copyright notice and this permission notice appear in all copies. |
| 5127 | |
| 5128 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5129 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5130 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5131 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5132 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5133 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5134 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5135 | |
| 5136 | ------------------------------------------------------------------- |
| 5137 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5138 | Copyright (c) 2011 The Android Open Source Project |
| 5139 | Copyright (c) 2008 ARM Ltd |
| 5140 | All rights reserved. |
| 5141 | |
| 5142 | Redistribution and use in source and binary forms, with or without |
| 5143 | modification, are permitted provided that the following conditions |
| 5144 | are met: |
| 5145 | 1. Redistributions of source code must retain the above copyright |
| 5146 | notice, this list of conditions and the following disclaimer. |
| 5147 | 2. Redistributions in binary form must reproduce the above copyright |
| 5148 | notice, this list of conditions and the following disclaimer in the |
| 5149 | documentation and/or other materials provided with the distribution. |
| 5150 | 3. The name of the company may not be used to endorse or promote |
| 5151 | products derived from this software without specific prior written |
| 5152 | permission. |
| 5153 | |
| 5154 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5155 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5156 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5157 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5158 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5159 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5160 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5161 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5162 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5163 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5164 | |
| 5165 | ------------------------------------------------------------------- |
| 5166 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5167 | Copyright (c) 2011, 2012, 2013 Intel Corporation |
| 5168 | All rights reserved. |
| 5169 | |
| 5170 | Redistribution and use in source and binary forms, with or without |
| 5171 | modification, are permitted provided that the following conditions are met: |
| 5172 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5173 | * Redistributions of source code must retain the above copyright notice, |
| 5174 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5175 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5176 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5177 | * this list of conditions and the following disclaimer in the documentation |
| 5178 | * and/or other materials provided with the distribution. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5179 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5180 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5181 | * may be used to endorse or promote products derived from this software |
| 5182 | * without specific prior written permission. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5183 | |
| 5184 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5185 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5186 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5187 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5188 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5189 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5190 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5191 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5192 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5193 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5194 | |
| 5195 | ------------------------------------------------------------------- |
| 5196 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5197 | Copyright (c) 2011, Intel Corporation |
| 5198 | All rights reserved. |
| 5199 | |
| 5200 | Redistribution and use in source and binary forms, with or without |
| 5201 | modification, are permitted provided that the following conditions are met: |
| 5202 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5203 | * Redistributions of source code must retain the above copyright notice, |
| 5204 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5205 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5206 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5207 | * this list of conditions and the following disclaimer in the documentation |
| 5208 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5209 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5210 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5211 | * may be used to endorse or promote products derived from this software |
| 5212 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5213 | |
| 5214 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5215 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5216 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5217 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5218 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5219 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5220 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5221 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5222 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5223 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5224 | |
| 5225 | ------------------------------------------------------------------- |
| 5226 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5227 | Copyright (c) 2011, VMware, Inc. |
| 5228 | All rights reserved. |
| 5229 | |
| 5230 | Redistribution and use in source and binary forms, with or without |
| 5231 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5232 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5233 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5234 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5235 | notice, this list of conditions and the following disclaimer in the |
| 5236 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5237 | * 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] | 5238 | may be used to endorse or promote products derived from this software |
| 5239 | without specific prior written permission. |
| 5240 | |
| 5241 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 5242 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5243 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5244 | ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR |
| 5245 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5246 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5247 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 5248 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5249 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5250 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5251 | |
| 5252 | ------------------------------------------------------------------- |
| 5253 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5254 | Copyright (c) 2012 Stephen Montgomery-Smith <stephen@FreeBSD.ORG> |
| 5255 | All rights reserved. |
| 5256 | |
| 5257 | Redistribution and use in source and binary forms, with or without |
| 5258 | modification, are permitted provided that the following conditions |
| 5259 | are met: |
| 5260 | 1. Redistributions of source code must retain the above copyright |
| 5261 | notice, this list of conditions and the following disclaimer. |
| 5262 | 2. Redistributions in binary form must reproduce the above copyright |
| 5263 | notice, this list of conditions and the following disclaimer in the |
| 5264 | documentation and/or other materials provided with the distribution. |
| 5265 | |
| 5266 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5267 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5268 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5269 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5270 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5271 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5272 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5273 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5274 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5275 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5276 | SUCH DAMAGE. |
| 5277 | |
| 5278 | ------------------------------------------------------------------- |
| 5279 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5280 | Copyright (c) 2012, Linaro Limited |
| 5281 | All rights reserved. |
| 5282 | |
| 5283 | Redistribution and use in source and binary forms, with or without |
| 5284 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5285 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5286 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5287 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5288 | notice, this list of conditions and the following disclaimer in the |
| 5289 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5290 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5291 | names of its contributors may be used to endorse or promote products |
| 5292 | derived from this software without specific prior written permission. |
| 5293 | |
| 5294 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5295 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5296 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5297 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5298 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5299 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5300 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5301 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5302 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5303 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5304 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5305 | |
| 5306 | ------------------------------------------------------------------- |
| 5307 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5308 | Copyright (c) 2012, Linaro Limited |
| 5309 | All rights reserved. |
| 5310 | Copyright (c) 2014, NVIDIA Corporation. All rights reserved. |
| 5311 | |
| 5312 | Redistribution and use in source and binary forms, with or without |
| 5313 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5314 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5315 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5316 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5317 | notice, this list of conditions and the following disclaimer in the |
| 5318 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5319 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5320 | names of its contributors may be used to endorse or promote products |
| 5321 | derived from this software without specific prior written permission. |
| 5322 | |
| 5323 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5324 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5325 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5326 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5327 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5328 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5329 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5330 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5331 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5332 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5333 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5334 | |
| 5335 | ------------------------------------------------------------------- |
| 5336 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5337 | Copyright (c) 2012-2013, Linaro Limited |
| 5338 | All rights reserved. |
| 5339 | |
| 5340 | Redistribution and use in source and binary forms, with or without |
| 5341 | modification, are permitted provided that the following conditions are met: |
| 5342 | * Redistributions of source code must retain the above copyright |
| 5343 | notice, this list of conditions and the following disclaimer. |
| 5344 | * Redistributions in binary form must reproduce the above copyright |
| 5345 | notice, this list of conditions and the following disclaimer in the |
| 5346 | documentation and/or other materials provided with the distribution. |
| 5347 | * Neither the name of the Linaro nor the |
| 5348 | names of its contributors may be used to endorse or promote products |
| 5349 | derived from this software without specific prior written permission. |
| 5350 | |
| 5351 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5352 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5353 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5354 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5355 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5356 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5357 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5358 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5359 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5360 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5361 | |
| 5362 | ------------------------------------------------------------------- |
| 5363 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 5364 | Copyright (c) 2013 |
| 5365 | MIPS Technologies, Inc., California. |
| 5366 | |
| 5367 | Redistribution and use in source and binary forms, with or without |
| 5368 | modification, are permitted provided that the following conditions |
| 5369 | are met: |
| 5370 | 1. Redistributions of source code must retain the above copyright |
| 5371 | notice, this list of conditions and the following disclaimer. |
| 5372 | 2. Redistributions in binary form must reproduce the above copyright |
| 5373 | notice, this list of conditions and the following disclaimer in the |
| 5374 | documentation and/or other materials provided with the distribution. |
| 5375 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 5376 | contributors may be used to endorse or promote products derived from |
| 5377 | this software without specific prior written permission. |
| 5378 | |
| 5379 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 5380 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5381 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5382 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 5383 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5384 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5385 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5386 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5387 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5388 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5389 | SUCH DAMAGE. |
| 5390 | |
| 5391 | ------------------------------------------------------------------- |
| 5392 | |
Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 5393 | Copyright (c) 2013 ARM Ltd |
| 5394 | All rights reserved. |
| 5395 | |
| 5396 | Redistribution and use in source and binary forms, with or without |
| 5397 | modification, are permitted provided that the following conditions |
| 5398 | are met: |
| 5399 | 1. Redistributions of source code must retain the above copyright |
| 5400 | notice, this list of conditions and the following disclaimer. |
| 5401 | 2. Redistributions in binary form must reproduce the above copyright |
| 5402 | notice, this list of conditions and the following disclaimer in the |
| 5403 | documentation and/or other materials provided with the distribution. |
| 5404 | 3. The name of the company may not be used to endorse or promote |
| 5405 | products derived from this software without specific prior written |
| 5406 | permission. |
| 5407 | |
| 5408 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5409 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5410 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5411 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5412 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5413 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5414 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5415 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5416 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5417 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5418 | |
| 5419 | ------------------------------------------------------------------- |
| 5420 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5421 | Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org> |
| 5422 | |
| 5423 | Permission to use, copy, modify, and distribute this software for any |
| 5424 | purpose with or without fee is hereby granted, provided that the above |
| 5425 | copyright notice and this permission notice appear in all copies. |
| 5426 | |
| 5427 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5428 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5429 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5430 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5431 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5432 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5433 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5434 | |
| 5435 | ------------------------------------------------------------------- |
| 5436 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5437 | Copyright (c) 2013 David Chisnall |
| 5438 | All rights reserved. |
| 5439 | |
| 5440 | Redistribution and use in source and binary forms, with or without |
| 5441 | modification, are permitted provided that the following conditions |
| 5442 | are met: |
| 5443 | 1. Redistributions of source code must retain the above copyright |
| 5444 | notice, this list of conditions and the following disclaimer. |
| 5445 | 2. Redistributions in binary form must reproduce the above copyright |
| 5446 | notice, this list of conditions and the following disclaimer in the |
| 5447 | documentation and/or other materials provided with the distribution. |
| 5448 | |
| 5449 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5450 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5451 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5452 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5453 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5454 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5455 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5456 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5457 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5458 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5459 | SUCH DAMAGE. |
| 5460 | |
| 5461 | ------------------------------------------------------------------- |
| 5462 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5463 | Copyright (c) 2013 The NetBSD Foundation, Inc. |
| 5464 | All rights reserved. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5465 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5466 | This code is derived from software contributed to The NetBSD Foundation |
| 5467 | by Christos Zoulas. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5468 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5469 | Redistribution and use in source and binary forms, with or without |
| 5470 | modification, are permitted provided that the following conditions |
| 5471 | are met: |
| 5472 | 1. Redistributions of source code must retain the above copyright |
| 5473 | notice, this list of conditions and the following disclaimer. |
| 5474 | 2. Redistributions in binary form must reproduce the above copyright |
| 5475 | notice, this list of conditions and the following disclaimer in the |
| 5476 | documentation and/or other materials provided with the distribution. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5477 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5478 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 5479 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 5480 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 5481 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 5482 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 5483 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 5484 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 5485 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 5486 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 5487 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 5488 | POSSIBILITY OF SUCH DAMAGE. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5489 | |
| 5490 | ------------------------------------------------------------------- |
| 5491 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5492 | Copyright (c) 2013, Linaro Limited |
| 5493 | All rights reserved. |
| 5494 | |
| 5495 | Redistribution and use in source and binary forms, with or without |
| 5496 | modification, are permitted provided that the following conditions are met: |
| 5497 | * Redistributions of source code must retain the above copyright |
| 5498 | notice, this list of conditions and the following disclaimer. |
| 5499 | * Redistributions in binary form must reproduce the above copyright |
| 5500 | notice, this list of conditions and the following disclaimer in the |
| 5501 | documentation and/or other materials provided with the distribution. |
| 5502 | * Neither the name of the Linaro nor the |
| 5503 | names of its contributors may be used to endorse or promote products |
| 5504 | derived from this software without specific prior written permission. |
| 5505 | |
| 5506 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5507 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5508 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5509 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5510 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5511 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5512 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5513 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5514 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5515 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5516 | |
| 5517 | ------------------------------------------------------------------- |
| 5518 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5519 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 5520 | Johnny Qiu <joqiu@nvidia.com> |
| 5521 | Shu Zhang <chazhang@nvidia.com> |
| 5522 | |
| 5523 | Redistribution and use in source and binary forms, with or without |
| 5524 | modification, are permitted provided that the following conditions are |
| 5525 | met: |
| 5526 | * Redistributions of source code must retain the above copyright |
| 5527 | notice, this list of conditions and the following disclaimer. |
| 5528 | * Redistributions in binary form must reproduce the above |
| 5529 | copyright notice, this list of conditions and the following |
| 5530 | disclaimer in the documentation and/or other materials provided |
| 5531 | with the distribution. |
| 5532 | * Neither the name of The Linux Foundation nor the names of its |
| 5533 | contributors may be used to endorse or promote products derived |
| 5534 | from this software without specific prior written permission. |
| 5535 | |
| 5536 | THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 5537 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5538 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| 5539 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| 5540 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 5541 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 5542 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 5543 | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 5544 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 5545 | OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 5546 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5547 | |
| 5548 | ------------------------------------------------------------------- |
| 5549 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5550 | Copyright (c) 2013-2015, Linaro Limited |
| 5551 | All rights reserved. |
| 5552 | |
| 5553 | Redistribution and use in source and binary forms, with or without |
| 5554 | modification, are permitted provided that the following conditions are met: |
| 5555 | * Redistributions of source code must retain the above copyright |
| 5556 | notice, this list of conditions and the following disclaimer. |
| 5557 | * Redistributions in binary form must reproduce the above copyright |
| 5558 | notice, this list of conditions and the following disclaimer in the |
| 5559 | documentation and/or other materials provided with the distribution. |
| 5560 | * Neither the name of the Linaro nor the |
| 5561 | names of its contributors may be used to endorse or promote products |
| 5562 | derived from this software without specific prior written permission. |
| 5563 | |
| 5564 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5565 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5566 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5567 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5568 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5569 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5570 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5571 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5572 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5573 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5574 | |
| 5575 | ------------------------------------------------------------------- |
| 5576 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5577 | Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org> |
| 5578 | Copyright (c) 2014 Bob Beck <beck@obtuse.com> |
| 5579 | |
| 5580 | Permission to use, copy, modify, and distribute this software for any |
| 5581 | purpose with or without fee is hereby granted, provided that the above |
| 5582 | copyright notice and this permission notice appear in all copies. |
| 5583 | |
| 5584 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5585 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5586 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5587 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5588 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5589 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5590 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5591 | |
| 5592 | Emulation of getentropy(2) as documented at: |
Josh Gao | 98d655c | 2016-11-10 16:08:20 -0800 | [diff] [blame] | 5593 | http://man.openbsd.org/getentropy.2 |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5594 | |
| 5595 | ------------------------------------------------------------------- |
| 5596 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5597 | Copyright (c) 2014, Intel Corporation |
| 5598 | All rights reserved. |
| 5599 | |
| 5600 | Redistribution and use in source and binary forms, with or without |
| 5601 | modification, are permitted provided that the following conditions are met: |
| 5602 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5603 | * Redistributions of source code must retain the above copyright notice, |
| 5604 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5605 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5606 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5607 | * this list of conditions and the following disclaimer in the documentation |
| 5608 | * and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5609 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5610 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5611 | * may be used to endorse or promote products derived from this software |
| 5612 | * without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5613 | |
| 5614 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5615 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5616 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5617 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5618 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5619 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5620 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5621 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5622 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5623 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5624 | |
| 5625 | ------------------------------------------------------------------- |
| 5626 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5627 | Copyright (c) 2014, Linaro Limited |
| 5628 | All rights reserved. |
| 5629 | |
| 5630 | Redistribution and use in source and binary forms, with or without |
| 5631 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5632 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5633 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5634 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5635 | notice, this list of conditions and the following disclaimer in the |
| 5636 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5637 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5638 | names of its contributors may be used to endorse or promote products |
| 5639 | derived from this software without specific prior written permission. |
| 5640 | |
| 5641 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5642 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5643 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5644 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5645 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5646 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5647 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5648 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5649 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5650 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5651 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5652 | |
| 5653 | ------------------------------------------------------------------- |
| 5654 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5655 | Copyright (c) 2015 ARM Ltd |
| 5656 | All rights reserved. |
| 5657 | |
| 5658 | Redistribution and use in source and binary forms, with or without |
| 5659 | modification, are permitted provided that the following conditions |
| 5660 | are met: |
| 5661 | 1. Redistributions of source code must retain the above copyright |
| 5662 | notice, this list of conditions and the following disclaimer. |
| 5663 | 2. Redistributions in binary form must reproduce the above copyright |
| 5664 | notice, this list of conditions and the following disclaimer in the |
| 5665 | documentation and/or other materials provided with the distribution. |
| 5666 | 3. The name of the company may not be used to endorse or promote |
| 5667 | products derived from this software without specific prior written |
| 5668 | permission. |
| 5669 | |
| 5670 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5671 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5672 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5673 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5674 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5675 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5676 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5677 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5678 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5679 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5680 | |
| 5681 | ------------------------------------------------------------------- |
| 5682 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 5683 | Copyright (c) 2015 Joerg Sonnenberger <joerg@NetBSD.org>. |
| 5684 | All rights reserved. |
| 5685 | |
| 5686 | Redistribution and use in source and binary forms, with or without |
| 5687 | modification, are permitted provided that the following conditions |
| 5688 | are met: |
| 5689 | |
| 5690 | 1. Redistributions of source code must retain the above copyright |
| 5691 | notice, this list of conditions and the following disclaimer. |
| 5692 | 2. Redistributions in binary form must reproduce the above copyright |
| 5693 | notice, this list of conditions and the following disclaimer in |
| 5694 | the documentation and/or other materials provided with the |
| 5695 | distribution. |
| 5696 | |
| 5697 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5698 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5699 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 5700 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 5701 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5702 | INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 5703 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5704 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 5705 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 5706 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 5707 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5708 | SUCH DAMAGE. |
| 5709 | |
| 5710 | ------------------------------------------------------------------- |
| 5711 | |
Prashant Patil | fcb877a | 2017-03-16 18:07:00 +0530 | [diff] [blame] | 5712 | Copyright (c) 2017 Imagination Technologies. |
| 5713 | |
| 5714 | All rights reserved. |
| 5715 | |
| 5716 | Redistribution and use in source and binary forms, with or without |
| 5717 | modification, are permitted provided that the following conditions |
| 5718 | are met: |
| 5719 | |
| 5720 | * Redistributions of source code must retain the above copyright |
| 5721 | notice, this list of conditions and the following disclaimer. |
| 5722 | * Redistributions in binary form must reproduce the above copyright |
| 5723 | notice, this list of conditions and the following disclaimer |
| 5724 | in the documentation and/or other materials provided with |
| 5725 | the distribution. |
| 5726 | * Neither the name of Imagination Technologies nor the names of its |
| 5727 | contributors may be used to endorse or promote products derived |
| 5728 | from this software without specific prior written permission. |
| 5729 | |
| 5730 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5731 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5732 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5733 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5734 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5735 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5736 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5737 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5738 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5739 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5740 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5741 | |
| 5742 | ------------------------------------------------------------------- |
| 5743 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5744 | Copyright (c)1999 Citrus Project, |
| 5745 | All rights reserved. |
| 5746 | |
| 5747 | Redistribution and use in source and binary forms, with or without |
| 5748 | modification, are permitted provided that the following conditions |
| 5749 | are met: |
| 5750 | 1. Redistributions of source code must retain the above copyright |
| 5751 | notice, this list of conditions and the following disclaimer. |
| 5752 | 2. Redistributions in binary form must reproduce the above copyright |
| 5753 | notice, this list of conditions and the following disclaimer in the |
| 5754 | documentation and/or other materials provided with the distribution. |
| 5755 | |
| 5756 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5757 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5758 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5759 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5760 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5761 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5762 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5763 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5764 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5765 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5766 | SUCH DAMAGE. |
| 5767 | |
| 5768 | ------------------------------------------------------------------- |
| 5769 | |
| 5770 | Copyright (c)2001 Citrus Project, |
| 5771 | All rights reserved. |
| 5772 | |
| 5773 | Redistribution and use in source and binary forms, with or without |
| 5774 | modification, are permitted provided that the following conditions |
| 5775 | are met: |
| 5776 | 1. Redistributions of source code must retain the above copyright |
| 5777 | notice, this list of conditions and the following disclaimer. |
| 5778 | 2. Redistributions in binary form must reproduce the above copyright |
| 5779 | notice, this list of conditions and the following disclaimer in the |
| 5780 | documentation and/or other materials provided with the distribution. |
| 5781 | |
| 5782 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5783 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5784 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5785 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5786 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5787 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5788 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5789 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5790 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5791 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5792 | SUCH DAMAGE. |
| 5793 | |
| 5794 | ------------------------------------------------------------------- |
| 5795 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5796 | Copyright (c)2003 Citrus Project, |
| 5797 | All rights reserved. |
| 5798 | |
| 5799 | Redistribution and use in source and binary forms, with or without |
| 5800 | modification, are permitted provided that the following conditions |
| 5801 | are met: |
| 5802 | 1. Redistributions of source code must retain the above copyright |
| 5803 | notice, this list of conditions and the following disclaimer. |
| 5804 | 2. Redistributions in binary form must reproduce the above copyright |
| 5805 | notice, this list of conditions and the following disclaimer in the |
| 5806 | documentation and/or other materials provided with the distribution. |
| 5807 | |
| 5808 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5809 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5810 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5811 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5812 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5813 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5814 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5815 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5816 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5817 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5818 | SUCH DAMAGE. |
| 5819 | |
| 5820 | ------------------------------------------------------------------- |
| 5821 | |
Elliott Hughes | 77a3e28 | 2016-08-08 12:39:56 -0700 | [diff] [blame] | 5822 | Copyright 1989 The Regents of the University of California. |
| 5823 | All rights reserved. |
| 5824 | |
| 5825 | Redistribution and use in source and binary forms, with or without |
| 5826 | modification, are permitted provided that the following conditions |
| 5827 | are met: |
| 5828 | 1. Redistributions of source code must retain the above copyright |
| 5829 | notice, this list of conditions and the following disclaimer. |
| 5830 | 2. Redistributions in binary form must reproduce the above copyright |
| 5831 | notice, this list of conditions and the following disclaimer in the |
| 5832 | documentation and/or other materials provided with the distribution. |
| 5833 | 3. Neither the name of the University nor the names of its contributors |
| 5834 | may be used to endorse or promote products derived from this software |
| 5835 | without specific prior written permission. |
| 5836 | |
| 5837 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND |
| 5838 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5839 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5840 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 5841 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5842 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5843 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5844 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5845 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5846 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5847 | |
| 5848 | ------------------------------------------------------------------- |
| 5849 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 5850 | Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
| 5851 | Copyright 2008 Damien Miller <djm@openbsd.org> |
| 5852 | All rights reserved. |
| 5853 | |
| 5854 | Theo de Raadt <deraadt@openbsd.org> came up with the idea of using |
| 5855 | such a mathematical system to generate more random (yet non-repeating) |
| 5856 | ids to solve the resolver/named problem. But Niels designed the |
| 5857 | actual system based on the constraints. |
| 5858 | |
| 5859 | Later modified by Damien Miller to wrap the LCG output in a 15-bit |
| 5860 | permutation generator based on a Luby-Rackoff block cipher. This |
| 5861 | ensures the output is non-repeating and preserves the MSB twiddle |
| 5862 | trick, but makes it more resistant to LCG prediction. |
| 5863 | |
| 5864 | Redistribution and use in source and binary forms, with or without |
| 5865 | modification, are permitted provided that the following conditions |
| 5866 | are met: |
| 5867 | 1. Redistributions of source code must retain the above copyright |
| 5868 | notice, this list of conditions and the following disclaimer. |
| 5869 | 2. Redistributions in binary form must reproduce the above copyright |
| 5870 | notice, this list of conditions and the following disclaimer in the |
| 5871 | documentation and/or other materials provided with the distribution. |
| 5872 | |
| 5873 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 5874 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 5875 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5876 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5877 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 5878 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5879 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5880 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5881 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5882 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5883 | |
| 5884 | ------------------------------------------------------------------- |
| 5885 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5886 | From: @(#)s_ilogb.c 5.1 93/09/24 |
| 5887 | ==================================================== |
| 5888 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 5889 | |
| 5890 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 5891 | Permission to use, copy, modify, and distribute this |
| 5892 | software is freely granted, provided that this notice |
| 5893 | is preserved. |
| 5894 | |
| 5895 | ------------------------------------------------------------------- |
| 5896 | |
Calin Juravle | c4fbf92 | 2014-03-10 11:23:52 +0000 | [diff] [blame] | 5897 | Portions Copyright (C) 2004, 2005, 2008, 2009 Internet Systems Consortium, Inc. ("ISC") |
| 5898 | Portions Copyright (C) 1996-2003 Internet Software Consortium. |
| 5899 | |
| 5900 | Permission to use, copy, modify, and/or distribute this software for any |
| 5901 | purpose with or without fee is hereby granted, provided that the above |
| 5902 | copyright notice and this permission notice appear in all copies. |
| 5903 | |
| 5904 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 5905 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 5906 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 5907 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 5908 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 5909 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 5910 | PERFORMANCE OF THIS SOFTWARE. |
| 5911 | |
| 5912 | ------------------------------------------------------------------- |
| 5913 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5914 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 5915 | |
| 5916 | Permission to use, copy, modify, and distribute this software for any |
| 5917 | purpose with or without fee is hereby granted, provided that the above |
| 5918 | copyright notice and this permission notice appear in all copies, and that |
| 5919 | the name of Digital Equipment Corporation not be used in advertising or |
| 5920 | publicity pertaining to distribution of the document or software without |
| 5921 | specific, written prior permission. |
| 5922 | |
| 5923 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 5924 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 5925 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 5926 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 5927 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 5928 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 5929 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 5930 | SOFTWARE. |
| 5931 | |
| 5932 | ------------------------------------------------------------------- |
| 5933 | |
| 5934 | Portions Copyright (c) 1995 by International Business Machines, Inc. |
| 5935 | |
| 5936 | International Business Machines, Inc. (hereinafter called IBM) grants |
| 5937 | permission under its copyrights to use, copy, modify, and distribute this |
| 5938 | Software with or without fee, provided that the above copyright notice and |
| 5939 | all paragraphs of this notice appear in all copies, and that the name of IBM |
| 5940 | not be used in connection with the marketing of any product incorporating |
| 5941 | the Software or modifications thereof, without specific, written prior |
| 5942 | permission. |
| 5943 | |
| 5944 | To the extent it has a right to do so, IBM grants an immunity from suit |
| 5945 | under its patents, if any, for the use, sale or manufacture of products to |
| 5946 | the extent that such products are used for performing Domain Name System |
| 5947 | dynamic updates in TCP/IP networks by means of the Software. No immunity is |
| 5948 | granted for any product per se or for any other function of any product. |
| 5949 | |
| 5950 | THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, |
| 5951 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 5952 | PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, |
| 5953 | DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING |
| 5954 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN |
| 5955 | IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| 5956 | |
| 5957 | ------------------------------------------------------------------- |
| 5958 | |
| 5959 | Portions Copyright(C) 1995, Jason Downs. All rights reserved. |
| 5960 | |
| 5961 | Redistribution and use in source and binary forms, with or without |
| 5962 | modification, are permitted provided that the following conditions |
| 5963 | are met: |
| 5964 | 1. Redistributions of source code must retain the above copyright |
| 5965 | notice, this list of conditions and the following disclaimer. |
| 5966 | 2. Redistributions in binary form must reproduce the above copyright |
| 5967 | notice, this list of conditions and the following disclaimer in the |
| 5968 | documentation and/or other materials provided with the distribution. |
| 5969 | |
| 5970 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS |
| 5971 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5972 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5973 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, |
| 5974 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5975 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 5976 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 5977 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5978 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5979 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5980 | SUCH DAMAGE. |
| 5981 | |
| 5982 | ------------------------------------------------------------------- |
| 5983 | |
| 5984 | The author of this software is David M. Gay. |
| 5985 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5986 | Copyright (C) 1998 by Lucent Technologies |
| 5987 | All Rights Reserved |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5988 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5989 | Permission to use, copy, modify, and distribute this software and |
| 5990 | its documentation for any purpose and without fee is hereby |
| 5991 | granted, provided that the above copyright notice appear in all |
| 5992 | copies and that both that the copyright notice and this |
| 5993 | permission notice and warranty disclaimer appear in supporting |
| 5994 | documentation, and that the name of Lucent or any of its entities |
| 5995 | not be used in advertising or publicity pertaining to |
| 5996 | distribution of the software without specific, written prior |
| 5997 | permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5998 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5999 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6000 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6001 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6002 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6003 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6004 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6005 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6006 | THIS SOFTWARE. |
| 6007 | |
| 6008 | ------------------------------------------------------------------- |
| 6009 | |
| 6010 | The author of this software is David M. Gay. |
| 6011 | |
| 6012 | Copyright (C) 1998, 1999 by Lucent Technologies |
| 6013 | All Rights Reserved |
| 6014 | |
| 6015 | Permission to use, copy, modify, and distribute this software and |
| 6016 | its documentation for any purpose and without fee is hereby |
| 6017 | granted, provided that the above copyright notice appear in all |
| 6018 | copies and that both that the copyright notice and this |
| 6019 | permission notice and warranty disclaimer appear in supporting |
| 6020 | documentation, and that the name of Lucent or any of its entities |
| 6021 | not be used in advertising or publicity pertaining to |
| 6022 | distribution of the software without specific, written prior |
| 6023 | permission. |
| 6024 | |
| 6025 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6026 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6027 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6028 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6029 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6030 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6031 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6032 | THIS SOFTWARE. |
| 6033 | |
| 6034 | ------------------------------------------------------------------- |
| 6035 | |
| 6036 | The author of this software is David M. Gay. |
| 6037 | |
| 6038 | Copyright (C) 1998, 2000 by Lucent Technologies |
| 6039 | All Rights Reserved |
| 6040 | |
| 6041 | Permission to use, copy, modify, and distribute this software and |
| 6042 | its documentation for any purpose and without fee is hereby |
| 6043 | granted, provided that the above copyright notice appear in all |
| 6044 | copies and that both that the copyright notice and this |
| 6045 | permission notice and warranty disclaimer appear in supporting |
| 6046 | documentation, and that the name of Lucent or any of its entities |
| 6047 | not be used in advertising or publicity pertaining to |
| 6048 | distribution of the software without specific, written prior |
| 6049 | permission. |
| 6050 | |
| 6051 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6052 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6053 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6054 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6055 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6056 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6057 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6058 | THIS SOFTWARE. |
| 6059 | |
| 6060 | ------------------------------------------------------------------- |
| 6061 | |
| 6062 | The author of this software is David M. Gay. |
| 6063 | |
| 6064 | Copyright (C) 1998-2000 by Lucent Technologies |
| 6065 | All Rights Reserved |
| 6066 | |
| 6067 | Permission to use, copy, modify, and distribute this software and |
| 6068 | its documentation for any purpose and without fee is hereby |
| 6069 | granted, provided that the above copyright notice appear in all |
| 6070 | copies and that both that the copyright notice and this |
| 6071 | permission notice and warranty disclaimer appear in supporting |
| 6072 | documentation, and that the name of Lucent or any of its entities |
| 6073 | not be used in advertising or publicity pertaining to |
| 6074 | distribution of the software without specific, written prior |
| 6075 | permission. |
| 6076 | |
| 6077 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6078 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6079 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6080 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6081 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6082 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6083 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6084 | THIS SOFTWARE. |
| 6085 | |
| 6086 | ------------------------------------------------------------------- |
| 6087 | |
| 6088 | The author of this software is David M. Gay. |
| 6089 | |
| 6090 | Copyright (C) 1998-2001 by Lucent Technologies |
| 6091 | All Rights Reserved |
| 6092 | |
| 6093 | Permission to use, copy, modify, and distribute this software and |
| 6094 | its documentation for any purpose and without fee is hereby |
| 6095 | granted, provided that the above copyright notice appear in all |
| 6096 | copies and that both that the copyright notice and this |
| 6097 | permission notice and warranty disclaimer appear in supporting |
| 6098 | documentation, and that the name of Lucent or any of its entities |
| 6099 | not be used in advertising or publicity pertaining to |
| 6100 | distribution of the software without specific, written prior |
| 6101 | permission. |
| 6102 | |
| 6103 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6104 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6105 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6106 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6107 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6108 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6109 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6110 | THIS SOFTWARE. |
| 6111 | |
| 6112 | ------------------------------------------------------------------- |
| 6113 | |
| 6114 | The author of this software is David M. Gay. |
| 6115 | |
| 6116 | Copyright (C) 2000 by Lucent Technologies |
| 6117 | All Rights Reserved |
| 6118 | |
| 6119 | Permission to use, copy, modify, and distribute this software and |
| 6120 | its documentation for any purpose and without fee is hereby |
| 6121 | granted, provided that the above copyright notice appear in all |
| 6122 | copies and that both that the copyright notice and this |
| 6123 | permission notice and warranty disclaimer appear in supporting |
| 6124 | documentation, and that the name of Lucent or any of its entities |
| 6125 | not be used in advertising or publicity pertaining to |
| 6126 | distribution of the software without specific, written prior |
| 6127 | permission. |
| 6128 | |
| 6129 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6130 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6131 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6132 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6133 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6134 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6135 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6136 | THIS SOFTWARE. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 6137 | |
| 6138 | ------------------------------------------------------------------- |
| 6139 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 6140 | memchr - find a character in a memory zone |
| 6141 | |
| 6142 | Copyright (c) 2014, ARM Limited |
| 6143 | All rights Reserved. |
| 6144 | Copyright (c) 2014, Linaro Ltd. |
| 6145 | |
| 6146 | Redistribution and use in source and binary forms, with or without |
| 6147 | modification, are permitted provided that the following conditions are met: |
| 6148 | * Redistributions of source code must retain the above copyright |
| 6149 | notice, this list of conditions and the following disclaimer. |
| 6150 | * Redistributions in binary form must reproduce the above copyright |
| 6151 | notice, this list of conditions and the following disclaimer in the |
| 6152 | documentation and/or other materials provided with the distribution. |
| 6153 | * Neither the name of the company nor the names of its contributors |
| 6154 | may be used to endorse or promote products derived from this |
| 6155 | software without specific prior written permission. |
| 6156 | |
| 6157 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 6158 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 6159 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 6160 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 6161 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 6162 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 6163 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 6164 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 6165 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 6166 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 6167 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 6168 | |
| 6169 | ------------------------------------------------------------------- |
| 6170 | |