Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 1 | Copyright (c) 2014, Linaro Limited |
| 2 | All rights reserved. |
| 3 | |
| 4 | Redistribution and use in source and binary forms, with or without |
| 5 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 6 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 7 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 8 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 9 | notice, this list of conditions and the following disclaimer in the |
| 10 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 11 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 12 | names of its contributors may be used to endorse or promote products |
| 13 | derived from this software without specific prior written permission. |
| 14 | |
| 15 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 18 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 19 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 21 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 22 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 23 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | |
| 27 | ------------------------------------------------------------------- |
| 28 | |
| 29 | strchr - find a character in a string |
| 30 | |
| 31 | Copyright (c) 2014, ARM Limited |
| 32 | All rights Reserved. |
| 33 | Copyright (c) 2014, Linaro Ltd. |
| 34 | |
| 35 | Redistribution and use in source and binary forms, with or without |
| 36 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 37 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 38 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 39 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 40 | notice, this list of conditions and the following disclaimer in the |
| 41 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 42 | * Neither the name of the company nor the names of its contributors |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 43 | may be used to endorse or promote products derived from this |
| 44 | software without specific prior written permission. |
| 45 | |
| 46 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 47 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 48 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 49 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 50 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 51 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 52 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 53 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 54 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 55 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 56 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 57 | |
| 58 | ------------------------------------------------------------------- |
| 59 | |
Elliott Hughes | 3e424d0 | 2014-07-23 16:02:26 -0700 | [diff] [blame] | 60 | Copyright (c) 1993 John Brezak |
| 61 | All rights reserved. |
| 62 | |
| 63 | Redistribution and use in source and binary forms, with or without |
| 64 | modification, are permitted provided that the following conditions |
| 65 | are met: |
| 66 | 1. Redistributions of source code must retain the above copyright |
| 67 | notice, this list of conditions and the following disclaimer. |
| 68 | 2. Redistributions in binary form must reproduce the above copyright |
| 69 | notice, this list of conditions and the following disclaimer in the |
| 70 | documentation and/or other materials provided with the distribution. |
| 71 | 3. The name of the author may be used to endorse or promote products |
| 72 | derived from this software without specific prior written permission. |
| 73 | |
| 74 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR |
| 75 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 76 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 77 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, |
| 78 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 79 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 80 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 81 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 82 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 83 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 84 | POSSIBILITY OF SUCH DAMAGE. |
| 85 | |
| 86 | ------------------------------------------------------------------- |
| 87 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 88 | Copyright (c) 2009-2013 The Linux Foundation. All rights reserved. |
| 89 | |
| 90 | Redistribution and use in source and binary forms, with or without |
| 91 | modification, are permitted provided that the following conditions are met: |
| 92 | * Redistributions of source code must retain the above copyright |
| 93 | notice, this list of conditions and the following disclaimer. |
| 94 | * Redistributions in binary form must reproduce the above copyright |
| 95 | notice, this list of conditions and the following disclaimer in the |
| 96 | documentation and/or other materials provided with the distribution. |
| 97 | * Neither the name of The Linux Foundation nor the names of its contributors may |
| 98 | be used to endorse or promote products derived from this software |
| 99 | without specific prior written permission. |
| 100 | |
| 101 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 102 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 103 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 104 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 105 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 106 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 107 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 108 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 109 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 110 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 111 | POSSIBILITY OF SUCH DAMAGE. |
| 112 | |
| 113 | ------------------------------------------------------------------- |
| 114 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 115 | ==================================================== |
| 116 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 117 | |
| 118 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 119 | Permission to use, copy, modify, and distribute this |
| 120 | software is freely granted, provided that this notice |
| 121 | is preserved. |
| 122 | |
| 123 | ------------------------------------------------------------------- |
| 124 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 125 | ==================================================== |
| 126 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 127 | |
| 128 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 129 | Permission to use, copy, modify, and distribute this |
| 130 | software is freely granted, provided that this notice |
| 131 | is preserved. |
| 132 | ==================================================== |
| 133 | |
| 134 | Optimized by Bruce D. Evans. |
| 135 | |
| 136 | ------------------------------------------------------------------- |
| 137 | |
| 138 | ==================================================== |
| 139 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 140 | |
| 141 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 142 | Permission to use, copy, modify, and distribute this |
| 143 | software is freely granted, provided that this notice |
| 144 | is preserved. |
| 145 | |
| 146 | ------------------------------------------------------------------- |
| 147 | |
| 148 | ==================================================== |
| 149 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 150 | |
| 151 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 152 | Permission to use, copy, modify, and distribute this |
| 153 | software is freely granted, provided that this notice |
| 154 | is preserved. |
| 155 | ==================================================== |
| 156 | |
| 157 | Optimized by Bruce D. Evans. |
| 158 | |
| 159 | ------------------------------------------------------------------- |
| 160 | |
| 161 | ==================================================== |
| 162 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 163 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 164 | |
| 165 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 166 | Permission to use, copy, modify, and distribute this |
| 167 | software is freely granted, provided that this notice |
| 168 | is preserved. |
| 169 | |
| 170 | ------------------------------------------------------------------- |
| 171 | |
| 172 | ==================================================== |
| 173 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 174 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 175 | |
| 176 | Developed at SunSoft, a Sun Microsystems, Inc. business. |
| 177 | Permission to use, copy, modify, and distribute this |
| 178 | software is freely granted, provided that this notice |
| 179 | is preserved. |
| 180 | ==================================================== |
| 181 | |
| 182 | Optimized by Bruce D. Evans. |
| 183 | |
| 184 | ------------------------------------------------------------------- |
| 185 | |
| 186 | ==================================================== |
| 187 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 188 | Copyright (c) 2009-2011, Bruce D. Evans, Steven G. Kargl, David Schultz. |
| 189 | |
| 190 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 191 | Permission to use, copy, modify, and distribute this |
| 192 | software is freely granted, provided that this notice |
| 193 | is preserved. |
| 194 | ==================================================== |
| 195 | |
| 196 | The argument reduction and testing for exceptional cases was |
| 197 | written by Steven G. Kargl with input from Bruce D. Evans |
| 198 | and David A. Schultz. |
| 199 | |
| 200 | ------------------------------------------------------------------- |
| 201 | |
| 202 | ==================================================== |
| 203 | Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved. |
| 204 | |
| 205 | Permission to use, copy, modify, and distribute this |
| 206 | software is freely granted, provided that this notice |
| 207 | is preserved. |
| 208 | |
| 209 | ------------------------------------------------------------------- |
| 210 | |
| 211 | ==================================================== |
| 212 | Copyright 2004 Sun Microsystems, Inc. All Rights Reserved. |
| 213 | |
| 214 | Permission to use, copy, modify, and distribute this |
| 215 | software is freely granted, provided that this notice |
| 216 | is preserved. |
| 217 | |
| 218 | ------------------------------------------------------------------- |
| 219 | |
| 220 | ==================================================== |
| 221 | Copyright 2004 Sun Microsystems, Inc. All Rights Reserved. |
| 222 | Copyright (c) 2008 Steven G. Kargl, David Schultz, Bruce D. Evans. |
| 223 | |
| 224 | Permission to use, copy, modify, and distribute this |
| 225 | software is freely granted, provided that this notice |
| 226 | is preserved. |
| 227 | |
| 228 | ------------------------------------------------------------------- |
| 229 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 230 | Based on the UCB version with the ID appearing below. |
| 231 | This is ANSIish only when "multibyte character == plain character". |
| 232 | |
| 233 | Copyright (c) 1989, 1993 |
| 234 | The Regents of the University of California. All rights reserved. |
| 235 | |
| 236 | Redistribution and use in source and binary forms, with or without |
| 237 | modification, are permitted provided that the following conditions |
| 238 | are met: |
| 239 | 1. Redistributions of source code must retain the above copyright |
| 240 | notice, this list of conditions and the following disclaimer. |
| 241 | 2. Redistributions in binary form must reproduce the above copyright |
| 242 | notice, this list of conditions and the following disclaimer in the |
| 243 | documentation and/or other materials provided with the distribution. |
| 244 | 3. Neither the name of the University nor the names of its contributors |
| 245 | may be used to endorse or promote products derived from this software |
| 246 | without specific prior written permission. |
| 247 | |
| 248 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 249 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 250 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 251 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 252 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 253 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 254 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 255 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 256 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 257 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 258 | SUCH DAMAGE. |
| 259 | |
| 260 | ------------------------------------------------------------------- |
| 261 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 262 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 263 | All rights reserved. |
| 264 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 265 | Redistribution and use in source and binary forms, with or without |
| 266 | modification, are permitted provided that the following conditions |
| 267 | are met: |
| 268 | 1. Redistributions of source code must retain the above copyright |
| 269 | notice, this list of conditions and the following disclaimer. |
| 270 | 2. Redistributions in binary form must reproduce the above copyright |
| 271 | notice, this list of conditions and the following disclaimer in the |
| 272 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 273 | 3. Neither the name of the project nor the names of its contributors |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 274 | may be used to endorse or promote products derived from this software |
| 275 | without specific prior written permission. |
| 276 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 277 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 278 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 279 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 280 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 281 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 282 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 283 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 284 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 285 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 286 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 287 | SUCH DAMAGE. |
| 288 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 289 | ------------------------------------------------------------------- |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 290 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 291 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 292 | Copyright (C) 1995-1999, 2001, 2003 Internet Software Consortium. |
| 293 | |
| 294 | Permission to use, copy, modify, and/or distribute this software for any |
| 295 | purpose with or without fee is hereby granted, provided that the above |
| 296 | copyright notice and this permission notice appear in all copies. |
| 297 | |
| 298 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 299 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 300 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 301 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 302 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 303 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 304 | PERFORMANCE OF THIS SOFTWARE. |
| 305 | |
| 306 | ------------------------------------------------------------------- |
| 307 | |
| 308 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 309 | Copyright (C) 1997-2001 Internet Software Consortium. |
| 310 | |
| 311 | Permission to use, copy, modify, and/or distribute this software for any |
| 312 | purpose with or without fee is hereby granted, provided that the above |
| 313 | copyright notice and this permission notice appear in all copies. |
| 314 | |
| 315 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 316 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 317 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 318 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 319 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 320 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 321 | PERFORMANCE OF THIS SOFTWARE. |
| 322 | |
| 323 | ------------------------------------------------------------------- |
| 324 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 325 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 326 | |
| 327 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 328 | you may not use this file except in compliance with the License. |
| 329 | You may obtain a copy of the License at |
| 330 | |
| 331 | http://www.apache.org/licenses/LICENSE-2.0 |
| 332 | |
| 333 | Unless required by applicable law or agreed to in writing, software |
| 334 | distributed under the License is distributed on an "AS IS" BASIS, |
| 335 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 336 | See the License for the specific language governing permissions and |
| 337 | limitations under the License. |
| 338 | |
| 339 | ------------------------------------------------------------------- |
| 340 | |
| 341 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 342 | All rights reserved. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 343 | |
| 344 | Redistribution and use in source and binary forms, with or without |
| 345 | modification, are permitted provided that the following conditions |
| 346 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 347 | * Redistributions of source code must retain the above copyright |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 348 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 349 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 350 | notice, this list of conditions and the following disclaimer in |
| 351 | the documentation and/or other materials provided with the |
| 352 | distribution. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 353 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 354 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 355 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 356 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 357 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 358 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 359 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 360 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 361 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 362 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 363 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 364 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 365 | SUCH DAMAGE. |
| 366 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 367 | ------------------------------------------------------------------- |
| 368 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 369 | Copyright (C) 2007 The Android Open Source Project |
| 370 | |
| 371 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 372 | you may not use this file except in compliance with the License. |
| 373 | You may obtain a copy of the License at |
| 374 | |
| 375 | http://www.apache.org/licenses/LICENSE-2.0 |
| 376 | |
| 377 | Unless required by applicable law or agreed to in writing, software |
| 378 | distributed under the License is distributed on an "AS IS" BASIS, |
| 379 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 380 | See the License for the specific language governing permissions and |
| 381 | limitations under the License. |
| 382 | |
| 383 | ------------------------------------------------------------------- |
| 384 | |
Dimitry Ivanov | bcc4da9 | 2017-02-15 15:31:13 -0800 | [diff] [blame] | 385 | Copyright (C) 2007 The Android Open Source Project |
| 386 | All rights reserved. |
| 387 | |
| 388 | Redistribution and use in source and binary forms, with or without |
| 389 | modification, are permitted provided that the following conditions |
| 390 | are met: |
| 391 | * Redistributions of source code must retain the above copyright |
| 392 | notice, this list of conditions and the following disclaimer. |
| 393 | * Redistributions in binary form must reproduce the above copyright |
| 394 | notice, this list of conditions and the following disclaimer in |
| 395 | the documentation and/or other materials provided with the |
| 396 | distribution. |
| 397 | |
| 398 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 399 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 400 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 401 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 402 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 403 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 404 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 405 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 406 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 407 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 408 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 409 | SUCH DAMAGE. |
| 410 | |
| 411 | ------------------------------------------------------------------- |
| 412 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 413 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 414 | |
| 415 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 416 | you may not use this file except in compliance with the License. |
| 417 | You may obtain a copy of the License at |
| 418 | |
| 419 | http://www.apache.org/licenses/LICENSE-2.0 |
| 420 | |
| 421 | Unless required by applicable law or agreed to in writing, software |
| 422 | distributed under the License is distributed on an "AS IS" BASIS, |
| 423 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 424 | See the License for the specific language governing permissions and |
| 425 | limitations under the License. |
| 426 | |
| 427 | ------------------------------------------------------------------- |
| 428 | |
| 429 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 430 | All rights reserved. |
| 431 | |
| 432 | Redistribution and use in source and binary forms, with or without |
| 433 | modification, are permitted provided that the following conditions |
| 434 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 435 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 436 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 437 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 438 | notice, this list of conditions and the following disclaimer in |
| 439 | the documentation and/or other materials provided with the |
| 440 | distribution. |
| 441 | |
| 442 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 443 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 444 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 445 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 446 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 447 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 448 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 449 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 450 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 451 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 452 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 453 | SUCH DAMAGE. |
| 454 | |
| 455 | ------------------------------------------------------------------- |
| 456 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 457 | Copyright (C) 2008 The Android Open Source Project |
| 458 | All rights reserved. |
| 459 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 460 | |
| 461 | Redistribution and use in source and binary forms, with or without |
| 462 | modification, are permitted provided that the following conditions |
| 463 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 464 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 465 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 466 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 467 | notice, this list of conditions and the following disclaimer in |
| 468 | the documentation and/or other materials provided with the |
| 469 | distribution. |
| 470 | |
| 471 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 472 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 473 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 474 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 475 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 476 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 477 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 478 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 479 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 480 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 481 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 482 | SUCH DAMAGE. |
| 483 | |
| 484 | ------------------------------------------------------------------- |
| 485 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 486 | Copyright (C) 2009 The Android Open Source Project |
| 487 | All rights reserved. |
| 488 | |
| 489 | Redistribution and use in source and binary forms, with or without |
| 490 | modification, are permitted provided that the following conditions |
| 491 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 492 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 493 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 494 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 495 | notice, this list of conditions and the following disclaimer in |
| 496 | the documentation and/or other materials provided with the |
| 497 | distribution. |
| 498 | |
| 499 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 500 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 501 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 502 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 503 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 504 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 505 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 506 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 507 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 508 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 509 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 510 | SUCH DAMAGE. |
| 511 | |
| 512 | ------------------------------------------------------------------- |
| 513 | |
| 514 | Copyright (C) 2010 The Android Open Source Project |
| 515 | |
| 516 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 517 | you may not use this file except in compliance with the License. |
| 518 | You may obtain a copy of the License at |
| 519 | |
| 520 | http://www.apache.org/licenses/LICENSE-2.0 |
| 521 | |
| 522 | Unless required by applicable law or agreed to in writing, software |
| 523 | distributed under the License is distributed on an "AS IS" BASIS, |
| 524 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 525 | See the License for the specific language governing permissions and |
| 526 | limitations under the License. |
| 527 | |
| 528 | ------------------------------------------------------------------- |
| 529 | |
| 530 | Copyright (C) 2010 The Android Open Source Project |
| 531 | All rights reserved. |
| 532 | |
| 533 | Redistribution and use in source and binary forms, with or without |
| 534 | modification, are permitted provided that the following conditions |
| 535 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 536 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 537 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 538 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 539 | notice, this list of conditions and the following disclaimer in |
| 540 | the documentation and/or other materials provided with the |
| 541 | distribution. |
| 542 | |
| 543 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 544 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 545 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 546 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 547 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 548 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 549 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 550 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 551 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 552 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 553 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 554 | SUCH DAMAGE. |
| 555 | |
| 556 | ------------------------------------------------------------------- |
| 557 | |
| 558 | Copyright (C) 2010 The Android Open Source Project |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 559 | All rights reserved. |
| 560 | |
| 561 | Redistribution and use in source and binary forms, with or without |
| 562 | modification, are permitted provided that the following conditions |
| 563 | are met: |
| 564 | 1. Redistributions of source code must retain the above copyright |
| 565 | notice, this list of conditions and the following disclaimer. |
| 566 | 2. Redistributions in binary form must reproduce the above copyright |
| 567 | notice, this list of conditions and the following disclaimer in the |
| 568 | documentation and/or other materials provided with the distribution. |
| 569 | |
| 570 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 571 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 572 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 573 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 574 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 575 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 576 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 577 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 578 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 579 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 580 | SUCH DAMAGE. |
| 581 | |
| 582 | ------------------------------------------------------------------- |
| 583 | |
| 584 | Copyright (C) 2010 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 585 | Copyright (c) 2008 ARM Ltd |
| 586 | All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 587 | |
| 588 | Redistribution and use in source and binary forms, with or without |
| 589 | modification, are permitted provided that the following conditions |
| 590 | are met: |
| 591 | 1. Redistributions of source code must retain the above copyright |
| 592 | notice, this list of conditions and the following disclaimer. |
| 593 | 2. Redistributions in binary form must reproduce the above copyright |
| 594 | notice, this list of conditions and the following disclaimer in the |
| 595 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 596 | 3. The name of the company may not be used to endorse or promote |
| 597 | products derived from this software without specific prior written |
| 598 | permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 599 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 600 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 601 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 602 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 603 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 604 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 605 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 606 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 607 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 608 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 609 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 610 | |
| 611 | Android adaptation and tweak by Jim Huang <jserv@0xlab.org>. |
| 612 | |
| 613 | ------------------------------------------------------------------- |
| 614 | |
| 615 | Copyright (C) 2011 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 616 | All rights reserved. |
| 617 | |
| 618 | Redistribution and use in source and binary forms, with or without |
| 619 | modification, are permitted provided that the following conditions |
| 620 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 621 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 622 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 623 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 624 | notice, this list of conditions and the following disclaimer in |
| 625 | the documentation and/or other materials provided with the |
| 626 | distribution. |
| 627 | |
| 628 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 629 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 630 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 631 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 632 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 633 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 634 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 635 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 636 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 637 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 638 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 639 | SUCH DAMAGE. |
| 640 | |
| 641 | ------------------------------------------------------------------- |
| 642 | |
| 643 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 644 | |
| 645 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 646 | you may not use this file except in compliance with the License. |
| 647 | You may obtain a copy of the License at |
| 648 | |
| 649 | http://www.apache.org/licenses/LICENSE-2.0 |
| 650 | |
| 651 | Unless required by applicable law or agreed to in writing, software |
| 652 | distributed under the License is distributed on an "AS IS" BASIS, |
| 653 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 654 | See the License for the specific language governing permissions and |
| 655 | limitations under the License. |
| 656 | |
| 657 | ------------------------------------------------------------------- |
| 658 | |
| 659 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 660 | All rights reserved. |
| 661 | |
| 662 | Redistribution and use in source and binary forms, with or without |
| 663 | modification, are permitted provided that the following conditions |
| 664 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 665 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 666 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 667 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 668 | notice, this list of conditions and the following disclaimer in |
| 669 | the documentation and/or other materials provided with the |
| 670 | distribution. |
| 671 | |
| 672 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 673 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 674 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 675 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 676 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 677 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 678 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 679 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 680 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 681 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 682 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 683 | SUCH DAMAGE. |
| 684 | |
| 685 | ------------------------------------------------------------------- |
| 686 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 687 | Copyright (C) 2013 The Android Open Source Project |
| 688 | |
| 689 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 690 | you may not use this file except in compliance with the License. |
| 691 | You may obtain a copy of the License at |
| 692 | |
| 693 | http://www.apache.org/licenses/LICENSE-2.0 |
| 694 | |
| 695 | Unless required by applicable law or agreed to in writing, software |
| 696 | distributed under the License is distributed on an "AS IS" BASIS, |
| 697 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 698 | See the License for the specific language governing permissions and |
| 699 | limitations under the License. |
| 700 | |
| 701 | ------------------------------------------------------------------- |
| 702 | |
| 703 | Copyright (C) 2013 The Android Open Source Project |
| 704 | All rights reserved. |
| 705 | |
| 706 | Redistribution and use in source and binary forms, with or without |
| 707 | modification, are permitted provided that the following conditions |
| 708 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 709 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 710 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 711 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 712 | notice, this list of conditions and the following disclaimer in |
| 713 | the documentation and/or other materials provided with the |
| 714 | distribution. |
| 715 | |
| 716 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 717 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 718 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 719 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 720 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 721 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 722 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 723 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 724 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 725 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 726 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 727 | SUCH DAMAGE. |
| 728 | |
| 729 | ------------------------------------------------------------------- |
| 730 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 731 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 732 | All rights reserved. |
| 733 | Copyright (c) 2013-2014 NVIDIA Corporation. All rights reserved. |
| 734 | |
| 735 | Redistribution and use in source and binary forms, with or without |
| 736 | modification, are permitted provided that the following conditions |
| 737 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 738 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 739 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 740 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 741 | notice, this list of conditions and the following disclaimer in |
| 742 | the documentation and/or other materials provided with the |
| 743 | distribution. |
| 744 | |
| 745 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 746 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 747 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 748 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 749 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 750 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 751 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 752 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 753 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 754 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 755 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 756 | SUCH DAMAGE. |
| 757 | |
| 758 | ------------------------------------------------------------------- |
| 759 | |
| 760 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 761 | Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. |
| 762 | All rights reserved. |
| 763 | |
| 764 | Redistribution and use in source and binary forms, with or without |
| 765 | modification, are permitted provided that the following conditions |
| 766 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 767 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 768 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 769 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 770 | notice, this list of conditions and the following disclaimer in |
| 771 | the documentation and/or other materials provided with the |
| 772 | distribution. |
| 773 | |
| 774 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 775 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 776 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 777 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 778 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 779 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 780 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 781 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 782 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 783 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 784 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 785 | SUCH DAMAGE. |
| 786 | |
| 787 | ------------------------------------------------------------------- |
| 788 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 789 | Copyright (C) 2014 The Android Open Source Project |
| 790 | |
| 791 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 792 | you may not use this file except in compliance with the License. |
| 793 | You may obtain a copy of the License at |
| 794 | |
| 795 | http://www.apache.org/licenses/LICENSE-2.0 |
| 796 | |
| 797 | Unless required by applicable law or agreed to in writing, software |
| 798 | distributed under the License is distributed on an "AS IS" BASIS, |
| 799 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 800 | See the License for the specific language governing permissions and |
| 801 | limitations under the License. |
| 802 | |
| 803 | ------------------------------------------------------------------- |
| 804 | |
| 805 | Copyright (C) 2014 The Android Open Source Project |
| 806 | All rights reserved. |
| 807 | |
| 808 | Redistribution and use in source and binary forms, with or without |
| 809 | modification, are permitted provided that the following conditions |
| 810 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 811 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 812 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 813 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 814 | notice, this list of conditions and the following disclaimer in |
| 815 | the documentation and/or other materials provided with the |
| 816 | distribution. |
| 817 | |
| 818 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 819 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 820 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 821 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 822 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 823 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 824 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 825 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 826 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 827 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 828 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 829 | SUCH DAMAGE. |
| 830 | |
| 831 | ------------------------------------------------------------------- |
| 832 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 833 | Copyright (C) 2014 The Android Open Source Project |
| 834 | All rights reserved. |
| 835 | |
| 836 | Redistribution and use in source and binary forms, with or without |
| 837 | modification, are permitted provided that the following conditions |
| 838 | are met: |
| 839 | 1. Redistributions of source code must retain the above copyright |
| 840 | notice, this list of conditions and the following disclaimer. |
| 841 | 2. Redistributions in binary form must reproduce the above copyright |
| 842 | notice, this list of conditions and the following disclaimer in the |
| 843 | documentation and/or other materials provided with the distribution. |
| 844 | |
| 845 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 846 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 847 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 848 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 849 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 850 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 851 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 852 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 853 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 854 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 855 | SUCH DAMAGE. |
| 856 | |
| 857 | ------------------------------------------------------------------- |
| 858 | |
| 859 | Copyright (C) 2015 The Android Open Source Project |
| 860 | |
| 861 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 862 | you may not use this file except in compliance with the License. |
| 863 | You may obtain a copy of the License at |
| 864 | |
| 865 | http://www.apache.org/licenses/LICENSE-2.0 |
| 866 | |
| 867 | Unless required by applicable law or agreed to in writing, software |
| 868 | distributed under the License is distributed on an "AS IS" BASIS, |
| 869 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 870 | See the License for the specific language governing permissions and |
| 871 | limitations under the License. |
| 872 | |
| 873 | ------------------------------------------------------------------- |
| 874 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 875 | Copyright (C) 2015 The Android Open Source Project |
| 876 | |
| 877 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 878 | you may not use this file except in compliance with the License. |
| 879 | You may obtain a copy of the License at |
| 880 | |
| 881 | http://www.apache.org/licenses/LICENSE-2.0 |
| 882 | |
| 883 | Unless required by applicable law or agreed to in writing, software |
| 884 | distributed under the License is distributed on an "AS IS" BASIS, |
| 885 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 886 | See the License for the specific language governing permissions and |
| 887 | limitations under the License. |
| 888 | |
| 889 | ------------------------------------------------------------------- |
| 890 | |
| 891 | Copyright (C) 2015 The Android Open Source Project |
| 892 | All rights reserved. |
| 893 | |
| 894 | Redistribution and use in source and binary forms, with or without |
| 895 | modification, are permitted provided that the following conditions |
| 896 | are met: |
| 897 | * Redistributions of source code must retain the above copyright |
| 898 | notice, this list of conditions and the following disclaimer. |
| 899 | * Redistributions in binary form must reproduce the above copyright |
| 900 | notice, this list of conditions and the following disclaimer in |
| 901 | the documentation and/or other materials provided with the |
| 902 | distribution. |
| 903 | |
| 904 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 905 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 906 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 907 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 908 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 909 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 910 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 911 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 912 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 913 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 914 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 915 | SUCH DAMAGE. |
| 916 | |
| 917 | ------------------------------------------------------------------- |
| 918 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 919 | Copyright (C) 2016 The Android Open Source Project |
| 920 | |
| 921 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 922 | you may not use this file except in compliance with the License. |
| 923 | You may obtain a copy of the License at |
| 924 | |
| 925 | http://www.apache.org/licenses/LICENSE-2.0 |
| 926 | |
| 927 | Unless required by applicable law or agreed to in writing, software |
| 928 | distributed under the License is distributed on an "AS IS" BASIS, |
| 929 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 930 | See the License for the specific language governing permissions and |
| 931 | limitations under the License. |
| 932 | |
| 933 | ------------------------------------------------------------------- |
| 934 | |
| 935 | Copyright (C) 2016 The Android Open Source Project |
| 936 | All rights reserved. |
| 937 | |
| 938 | Redistribution and use in source and binary forms, with or without |
| 939 | modification, are permitted provided that the following conditions |
| 940 | are met: |
| 941 | * Redistributions of source code must retain the above copyright |
| 942 | notice, this list of conditions and the following disclaimer. |
| 943 | * Redistributions in binary form must reproduce the above copyright |
| 944 | notice, this list of conditions and the following disclaimer in |
| 945 | the documentation and/or other materials provided with the |
| 946 | distribution. |
| 947 | |
| 948 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 949 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 950 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 951 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 952 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 953 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 954 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 955 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 956 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 957 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 958 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 959 | SUCH DAMAGE. |
| 960 | |
| 961 | ------------------------------------------------------------------- |
| 962 | |
mspector | 2e3d6a1 | 2017-01-24 21:51:51 -0800 | [diff] [blame] | 963 | Copyright (C) 2017 The Android Open Source Project |
Paul Lawrence | dfe8434 | 2017-02-16 09:24:39 -0800 | [diff] [blame] | 964 | |
| 965 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 966 | you may not use this file except in compliance with the License. |
| 967 | You may obtain a copy of the License at |
| 968 | |
| 969 | http://www.apache.org/licenses/LICENSE-2.0 |
| 970 | |
| 971 | Unless required by applicable law or agreed to in writing, software |
| 972 | distributed under the License is distributed on an "AS IS" BASIS, |
| 973 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 974 | See the License for the specific language governing permissions and |
| 975 | limitations under the License. |
| 976 | |
| 977 | ------------------------------------------------------------------- |
| 978 | |
| 979 | Copyright (C) 2017 The Android Open Source Project |
mspector | 2e3d6a1 | 2017-01-24 21:51:51 -0800 | [diff] [blame] | 980 | All rights reserved. |
| 981 | |
| 982 | Redistribution and use in source and binary forms, with or without |
| 983 | modification, are permitted provided that the following conditions |
| 984 | are met: |
| 985 | * Redistributions of source code must retain the above copyright |
| 986 | notice, this list of conditions and the following disclaimer. |
| 987 | * Redistributions in binary form must reproduce the above copyright |
| 988 | notice, this list of conditions and the following disclaimer in |
| 989 | the documentation and/or other materials provided with the |
| 990 | distribution. |
| 991 | |
| 992 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 993 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 994 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 995 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 996 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 997 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 998 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 999 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 1000 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 1001 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 1002 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1003 | SUCH DAMAGE. |
| 1004 | |
| 1005 | ------------------------------------------------------------------- |
| 1006 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1007 | Copyright (c) 1980, 1983, 1988, 1993 |
| 1008 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1009 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1010 | Redistribution and use in source and binary forms, with or without |
| 1011 | modification, are permitted provided that the following conditions |
| 1012 | are met: |
| 1013 | 1. Redistributions of source code must retain the above copyright |
| 1014 | notice, this list of conditions and the following disclaimer. |
| 1015 | 2. Redistributions in binary form must reproduce the above copyright |
| 1016 | notice, this list of conditions and the following disclaimer in the |
| 1017 | documentation and/or other materials provided with the distribution. |
| 1018 | 3. All advertising materials mentioning features or use of this software |
| 1019 | must display the following acknowledgement: |
| 1020 | This product includes software developed by the University of |
| 1021 | California, Berkeley and its contributors. |
| 1022 | 4. Neither the name of the University nor the names of its contributors |
| 1023 | may be used to endorse or promote products derived from this software |
| 1024 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1025 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1026 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1027 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1028 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1029 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1030 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1031 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1032 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1033 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1034 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1035 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1036 | SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1037 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1038 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1039 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1040 | |
| 1041 | Permission to use, copy, modify, and distribute this software for any |
| 1042 | purpose with or without fee is hereby granted, provided that the above |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1043 | copyright notice and this permission notice appear in all copies, and that |
| 1044 | the name of Digital Equipment Corporation not be used in advertising or |
| 1045 | publicity pertaining to distribution of the document or software without |
| 1046 | specific, written prior permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1047 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1048 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1049 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1050 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1051 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1052 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1053 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1054 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1055 | SOFTWARE. |
| 1056 | |
| 1057 | ------------------------------------------------------------------- |
| 1058 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1059 | Copyright (c) 1982, 1986, 1993 |
| 1060 | The Regents of the University of California. All rights reserved. |
| 1061 | |
| 1062 | Redistribution and use in source and binary forms, with or without |
| 1063 | modification, are permitted provided that the following conditions |
| 1064 | are met: |
| 1065 | 1. Redistributions of source code must retain the above copyright |
| 1066 | notice, this list of conditions and the following disclaimer. |
| 1067 | 2. Redistributions in binary form must reproduce the above copyright |
| 1068 | notice, this list of conditions and the following disclaimer in the |
| 1069 | documentation and/or other materials provided with the distribution. |
| 1070 | 3. Neither the name of the University nor the names of its contributors |
| 1071 | may be used to endorse or promote products derived from this software |
| 1072 | without specific prior written permission. |
| 1073 | |
| 1074 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1075 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1076 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1077 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1078 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1079 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1080 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1081 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1082 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1083 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1084 | SUCH DAMAGE. |
| 1085 | |
| 1086 | ------------------------------------------------------------------- |
| 1087 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 1088 | Copyright (c) 1982, 1986, 1993 |
| 1089 | The Regents of the University of California. All rights reserved. |
| 1090 | (c) UNIX System Laboratories, Inc. |
| 1091 | All or some portions of this file are derived from material licensed |
| 1092 | to the University of California by American Telephone and Telegraph |
| 1093 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1094 | the permission of UNIX System Laboratories, Inc. |
| 1095 | |
| 1096 | Redistribution and use in source and binary forms, with or without |
| 1097 | modification, are permitted provided that the following conditions |
| 1098 | are met: |
| 1099 | 1. Redistributions of source code must retain the above copyright |
| 1100 | notice, this list of conditions and the following disclaimer. |
| 1101 | 2. Redistributions in binary form must reproduce the above copyright |
| 1102 | notice, this list of conditions and the following disclaimer in the |
| 1103 | documentation and/or other materials provided with the distribution. |
| 1104 | 3. Neither the name of the University nor the names of its contributors |
| 1105 | may be used to endorse or promote products derived from this software |
| 1106 | without specific prior written permission. |
| 1107 | |
| 1108 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1109 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1110 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1111 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1112 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1113 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1114 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1115 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1116 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1117 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1118 | SUCH DAMAGE. |
| 1119 | |
| 1120 | ------------------------------------------------------------------- |
| 1121 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1122 | Copyright (c) 1983, 1987, 1989 |
| 1123 | The Regents of the University of California. All rights reserved. |
| 1124 | |
| 1125 | Redistribution and use in source and binary forms, with or without |
| 1126 | modification, are permitted provided that the following conditions |
| 1127 | are met: |
| 1128 | 1. Redistributions of source code must retain the above copyright |
| 1129 | notice, this list of conditions and the following disclaimer. |
| 1130 | 2. Redistributions in binary form must reproduce the above copyright |
| 1131 | notice, this list of conditions and the following disclaimer in the |
| 1132 | documentation and/or other materials provided with the distribution. |
| 1133 | 3. Neither the name of the University nor the names of its contributors |
| 1134 | may be used to endorse or promote products derived from this software |
| 1135 | without specific prior written permission. |
| 1136 | |
| 1137 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1138 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1139 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1140 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1141 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1142 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1143 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1144 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1145 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1146 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1147 | SUCH DAMAGE. |
| 1148 | |
| 1149 | ------------------------------------------------------------------- |
| 1150 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1151 | Copyright (c) 1983, 1989 |
| 1152 | The Regents of the University of California. All rights reserved. |
| 1153 | |
| 1154 | Redistribution and use in source and binary forms, with or without |
| 1155 | modification, are permitted provided that the following conditions |
| 1156 | are met: |
| 1157 | 1. Redistributions of source code must retain the above copyright |
| 1158 | notice, this list of conditions and the following disclaimer. |
| 1159 | 2. Redistributions in binary form must reproduce the above copyright |
| 1160 | notice, this list of conditions and the following disclaimer in the |
| 1161 | documentation and/or other materials provided with the distribution. |
| 1162 | 3. All advertising materials mentioning features or use of this software |
| 1163 | must display the following acknowledgement: |
| 1164 | This product includes software developed by the University of |
| 1165 | California, Berkeley and its contributors. |
| 1166 | 4. Neither the name of the University nor the names of its contributors |
| 1167 | may be used to endorse or promote products derived from this software |
| 1168 | without specific prior written permission. |
| 1169 | |
| 1170 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1171 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1172 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1173 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1174 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1175 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1176 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1177 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1178 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1179 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1180 | SUCH DAMAGE. |
| 1181 | |
| 1182 | ------------------------------------------------------------------- |
| 1183 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1184 | Copyright (c) 1983, 1989, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1185 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1186 | |
| 1187 | Redistribution and use in source and binary forms, with or without |
| 1188 | modification, are permitted provided that the following conditions |
| 1189 | are met: |
| 1190 | 1. Redistributions of source code must retain the above copyright |
| 1191 | notice, this list of conditions and the following disclaimer. |
| 1192 | 2. Redistributions in binary form must reproduce the above copyright |
| 1193 | notice, this list of conditions and the following disclaimer in the |
| 1194 | documentation and/or other materials provided with the distribution. |
| 1195 | 3. Neither the name of the University nor the names of its contributors |
| 1196 | may be used to endorse or promote products derived from this software |
| 1197 | without specific prior written permission. |
| 1198 | |
| 1199 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1200 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1201 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1202 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1203 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1204 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1205 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1206 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1207 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1208 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1209 | SUCH DAMAGE. |
| 1210 | |
| 1211 | ------------------------------------------------------------------- |
| 1212 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1213 | Copyright (c) 1983, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1214 | The Regents of the University of California. All rights reserved. |
| 1215 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1216 | Redistribution and use in source and binary forms, with or without |
| 1217 | modification, are permitted provided that the following conditions |
| 1218 | are met: |
| 1219 | 1. Redistributions of source code must retain the above copyright |
| 1220 | notice, this list of conditions and the following disclaimer. |
| 1221 | 2. Redistributions in binary form must reproduce the above copyright |
| 1222 | notice, this list of conditions and the following disclaimer in the |
| 1223 | documentation and/or other materials provided with the distribution. |
| 1224 | 3. Neither the name of the University nor the names of its contributors |
| 1225 | may be used to endorse or promote products derived from this software |
| 1226 | without specific prior written permission. |
| 1227 | |
| 1228 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1229 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1230 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1231 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1232 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1233 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1234 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1235 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1236 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1237 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1238 | SUCH DAMAGE. |
| 1239 | |
| 1240 | ------------------------------------------------------------------- |
| 1241 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1242 | Copyright (c) 1983, 1993 |
| 1243 | The Regents of the University of California. All rights reserved. |
| 1244 | |
| 1245 | Redistribution and use in source and binary forms, with or without |
| 1246 | modification, are permitted provided that the following conditions |
| 1247 | are met: |
| 1248 | 1. Redistributions of source code must retain the above copyright |
| 1249 | notice, this list of conditions and the following disclaimer. |
| 1250 | 2. Redistributions in binary form must reproduce the above copyright |
| 1251 | notice, this list of conditions and the following disclaimer in the |
| 1252 | documentation and/or other materials provided with the distribution. |
| 1253 | 4. Neither the name of the University nor the names of its contributors |
| 1254 | may be used to endorse or promote products derived from this software |
| 1255 | without specific prior written permission. |
| 1256 | |
| 1257 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1258 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1259 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1260 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1261 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1262 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1263 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1264 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1265 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1266 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1267 | SUCH DAMAGE. |
| 1268 | |
| 1269 | ------------------------------------------------------------------- |
| 1270 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1271 | Copyright (c) 1985 |
| 1272 | The Regents of the University of California. All rights reserved. |
| 1273 | |
| 1274 | Redistribution and use in source and binary forms, with or without |
| 1275 | modification, are permitted provided that the following conditions |
| 1276 | are met: |
| 1277 | 1. Redistributions of source code must retain the above copyright |
| 1278 | notice, this list of conditions and the following disclaimer. |
| 1279 | 2. Redistributions in binary form must reproduce the above copyright |
| 1280 | notice, this list of conditions and the following disclaimer in the |
| 1281 | documentation and/or other materials provided with the distribution. |
| 1282 | 3. All advertising materials mentioning features or use of this software |
| 1283 | must display the following acknowledgement: |
| 1284 | This product includes software developed by the University of |
| 1285 | California, Berkeley and its contributors. |
| 1286 | 4. Neither the name of the University nor the names of its contributors |
| 1287 | may be used to endorse or promote products derived from this software |
| 1288 | without specific prior written permission. |
| 1289 | |
| 1290 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1291 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1292 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1293 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1294 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1295 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1296 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1297 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1298 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1299 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1300 | SUCH DAMAGE. |
| 1301 | |
| 1302 | ------------------------------------------------------------------- |
| 1303 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1304 | Copyright (c) 1985 Regents of the University of California. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1305 | All rights reserved. |
| 1306 | |
| 1307 | Redistribution and use in source and binary forms, with or without |
| 1308 | modification, are permitted provided that the following conditions |
| 1309 | are met: |
| 1310 | 1. Redistributions of source code must retain the above copyright |
| 1311 | notice, this list of conditions and the following disclaimer. |
| 1312 | 2. Redistributions in binary form must reproduce the above copyright |
| 1313 | notice, this list of conditions and the following disclaimer in the |
| 1314 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1315 | 3. Neither the name of the University nor the names of its contributors |
| 1316 | may be used to endorse or promote products derived from this software |
| 1317 | without specific prior written permission. |
| 1318 | |
| 1319 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1320 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1321 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1322 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1323 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1324 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1325 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1326 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1327 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1328 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1329 | SUCH DAMAGE. |
| 1330 | |
| 1331 | ------------------------------------------------------------------- |
| 1332 | |
| 1333 | Copyright (c) 1985, 1988, 1993 |
| 1334 | The Regents of the University of California. All rights reserved. |
| 1335 | |
| 1336 | Redistribution and use in source and binary forms, with or without |
| 1337 | modification, are permitted provided that the following conditions |
| 1338 | are met: |
| 1339 | 1. Redistributions of source code must retain the above copyright |
| 1340 | notice, this list of conditions and the following disclaimer. |
| 1341 | 2. Redistributions in binary form must reproduce the above copyright |
| 1342 | notice, this list of conditions and the following disclaimer in the |
| 1343 | documentation and/or other materials provided with the distribution. |
| 1344 | 3. Neither the name of the University nor the names of its contributors |
| 1345 | may be used to endorse or promote products derived from this software |
| 1346 | without specific prior written permission. |
| 1347 | |
| 1348 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1349 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1350 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1351 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1352 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1353 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1354 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1355 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1356 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1357 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1358 | SUCH DAMAGE. |
| 1359 | |
| 1360 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 1361 | |
| 1362 | Permission to use, copy, modify, and distribute this software for any |
| 1363 | purpose with or without fee is hereby granted, provided that the above |
| 1364 | copyright notice and this permission notice appear in all copies, and that |
| 1365 | the name of Digital Equipment Corporation not be used in advertising or |
| 1366 | publicity pertaining to distribution of the document or software without |
| 1367 | specific, written prior permission. |
| 1368 | |
| 1369 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1370 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1371 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1372 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1373 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1374 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1375 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1376 | SOFTWARE. |
| 1377 | |
| 1378 | ------------------------------------------------------------------- |
| 1379 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1380 | Copyright (c) 1985, 1989, 1993 |
| 1381 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1382 | |
| 1383 | Redistribution and use in source and binary forms, with or without |
| 1384 | modification, are permitted provided that the following conditions |
| 1385 | are met: |
| 1386 | 1. Redistributions of source code must retain the above copyright |
| 1387 | notice, this list of conditions and the following disclaimer. |
| 1388 | 2. Redistributions in binary form must reproduce the above copyright |
| 1389 | notice, this list of conditions and the following disclaimer in the |
| 1390 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1391 | 3. All advertising materials mentioning features or use of this software |
| 1392 | must display the following acknowledgement: |
| 1393 | This product includes software developed by the University of |
| 1394 | California, Berkeley and its contributors. |
| 1395 | 4. Neither the name of the University nor the names of its contributors |
| 1396 | may be used to endorse or promote products derived from this software |
| 1397 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1398 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1399 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1400 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1401 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1402 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1403 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1404 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1405 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1406 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1407 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1408 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1409 | SUCH DAMAGE. |
| 1410 | |
| 1411 | ------------------------------------------------------------------- |
| 1412 | |
| 1413 | Copyright (c) 1985, 1993 |
| 1414 | The Regents of the University of California. All rights reserved. |
| 1415 | |
| 1416 | Redistribution and use in source and binary forms, with or without |
| 1417 | modification, are permitted provided that the following conditions |
| 1418 | are met: |
| 1419 | 1. Redistributions of source code must retain the above copyright |
| 1420 | notice, this list of conditions and the following disclaimer. |
| 1421 | 2. Redistributions in binary form must reproduce the above copyright |
| 1422 | notice, this list of conditions and the following disclaimer in the |
| 1423 | documentation and/or other materials provided with the distribution. |
| 1424 | 3. All advertising materials mentioning features or use of this software |
| 1425 | must display the following acknowledgement: |
| 1426 | This product includes software developed by the University of |
| 1427 | California, Berkeley and its contributors. |
| 1428 | 4. Neither the name of the University nor the names of its contributors |
| 1429 | may be used to endorse or promote products derived from this software |
| 1430 | without specific prior written permission. |
| 1431 | |
| 1432 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1433 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1434 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1435 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1436 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1437 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1438 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1439 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1440 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1441 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1442 | SUCH DAMAGE. |
| 1443 | |
| 1444 | ------------------------------------------------------------------- |
| 1445 | |
| 1446 | Copyright (c) 1985, 1993 |
| 1447 | The Regents of the University of California. All rights reserved. |
| 1448 | |
| 1449 | Redistribution and use in source and binary forms, with or without |
| 1450 | modification, are permitted provided that the following conditions |
| 1451 | are met: |
| 1452 | 1. Redistributions of source code must retain the above copyright |
| 1453 | notice, this list of conditions and the following disclaimer. |
| 1454 | 2. Redistributions in binary form must reproduce the above copyright |
| 1455 | notice, this list of conditions and the following disclaimer in the |
| 1456 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 1457 | 3. All advertising materials mentioning features or use of this software |
| 1458 | must display the following acknowledgement: |
| 1459 | This product includes software developed by the University of |
| 1460 | California, Berkeley and its contributors. |
| 1461 | 4. Neither the name of the University nor the names of its contributors |
| 1462 | may be used to endorse or promote products derived from this software |
| 1463 | without specific prior written permission. |
| 1464 | |
| 1465 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1466 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1467 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1468 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1469 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1470 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1471 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1472 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1473 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1474 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1475 | SUCH DAMAGE. |
| 1476 | |
| 1477 | ------------------------------------------------------------------- |
| 1478 | |
| 1479 | Copyright (c) 1985, 1993 |
| 1480 | The Regents of the University of California. All rights reserved. |
| 1481 | |
| 1482 | Redistribution and use in source and binary forms, with or without |
| 1483 | modification, are permitted provided that the following conditions |
| 1484 | are met: |
| 1485 | 1. Redistributions of source code must retain the above copyright |
| 1486 | notice, this list of conditions and the following disclaimer. |
| 1487 | 2. Redistributions in binary form must reproduce the above copyright |
| 1488 | notice, this list of conditions and the following disclaimer in the |
| 1489 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1490 | 3. Neither the name of the University nor the names of its contributors |
| 1491 | may be used to endorse or promote products derived from this software |
| 1492 | without specific prior written permission. |
| 1493 | |
| 1494 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1495 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1496 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1497 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1498 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1499 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1500 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1501 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1502 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1503 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1504 | SUCH DAMAGE. |
| 1505 | |
| 1506 | ------------------------------------------------------------------- |
| 1507 | |
| 1508 | Copyright (c) 1987 Regents of the University of California. |
| 1509 | All rights reserved. |
| 1510 | |
| 1511 | Redistribution and use in source and binary forms, with or without |
| 1512 | modification, are permitted provided that the following conditions |
| 1513 | are met: |
| 1514 | 1. Redistributions of source code must retain the above copyright |
| 1515 | notice, this list of conditions and the following disclaimer. |
| 1516 | 2. Redistributions in binary form must reproduce the above copyright |
| 1517 | notice, this list of conditions and the following disclaimer in the |
| 1518 | documentation and/or other materials provided with the distribution. |
| 1519 | 3. Neither the name of the University nor the names of its contributors |
| 1520 | may be used to endorse or promote products derived from this software |
| 1521 | without specific prior written permission. |
| 1522 | |
| 1523 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1524 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1525 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1526 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1527 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1528 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1529 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1530 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1531 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1532 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1533 | SUCH DAMAGE. |
| 1534 | |
| 1535 | ------------------------------------------------------------------- |
| 1536 | |
| 1537 | Copyright (c) 1987, 1993 |
| 1538 | The Regents of the University of California. All rights reserved. |
| 1539 | |
| 1540 | Redistribution and use in source and binary forms, with or without |
| 1541 | modification, are permitted provided that the following conditions |
| 1542 | are met: |
| 1543 | 1. Redistributions of source code must retain the above copyright |
| 1544 | notice, this list of conditions and the following disclaimer. |
| 1545 | 2. Redistributions in binary form must reproduce the above copyright |
| 1546 | notice, this list of conditions and the following disclaimer in the |
| 1547 | documentation and/or other materials provided with the distribution. |
| 1548 | 3. All advertising materials mentioning features or use of this software |
| 1549 | must display the following acknowledgement: |
| 1550 | This product includes software developed by the University of |
| 1551 | California, Berkeley and its contributors. |
| 1552 | 4. Neither the name of the University nor the names of its contributors |
| 1553 | may be used to endorse or promote products derived from this software |
| 1554 | without specific prior written permission. |
| 1555 | |
| 1556 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1557 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1558 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1559 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1560 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1561 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1562 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1563 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1564 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1565 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1566 | SUCH DAMAGE. |
| 1567 | |
| 1568 | ------------------------------------------------------------------- |
| 1569 | |
| 1570 | Copyright (c) 1987, 1993 |
| 1571 | The Regents of the University of California. All rights reserved. |
| 1572 | |
| 1573 | Redistribution and use in source and binary forms, with or without |
| 1574 | modification, are permitted provided that the following conditions |
| 1575 | are met: |
| 1576 | 1. Redistributions of source code must retain the above copyright |
| 1577 | notice, this list of conditions and the following disclaimer. |
| 1578 | 2. Redistributions in binary form must reproduce the above copyright |
| 1579 | notice, this list of conditions and the following disclaimer in the |
| 1580 | documentation and/or other materials provided with the distribution. |
| 1581 | 3. Neither the name of the University nor the names of its contributors |
| 1582 | may be used to endorse or promote products derived from this software |
| 1583 | without specific prior written permission. |
| 1584 | |
| 1585 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1586 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1587 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1588 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1589 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1590 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1591 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1592 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1593 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1594 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1595 | SUCH DAMAGE. |
| 1596 | |
| 1597 | ------------------------------------------------------------------- |
| 1598 | |
| 1599 | Copyright (c) 1988 Regents of the University of California. |
| 1600 | All rights reserved. |
| 1601 | |
| 1602 | Redistribution and use in source and binary forms, with or without |
| 1603 | modification, are permitted provided that the following conditions |
| 1604 | are met: |
| 1605 | 1. Redistributions of source code must retain the above copyright |
| 1606 | notice, this list of conditions and the following disclaimer. |
| 1607 | 2. Redistributions in binary form must reproduce the above copyright |
| 1608 | notice, this list of conditions and the following disclaimer in the |
| 1609 | documentation and/or other materials provided with the distribution. |
| 1610 | 3. Neither the name of the University nor the names of its contributors |
| 1611 | may be used to endorse or promote products derived from this software |
| 1612 | without specific prior written permission. |
| 1613 | |
| 1614 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1615 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1616 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1617 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1618 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1619 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1620 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1621 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1622 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1623 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1624 | SUCH DAMAGE. |
| 1625 | |
| 1626 | ------------------------------------------------------------------- |
| 1627 | |
| 1628 | Copyright (c) 1988 The Regents of the University of California. |
| 1629 | All rights reserved. |
| 1630 | |
| 1631 | Redistribution and use in source and binary forms, with or without |
| 1632 | modification, are permitted provided that the following conditions |
| 1633 | are met: |
| 1634 | 1. Redistributions of source code must retain the above copyright |
| 1635 | notice, this list of conditions and the following disclaimer. |
| 1636 | 2. Redistributions in binary form must reproduce the above copyright |
| 1637 | notice, this list of conditions and the following disclaimer in the |
| 1638 | documentation and/or other materials provided with the distribution. |
| 1639 | 3. Neither the name of the University nor the names of its contributors |
| 1640 | may be used to endorse or promote products derived from this software |
| 1641 | without specific prior written permission. |
| 1642 | |
| 1643 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1644 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1645 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1646 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1647 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1648 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1649 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1650 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1651 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1652 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1653 | SUCH DAMAGE. |
| 1654 | |
| 1655 | ------------------------------------------------------------------- |
| 1656 | |
| 1657 | Copyright (c) 1988, 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1658 | The Regents of the University of California. All rights reserved. |
| 1659 | |
| 1660 | Redistribution and use in source and binary forms, with or without |
| 1661 | modification, are permitted provided that the following conditions |
| 1662 | are met: |
| 1663 | 1. Redistributions of source code must retain the above copyright |
| 1664 | notice, this list of conditions and the following disclaimer. |
| 1665 | 2. Redistributions in binary form must reproduce the above copyright |
| 1666 | notice, this list of conditions and the following disclaimer in the |
| 1667 | documentation and/or other materials provided with the distribution. |
| 1668 | 3. All advertising materials mentioning features or use of this software |
| 1669 | must display the following acknowledgement: |
| 1670 | This product includes software developed by the University of |
| 1671 | California, Berkeley and its contributors. |
| 1672 | 4. Neither the name of the University nor the names of its contributors |
| 1673 | may be used to endorse or promote products derived from this software |
| 1674 | without specific prior written permission. |
| 1675 | |
| 1676 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1677 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1678 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1679 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1680 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1681 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1682 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1683 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1684 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1685 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1686 | SUCH DAMAGE. |
| 1687 | |
| 1688 | ------------------------------------------------------------------- |
| 1689 | |
| 1690 | Copyright (c) 1988, 1993 |
| 1691 | The Regents of the University of California. All rights reserved. |
| 1692 | |
| 1693 | Redistribution and use in source and binary forms, with or without |
| 1694 | modification, are permitted provided that the following conditions |
| 1695 | are met: |
| 1696 | 1. Redistributions of source code must retain the above copyright |
| 1697 | notice, this list of conditions and the following disclaimer. |
| 1698 | 2. Redistributions in binary form must reproduce the above copyright |
| 1699 | notice, this list of conditions and the following disclaimer in the |
| 1700 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 1701 | 3. All advertising materials mentioning features or use of this software |
| 1702 | must display the following acknowledgement: |
| 1703 | This product includes software developed by the University of |
| 1704 | California, Berkeley and its contributors. |
| 1705 | 4. Neither the name of the University nor the names of its contributors |
| 1706 | may be used to endorse or promote products derived from this software |
| 1707 | without specific prior written permission. |
| 1708 | |
| 1709 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1710 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1711 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1712 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1713 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1714 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1715 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1716 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1717 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1718 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1719 | SUCH DAMAGE. |
| 1720 | |
| 1721 | ------------------------------------------------------------------- |
| 1722 | |
| 1723 | Copyright (c) 1988, 1993 |
| 1724 | The Regents of the University of California. All rights reserved. |
| 1725 | |
| 1726 | Redistribution and use in source and binary forms, with or without |
| 1727 | modification, are permitted provided that the following conditions |
| 1728 | are met: |
| 1729 | 1. Redistributions of source code must retain the above copyright |
| 1730 | notice, this list of conditions and the following disclaimer. |
| 1731 | 2. Redistributions in binary form must reproduce the above copyright |
| 1732 | notice, this list of conditions and the following disclaimer in the |
| 1733 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1734 | 3. Neither the name of the University nor the names of its contributors |
| 1735 | may be used to endorse or promote products derived from this software |
| 1736 | without specific prior written permission. |
| 1737 | |
| 1738 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1739 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1740 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1741 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1742 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1743 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1744 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1745 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1746 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1747 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1748 | SUCH DAMAGE. |
| 1749 | |
| 1750 | ------------------------------------------------------------------- |
| 1751 | |
| 1752 | Copyright (c) 1988, 1993 |
| 1753 | The Regents of the University of California. All rights reserved. |
| 1754 | |
| 1755 | This code is derived from software written by Ken Arnold and |
| 1756 | published in UNIX Review, Vol. 6, No. 8. |
| 1757 | |
| 1758 | Redistribution and use in source and binary forms, with or without |
| 1759 | modification, are permitted provided that the following conditions |
| 1760 | are met: |
| 1761 | 1. Redistributions of source code must retain the above copyright |
| 1762 | notice, this list of conditions and the following disclaimer. |
| 1763 | 2. Redistributions in binary form must reproduce the above copyright |
| 1764 | notice, this list of conditions and the following disclaimer in the |
| 1765 | documentation and/or other materials provided with the distribution. |
| 1766 | 3. Neither the name of the University nor the names of its contributors |
| 1767 | may be used to endorse or promote products derived from this software |
| 1768 | without specific prior written permission. |
| 1769 | |
| 1770 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1771 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1772 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1773 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1774 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1775 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1776 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1777 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1778 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1779 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1780 | SUCH DAMAGE. |
| 1781 | |
| 1782 | ------------------------------------------------------------------- |
| 1783 | |
| 1784 | Copyright (c) 1989 The Regents of the University of California. |
| 1785 | All rights reserved. |
| 1786 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1787 | Redistribution and use in source and binary forms, with or without |
| 1788 | modification, are permitted provided that the following conditions |
| 1789 | are met: |
| 1790 | 1. Redistributions of source code must retain the above copyright |
| 1791 | notice, this list of conditions and the following disclaimer. |
| 1792 | 2. Redistributions in binary form must reproduce the above copyright |
| 1793 | notice, this list of conditions and the following disclaimer in the |
| 1794 | documentation and/or other materials provided with the distribution. |
| 1795 | 3. Neither the name of the University nor the names of its contributors |
| 1796 | may be used to endorse or promote products derived from this software |
| 1797 | without specific prior written permission. |
| 1798 | |
| 1799 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1800 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1801 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1802 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1803 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1804 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1805 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1806 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1807 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1808 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1809 | SUCH DAMAGE. |
| 1810 | |
| 1811 | ------------------------------------------------------------------- |
| 1812 | |
| 1813 | Copyright (c) 1989 The Regents of the University of California. |
| 1814 | All rights reserved. |
| 1815 | (c) UNIX System Laboratories, Inc. |
| 1816 | All or some portions of this file are derived from material licensed |
| 1817 | to the University of California by American Telephone and Telegraph |
| 1818 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1819 | the permission of UNIX System Laboratories, Inc. |
| 1820 | |
| 1821 | Redistribution and use in source and binary forms, with or without |
| 1822 | modification, are permitted provided that the following conditions |
| 1823 | are met: |
| 1824 | 1. Redistributions of source code must retain the above copyright |
| 1825 | notice, this list of conditions and the following disclaimer. |
| 1826 | 2. Redistributions in binary form must reproduce the above copyright |
| 1827 | notice, this list of conditions and the following disclaimer in the |
| 1828 | documentation and/or other materials provided with the distribution. |
| 1829 | 3. Neither the name of the University nor the names of its contributors |
| 1830 | may be used to endorse or promote products derived from this software |
| 1831 | without specific prior written permission. |
| 1832 | |
| 1833 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1834 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1835 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1836 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1837 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1838 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1839 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1840 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1841 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1842 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1843 | SUCH DAMAGE. |
| 1844 | |
| 1845 | ------------------------------------------------------------------- |
| 1846 | |
| 1847 | Copyright (c) 1989, 1993 |
| 1848 | The Regents of the University of California. All rights reserved. |
| 1849 | |
| 1850 | Redistribution and use in source and binary forms, with or without |
| 1851 | modification, are permitted provided that the following conditions |
| 1852 | are met: |
| 1853 | 1. Redistributions of source code must retain the above copyright |
| 1854 | notice, this list of conditions and the following disclaimer. |
| 1855 | 2. Redistributions in binary form must reproduce the above copyright |
| 1856 | notice, this list of conditions and the following disclaimer in the |
| 1857 | documentation and/or other materials provided with the distribution. |
| 1858 | 3. Neither the name of the University nor the names of its contributors |
| 1859 | may be used to endorse or promote products derived from this software |
| 1860 | without specific prior written permission. |
| 1861 | |
| 1862 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1863 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1864 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1865 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1866 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1867 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1868 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1869 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1870 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1871 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1872 | SUCH DAMAGE. |
| 1873 | |
| 1874 | ------------------------------------------------------------------- |
| 1875 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1876 | Copyright (c) 1989, 1993 |
| 1877 | The Regents of the University of California. All rights reserved. |
| 1878 | |
| 1879 | Redistribution and use in source and binary forms, with or without |
| 1880 | modification, are permitted provided that the following conditions |
| 1881 | are met: |
| 1882 | 1. Redistributions of source code must retain the above copyright |
| 1883 | notice, this list of conditions and the following disclaimer. |
| 1884 | 2. Redistributions in binary form must reproduce the above copyright |
| 1885 | notice, this list of conditions and the following disclaimer in the |
| 1886 | documentation and/or other materials provided with the distribution. |
| 1887 | 4. Neither the name of the University nor the names of its contributors |
| 1888 | may be used to endorse or promote products derived from this software |
| 1889 | without specific prior written permission. |
| 1890 | |
| 1891 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1892 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1893 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1894 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1895 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1896 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1897 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1898 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1899 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1900 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1901 | SUCH DAMAGE. |
| 1902 | |
| 1903 | ------------------------------------------------------------------- |
| 1904 | |
| 1905 | Copyright (c) 1989, 1993 |
| 1906 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 1907 | |
| 1908 | This code is derived from software contributed to Berkeley by |
| 1909 | Roger L. Snyder. |
| 1910 | |
| 1911 | Redistribution and use in source and binary forms, with or without |
| 1912 | modification, are permitted provided that the following conditions |
| 1913 | are met: |
| 1914 | 1. Redistributions of source code must retain the above copyright |
| 1915 | notice, this list of conditions and the following disclaimer. |
| 1916 | 2. Redistributions in binary form must reproduce the above copyright |
| 1917 | notice, this list of conditions and the following disclaimer in the |
| 1918 | documentation and/or other materials provided with the distribution. |
| 1919 | 3. Neither the name of the University nor the names of its contributors |
| 1920 | may be used to endorse or promote products derived from this software |
| 1921 | without specific prior written permission. |
| 1922 | |
| 1923 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1924 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1925 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1926 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1927 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1928 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1929 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1930 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1931 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1932 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1933 | SUCH DAMAGE. |
| 1934 | |
| 1935 | ------------------------------------------------------------------- |
| 1936 | |
| 1937 | Copyright (c) 1989, 1993 |
| 1938 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1939 | (c) UNIX System Laboratories, Inc. |
| 1940 | All or some portions of this file are derived from material licensed |
| 1941 | to the University of California by American Telephone and Telegraph |
| 1942 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1943 | the permission of UNIX System Laboratories, Inc. |
| 1944 | |
| 1945 | Redistribution and use in source and binary forms, with or without |
| 1946 | modification, are permitted provided that the following conditions |
| 1947 | are met: |
| 1948 | 1. Redistributions of source code must retain the above copyright |
| 1949 | notice, this list of conditions and the following disclaimer. |
| 1950 | 2. Redistributions in binary form must reproduce the above copyright |
| 1951 | notice, this list of conditions and the following disclaimer in the |
| 1952 | documentation and/or other materials provided with the distribution. |
| 1953 | 3. Neither the name of the University nor the names of its contributors |
| 1954 | may be used to endorse or promote products derived from this software |
| 1955 | without specific prior written permission. |
| 1956 | |
| 1957 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1958 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1959 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1960 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1961 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1962 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1963 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1964 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1965 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1966 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1967 | SUCH DAMAGE. |
| 1968 | |
| 1969 | ------------------------------------------------------------------- |
| 1970 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 1971 | Copyright (c) 1990 Regents of the University of California. |
| 1972 | All rights reserved. |
| 1973 | |
| 1974 | This code is derived from software contributed to Berkeley by |
| 1975 | Chris Torek. |
| 1976 | |
| 1977 | Redistribution and use in source and binary forms, with or without |
| 1978 | modification, are permitted provided that the following conditions |
| 1979 | are met: |
| 1980 | 1. Redistributions of source code must retain the above copyright |
| 1981 | notice, this list of conditions and the following disclaimer. |
| 1982 | 2. Redistributions in binary form must reproduce the above copyright |
| 1983 | notice, this list of conditions and the following disclaimer in the |
| 1984 | documentation and/or other materials provided with the distribution. |
| 1985 | 3. Neither the name of the University nor the names of its contributors |
| 1986 | may be used to endorse or promote products derived from this software |
| 1987 | without specific prior written permission. |
| 1988 | |
| 1989 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1990 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1991 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1992 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1993 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1994 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1995 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1996 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1997 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1998 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1999 | SUCH DAMAGE. |
| 2000 | |
| 2001 | ------------------------------------------------------------------- |
| 2002 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2003 | Copyright (c) 1990 The Regents of the University of California. |
| 2004 | All rights reserved. |
| 2005 | |
| 2006 | Redistribution and use in source and binary forms, with or without |
| 2007 | modification, are permitted provided that the following conditions |
| 2008 | are met: |
| 2009 | 1. Redistributions of source code must retain the above copyright |
| 2010 | notice, this list of conditions and the following disclaimer. |
| 2011 | 2. Redistributions in binary form must reproduce the above copyright |
| 2012 | notice, this list of conditions and the following disclaimer in the |
| 2013 | documentation and/or other materials provided with the distribution. |
| 2014 | 3. Neither the name of the University nor the names of its contributors |
| 2015 | may be used to endorse or promote products derived from this software |
| 2016 | without specific prior written permission. |
| 2017 | |
| 2018 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2019 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2020 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2021 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2022 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2023 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2024 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2025 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2026 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2027 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2028 | SUCH DAMAGE. |
| 2029 | |
| 2030 | ------------------------------------------------------------------- |
| 2031 | |
| 2032 | Copyright (c) 1990 The Regents of the University of California. |
| 2033 | All rights reserved. |
| 2034 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2035 | This code is derived from software contributed to Berkeley by |
| 2036 | Chris Torek. |
| 2037 | |
| 2038 | Redistribution and use in source and binary forms, with or without |
| 2039 | modification, are permitted provided that the following conditions |
| 2040 | are met: |
| 2041 | 1. Redistributions of source code must retain the above copyright |
| 2042 | notice, this list of conditions and the following disclaimer. |
| 2043 | 2. Redistributions in binary form must reproduce the above copyright |
| 2044 | notice, this list of conditions and the following disclaimer in the |
| 2045 | documentation and/or other materials provided with the distribution. |
| 2046 | 3. Neither the name of the University nor the names of its contributors |
| 2047 | may be used to endorse or promote products derived from this software |
| 2048 | without specific prior written permission. |
| 2049 | |
| 2050 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2051 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2052 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2053 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2054 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2055 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2056 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2057 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2058 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2059 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2060 | SUCH DAMAGE. |
| 2061 | |
| 2062 | ------------------------------------------------------------------- |
| 2063 | |
| 2064 | Copyright (c) 1990 The Regents of the University of California. |
| 2065 | All rights reserved. |
| 2066 | |
| 2067 | This code is derived from software contributed to Berkeley by |
| 2068 | William Jolitz. |
| 2069 | |
| 2070 | Redistribution and use in source and binary forms, with or without |
| 2071 | modification, are permitted provided that the following conditions |
| 2072 | are met: |
| 2073 | 1. Redistributions of source code must retain the above copyright |
| 2074 | notice, this list of conditions and the following disclaimer. |
| 2075 | 2. Redistributions in binary form must reproduce the above copyright |
| 2076 | notice, this list of conditions and the following disclaimer in the |
| 2077 | documentation and/or other materials provided with the distribution. |
| 2078 | 3. Neither the name of the University nor the names of its contributors |
| 2079 | may be used to endorse or promote products derived from this software |
| 2080 | without specific prior written permission. |
| 2081 | |
| 2082 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2083 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2084 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2085 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2086 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2087 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2088 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2089 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2090 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2091 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2092 | SUCH DAMAGE. |
| 2093 | |
| 2094 | ------------------------------------------------------------------- |
| 2095 | |
| 2096 | Copyright (c) 1990, 1993 |
| 2097 | The Regents of the University of California. All rights reserved. |
| 2098 | |
| 2099 | Redistribution and use in source and binary forms, with or without |
| 2100 | modification, are permitted provided that the following conditions |
| 2101 | are met: |
| 2102 | 1. Redistributions of source code must retain the above copyright |
| 2103 | notice, this list of conditions and the following disclaimer. |
| 2104 | 2. Redistributions in binary form must reproduce the above copyright |
| 2105 | notice, this list of conditions and the following disclaimer in the |
| 2106 | documentation and/or other materials provided with the distribution. |
| 2107 | 3. Neither the name of the University nor the names of its contributors |
| 2108 | may be used to endorse or promote products derived from this software |
| 2109 | without specific prior written permission. |
| 2110 | |
| 2111 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2112 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2113 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2114 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2115 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2116 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2117 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2118 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2119 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2120 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2121 | SUCH DAMAGE. |
| 2122 | |
| 2123 | ------------------------------------------------------------------- |
| 2124 | |
| 2125 | Copyright (c) 1990, 1993 |
| 2126 | The Regents of the University of California. All rights reserved. |
| 2127 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2128 | This code is derived from software contributed to Berkeley by |
| 2129 | Chris Torek. |
| 2130 | |
| 2131 | Redistribution and use in source and binary forms, with or without |
| 2132 | modification, are permitted provided that the following conditions |
| 2133 | are met: |
| 2134 | 1. Redistributions of source code must retain the above copyright |
| 2135 | notice, this list of conditions and the following disclaimer. |
| 2136 | 2. Redistributions in binary form must reproduce the above copyright |
| 2137 | notice, this list of conditions and the following disclaimer in the |
| 2138 | documentation and/or other materials provided with the distribution. |
| 2139 | 3. Neither the name of the University nor the names of its contributors |
| 2140 | may be used to endorse or promote products derived from this software |
| 2141 | without specific prior written permission. |
| 2142 | |
| 2143 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2144 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2145 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2146 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2147 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2148 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2149 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2150 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2151 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2152 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2153 | SUCH DAMAGE. |
| 2154 | |
| 2155 | ------------------------------------------------------------------- |
| 2156 | |
| 2157 | Copyright (c) 1990, 1993 |
| 2158 | The Regents of the University of California. All rights reserved. |
| 2159 | |
| 2160 | This code is derived from software contributed to Berkeley by |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2161 | Donn Seeley at UUNET Technologies, Inc. |
| 2162 | |
| 2163 | Redistribution and use in source and binary forms, with or without |
| 2164 | modification, are permitted provided that the following conditions |
| 2165 | are met: |
| 2166 | 1. Redistributions of source code must retain the above copyright |
| 2167 | notice, this list of conditions and the following disclaimer. |
| 2168 | 2. Redistributions in binary form must reproduce the above copyright |
| 2169 | notice, this list of conditions and the following disclaimer in the |
| 2170 | documentation and/or other materials provided with the distribution. |
| 2171 | 3. Neither the name of the University nor the names of its contributors |
| 2172 | may be used to endorse or promote products derived from this software |
| 2173 | without specific prior written permission. |
| 2174 | |
| 2175 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2176 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2177 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2178 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2179 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2180 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2181 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2182 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2183 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2184 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2185 | SUCH DAMAGE. |
| 2186 | |
| 2187 | ------------------------------------------------------------------- |
| 2188 | |
| 2189 | Copyright (c) 1990, 1993 |
| 2190 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2191 | |
| 2192 | This code is derived from software contributed to Berkeley by |
| 2193 | Donn Seeley at UUNET Technologies, Inc. |
| 2194 | |
| 2195 | Redistribution and use in source and binary forms, with or without |
| 2196 | modification, are permitted provided that the following conditions |
| 2197 | are met: |
| 2198 | 1. Redistributions of source code must retain the above copyright |
| 2199 | notice, this list of conditions and the following disclaimer. |
| 2200 | 2. Redistributions in binary form must reproduce the above copyright |
| 2201 | notice, this list of conditions and the following disclaimer in the |
| 2202 | documentation and/or other materials provided with the distribution. |
| 2203 | 4. Neither the name of the University nor the names of its contributors |
| 2204 | may be used to endorse or promote products derived from this software |
| 2205 | without specific prior written permission. |
| 2206 | |
| 2207 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2208 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2209 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2210 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2211 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2212 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2213 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2214 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2215 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2216 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2217 | SUCH DAMAGE. |
| 2218 | |
| 2219 | ------------------------------------------------------------------- |
| 2220 | |
| 2221 | Copyright (c) 1990, 1993 |
| 2222 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2223 | (c) UNIX System Laboratories, Inc. |
| 2224 | All or some portions of this file are derived from material licensed |
| 2225 | to the University of California by American Telephone and Telegraph |
| 2226 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2227 | the permission of UNIX System Laboratories, Inc. |
| 2228 | |
| 2229 | Redistribution and use in source and binary forms, with or without |
| 2230 | modification, are permitted provided that the following conditions |
| 2231 | are met: |
| 2232 | 1. Redistributions of source code must retain the above copyright |
| 2233 | notice, this list of conditions and the following disclaimer. |
| 2234 | 2. Redistributions in binary form must reproduce the above copyright |
| 2235 | notice, this list of conditions and the following disclaimer in the |
| 2236 | documentation and/or other materials provided with the distribution. |
| 2237 | 3. Neither the name of the University nor the names of its contributors |
| 2238 | may be used to endorse or promote products derived from this software |
| 2239 | without specific prior written permission. |
| 2240 | |
| 2241 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2242 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2243 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2244 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2245 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2246 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2247 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2248 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2249 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2250 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2251 | SUCH DAMAGE. |
| 2252 | |
| 2253 | ------------------------------------------------------------------- |
| 2254 | |
| 2255 | Copyright (c) 1990, 1993, 1994 |
| 2256 | The Regents of the University of California. All rights reserved. |
| 2257 | |
| 2258 | Redistribution and use in source and binary forms, with or without |
| 2259 | modification, are permitted provided that the following conditions |
| 2260 | are met: |
| 2261 | 1. Redistributions of source code must retain the above copyright |
| 2262 | notice, this list of conditions and the following disclaimer. |
| 2263 | 2. Redistributions in binary form must reproduce the above copyright |
| 2264 | notice, this list of conditions and the following disclaimer in the |
| 2265 | documentation and/or other materials provided with the distribution. |
| 2266 | 3. Neither the name of the University nor the names of its contributors |
| 2267 | may be used to endorse or promote products derived from this software |
| 2268 | without specific prior written permission. |
| 2269 | |
| 2270 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2271 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2272 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2273 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2274 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2275 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2276 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2277 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2278 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2279 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2280 | SUCH DAMAGE. |
| 2281 | |
| 2282 | ------------------------------------------------------------------- |
| 2283 | |
| 2284 | Copyright (c) 1990, 1993, 1994 |
| 2285 | The Regents of the University of California. All rights reserved. |
| 2286 | |
| 2287 | This code is derived from software contributed to Berkeley by |
| 2288 | Chris Torek. |
| 2289 | |
| 2290 | Redistribution and use in source and binary forms, with or without |
| 2291 | modification, are permitted provided that the following conditions |
| 2292 | are met: |
| 2293 | 1. Redistributions of source code must retain the above copyright |
| 2294 | notice, this list of conditions and the following disclaimer. |
| 2295 | 2. Redistributions in binary form must reproduce the above copyright |
| 2296 | notice, this list of conditions and the following disclaimer in the |
| 2297 | documentation and/or other materials provided with the distribution. |
| 2298 | 3. Neither the name of the University nor the names of its contributors |
| 2299 | may be used to endorse or promote products derived from this software |
| 2300 | without specific prior written permission. |
| 2301 | |
| 2302 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2303 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2304 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2305 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2306 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2307 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2308 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2309 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2310 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2311 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2312 | SUCH DAMAGE. |
| 2313 | |
| 2314 | ------------------------------------------------------------------- |
| 2315 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2316 | Copyright (c) 1991 The Regents of the University of California. |
| 2317 | All rights reserved. |
| 2318 | |
| 2319 | Redistribution and use in source and binary forms, with or without |
| 2320 | modification, are permitted provided that the following conditions |
| 2321 | are met: |
| 2322 | 1. Redistributions of source code must retain the above copyright |
| 2323 | notice, this list of conditions and the following disclaimer. |
| 2324 | 2. Redistributions in binary form must reproduce the above copyright |
| 2325 | notice, this list of conditions and the following disclaimer in the |
| 2326 | documentation and/or other materials provided with the distribution. |
| 2327 | 3. Neither the name of the University nor the names of its contributors |
| 2328 | may be used to endorse or promote products derived from this software |
| 2329 | without specific prior written permission. |
| 2330 | |
| 2331 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2332 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2333 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2334 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2335 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2336 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2337 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2338 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2339 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2340 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2341 | SUCH DAMAGE. |
| 2342 | |
| 2343 | ------------------------------------------------------------------- |
| 2344 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2345 | Copyright (c) 1991, 1993 |
| 2346 | The Regents of the University of California. All rights reserved. |
| 2347 | |
| 2348 | Redistribution and use in source and binary forms, with or without |
| 2349 | modification, are permitted provided that the following conditions |
| 2350 | are met: |
| 2351 | 1. Redistributions of source code must retain the above copyright |
| 2352 | notice, this list of conditions and the following disclaimer. |
| 2353 | 2. Redistributions in binary form must reproduce the above copyright |
| 2354 | notice, this list of conditions and the following disclaimer in the |
| 2355 | documentation and/or other materials provided with the distribution. |
| 2356 | 3. Neither the name of the University nor the names of its contributors |
| 2357 | may be used to endorse or promote products derived from this software |
| 2358 | without specific prior written permission. |
| 2359 | |
| 2360 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2361 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2362 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2363 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2364 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2365 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2366 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2367 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2368 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2369 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2370 | SUCH DAMAGE. |
| 2371 | |
| 2372 | ------------------------------------------------------------------- |
| 2373 | |
| 2374 | Copyright (c) 1991, 1993 |
| 2375 | The Regents of the University of California. All rights reserved. |
| 2376 | |
| 2377 | This code is derived from software contributed to Berkeley by |
| 2378 | Berkeley Software Design, Inc. |
| 2379 | |
| 2380 | Redistribution and use in source and binary forms, with or without |
| 2381 | modification, are permitted provided that the following conditions |
| 2382 | are met: |
| 2383 | 1. Redistributions of source code must retain the above copyright |
| 2384 | notice, this list of conditions and the following disclaimer. |
| 2385 | 2. Redistributions in binary form must reproduce the above copyright |
| 2386 | notice, this list of conditions and the following disclaimer in the |
| 2387 | documentation and/or other materials provided with the distribution. |
| 2388 | 3. Neither the name of the University nor the names of its contributors |
| 2389 | may be used to endorse or promote products derived from this software |
| 2390 | without specific prior written permission. |
| 2391 | |
| 2392 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2393 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2394 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2395 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2396 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2397 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2398 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2399 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2400 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2401 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2402 | SUCH DAMAGE. |
| 2403 | |
| 2404 | ------------------------------------------------------------------- |
| 2405 | |
| 2406 | Copyright (c) 1991, 1993 |
| 2407 | The Regents of the University of California. All rights reserved. |
| 2408 | (c) UNIX System Laboratories, Inc. |
| 2409 | All or some portions of this file are derived from material licensed |
| 2410 | to the University of California by American Telephone and Telegraph |
| 2411 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2412 | the permission of UNIX System Laboratories, Inc. |
| 2413 | |
| 2414 | This code is derived from software contributed to Berkeley by |
| 2415 | Hugh Smith at The University of Guelph. |
| 2416 | |
| 2417 | Redistribution and use in source and binary forms, with or without |
| 2418 | modification, are permitted provided that the following conditions |
| 2419 | are met: |
| 2420 | 1. Redistributions of source code must retain the above copyright |
| 2421 | notice, this list of conditions and the following disclaimer. |
| 2422 | 2. Redistributions in binary form must reproduce the above copyright |
| 2423 | notice, this list of conditions and the following disclaimer in the |
| 2424 | documentation and/or other materials provided with the distribution. |
| 2425 | 3. Neither the name of the University nor the names of its contributors |
| 2426 | may be used to endorse or promote products derived from this software |
| 2427 | without specific prior written permission. |
| 2428 | |
| 2429 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2430 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2431 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2432 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2433 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2434 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2435 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2436 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2437 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2438 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2439 | SUCH DAMAGE. |
| 2440 | |
| 2441 | ------------------------------------------------------------------- |
| 2442 | |
| 2443 | Copyright (c) 1991, 1993, 1995, |
| 2444 | The Regents of the University of California. All rights reserved. |
| 2445 | |
| 2446 | This code is derived from software contributed to Berkeley by |
| 2447 | Havard Eidnes. |
| 2448 | |
| 2449 | Redistribution and use in source and binary forms, with or without |
| 2450 | modification, are permitted provided that the following conditions |
| 2451 | are met: |
| 2452 | 1. Redistributions of source code must retain the above copyright |
| 2453 | notice, this list of conditions and the following disclaimer. |
| 2454 | 2. Redistributions in binary form must reproduce the above copyright |
| 2455 | notice, this list of conditions and the following disclaimer in the |
| 2456 | documentation and/or other materials provided with the distribution. |
| 2457 | 3. Neither the name of the University nor the names of its contributors |
| 2458 | may be used to endorse or promote products derived from this software |
| 2459 | without specific prior written permission. |
| 2460 | |
| 2461 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2462 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2463 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2464 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2465 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2466 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2467 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2468 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2469 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2470 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2471 | SUCH DAMAGE. |
| 2472 | |
| 2473 | ------------------------------------------------------------------- |
| 2474 | |
| 2475 | Copyright (c) 1992 Henry Spencer. |
| 2476 | Copyright (c) 1992, 1993 |
| 2477 | The Regents of the University of California. All rights reserved. |
| 2478 | |
| 2479 | This code is derived from software contributed to Berkeley by |
| 2480 | Henry Spencer of the University of Toronto. |
| 2481 | |
| 2482 | Redistribution and use in source and binary forms, with or without |
| 2483 | modification, are permitted provided that the following conditions |
| 2484 | are met: |
| 2485 | 1. Redistributions of source code must retain the above copyright |
| 2486 | notice, this list of conditions and the following disclaimer. |
| 2487 | 2. Redistributions in binary form must reproduce the above copyright |
| 2488 | notice, this list of conditions and the following disclaimer in the |
| 2489 | documentation and/or other materials provided with the distribution. |
| 2490 | 3. Neither the name of the University nor the names of its contributors |
| 2491 | may be used to endorse or promote products derived from this software |
| 2492 | without specific prior written permission. |
| 2493 | |
| 2494 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2495 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2496 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2497 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2498 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2499 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2500 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2501 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2502 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2503 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2504 | SUCH DAMAGE. |
| 2505 | |
| 2506 | ------------------------------------------------------------------- |
| 2507 | |
| 2508 | Copyright (c) 1992 The Regents of the University of California. |
| 2509 | All rights reserved. |
| 2510 | |
| 2511 | Redistribution and use in source and binary forms, with or without |
| 2512 | modification, are permitted provided that the following conditions |
| 2513 | are met: |
| 2514 | 1. Redistributions of source code must retain the above copyright |
| 2515 | notice, this list of conditions and the following disclaimer. |
| 2516 | 2. Redistributions in binary form must reproduce the above copyright |
| 2517 | notice, this list of conditions and the following disclaimer in the |
| 2518 | documentation and/or other materials provided with the distribution. |
| 2519 | 3. Neither the name of the University nor the names of its contributors |
| 2520 | may be used to endorse or promote products derived from this software |
| 2521 | without specific prior written permission. |
| 2522 | |
| 2523 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2524 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2525 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2526 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2527 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2528 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2529 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2530 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2531 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2532 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2533 | SUCH DAMAGE. |
| 2534 | |
| 2535 | ------------------------------------------------------------------- |
| 2536 | |
| 2537 | Copyright (c) 1992, 1993 |
| 2538 | The Regents of the University of California. All rights reserved. |
| 2539 | |
| 2540 | Redistribution and use in source and binary forms, with or without |
| 2541 | modification, are permitted provided that the following conditions |
| 2542 | are met: |
| 2543 | 1. Redistributions of source code must retain the above copyright |
| 2544 | notice, this list of conditions and the following disclaimer. |
| 2545 | 2. Redistributions in binary form must reproduce the above copyright |
| 2546 | notice, this list of conditions and the following disclaimer in the |
| 2547 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 2548 | 3. All advertising materials mentioning features or use of this software |
| 2549 | must display the following acknowledgement: |
| 2550 | This product includes software developed by the University of |
| 2551 | California, Berkeley and its contributors. |
| 2552 | 4. Neither the name of the University nor the names of its contributors |
| 2553 | may be used to endorse or promote products derived from this software |
| 2554 | without specific prior written permission. |
| 2555 | |
| 2556 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2557 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2558 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2559 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2560 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2561 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2562 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2563 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2564 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2565 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2566 | SUCH DAMAGE. |
| 2567 | |
| 2568 | ------------------------------------------------------------------- |
| 2569 | |
| 2570 | Copyright (c) 1992, 1993 |
| 2571 | The Regents of the University of California. All rights reserved. |
| 2572 | |
| 2573 | Redistribution and use in source and binary forms, with or without |
| 2574 | modification, are permitted provided that the following conditions |
| 2575 | are met: |
| 2576 | 1. Redistributions of source code must retain the above copyright |
| 2577 | notice, this list of conditions and the following disclaimer. |
| 2578 | 2. Redistributions in binary form must reproduce the above copyright |
| 2579 | notice, this list of conditions and the following disclaimer in the |
| 2580 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2581 | 3. Neither the name of the University nor the names of its contributors |
| 2582 | may be used to endorse or promote products derived from this software |
| 2583 | without specific prior written permission. |
| 2584 | |
| 2585 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2586 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2587 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2588 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2589 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2590 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2591 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2592 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2593 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2594 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2595 | SUCH DAMAGE. |
| 2596 | |
| 2597 | ------------------------------------------------------------------- |
| 2598 | |
| 2599 | Copyright (c) 1992, 1993 |
| 2600 | The Regents of the University of California. All rights reserved. |
| 2601 | |
| 2602 | This code is derived from software contributed to Berkeley by |
| 2603 | Ralph Campbell. |
| 2604 | |
| 2605 | Redistribution and use in source and binary forms, with or without |
| 2606 | modification, are permitted provided that the following conditions |
| 2607 | are met: |
| 2608 | 1. Redistributions of source code must retain the above copyright |
| 2609 | notice, this list of conditions and the following disclaimer. |
| 2610 | 2. Redistributions in binary form must reproduce the above copyright |
| 2611 | notice, this list of conditions and the following disclaimer in the |
| 2612 | documentation and/or other materials provided with the distribution. |
| 2613 | 3. Neither the name of the University nor the names of its contributors |
| 2614 | may be used to endorse or promote products derived from this software |
| 2615 | without specific prior written permission. |
| 2616 | |
| 2617 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2618 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2619 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2620 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2621 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2622 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2623 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2624 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2625 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2626 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2627 | SUCH DAMAGE. |
| 2628 | |
| 2629 | ------------------------------------------------------------------- |
| 2630 | |
| 2631 | Copyright (c) 1992, 1993 |
| 2632 | The Regents of the University of California. All rights reserved. |
| 2633 | |
| 2634 | This code is derived from software contributed to Berkeley by |
| 2635 | Ralph Campbell. This file is derived from the MIPS RISC |
| 2636 | Architecture book by Gerry Kane. |
| 2637 | |
| 2638 | Redistribution and use in source and binary forms, with or without |
| 2639 | modification, are permitted provided that the following conditions |
| 2640 | are met: |
| 2641 | 1. Redistributions of source code must retain the above copyright |
| 2642 | notice, this list of conditions and the following disclaimer. |
| 2643 | 2. Redistributions in binary form must reproduce the above copyright |
| 2644 | notice, this list of conditions and the following disclaimer in the |
| 2645 | documentation and/or other materials provided with the distribution. |
| 2646 | 3. Neither the name of the University nor the names of its contributors |
| 2647 | may be used to endorse or promote products derived from this software |
| 2648 | without specific prior written permission. |
| 2649 | |
| 2650 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2651 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2652 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2653 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2654 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2655 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2656 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2657 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2658 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2659 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2660 | SUCH DAMAGE. |
| 2661 | |
| 2662 | ------------------------------------------------------------------- |
| 2663 | |
| 2664 | Copyright (c) 1992, 1993 |
| 2665 | The Regents of the University of California. All rights reserved. |
| 2666 | |
| 2667 | This software was developed by the Computer Systems Engineering group |
| 2668 | at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and |
| 2669 | contributed to Berkeley. |
| 2670 | |
| 2671 | All advertising materials mentioning features or use of this software |
| 2672 | must display the following acknowledgement: |
| 2673 | This product includes software developed by the University of |
| 2674 | California, Lawrence Berkeley Laboratory. |
| 2675 | |
| 2676 | Redistribution and use in source and binary forms, with or without |
| 2677 | modification, are permitted provided that the following conditions |
| 2678 | are met: |
| 2679 | 1. Redistributions of source code must retain the above copyright |
| 2680 | notice, this list of conditions and the following disclaimer. |
| 2681 | 2. Redistributions in binary form must reproduce the above copyright |
| 2682 | notice, this list of conditions and the following disclaimer in the |
| 2683 | documentation and/or other materials provided with the distribution. |
| 2684 | 3. All advertising materials mentioning features or use of this software |
| 2685 | must display the following acknowledgement: |
| 2686 | This product includes software developed by the University of |
| 2687 | California, Berkeley and its contributors. |
| 2688 | 4. Neither the name of the University nor the names of its contributors |
| 2689 | may be used to endorse or promote products derived from this software |
| 2690 | without specific prior written permission. |
| 2691 | |
| 2692 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2693 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2694 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2695 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2696 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2697 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2698 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2699 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2700 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2701 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2702 | SUCH DAMAGE. |
| 2703 | |
| 2704 | ------------------------------------------------------------------- |
| 2705 | |
| 2706 | Copyright (c) 1992, 1993 |
| 2707 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2708 | (c) UNIX System Laboratories, Inc. |
| 2709 | All or some portions of this file are derived from material licensed |
| 2710 | to the University of California by American Telephone and Telegraph |
| 2711 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2712 | the permission of UNIX System Laboratories, Inc. |
| 2713 | |
| 2714 | Redistribution and use in source and binary forms, with or without |
| 2715 | modification, are permitted provided that the following conditions |
| 2716 | are met: |
| 2717 | 1. Redistributions of source code must retain the above copyright |
| 2718 | notice, this list of conditions and the following disclaimer. |
| 2719 | 2. Redistributions in binary form must reproduce the above copyright |
| 2720 | notice, this list of conditions and the following disclaimer in the |
| 2721 | documentation and/or other materials provided with the distribution. |
| 2722 | 3. Neither the name of the University nor the names of its contributors |
| 2723 | may be used to endorse or promote products derived from this software |
| 2724 | without specific prior written permission. |
| 2725 | |
| 2726 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2727 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2728 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2729 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2730 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2731 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2732 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2733 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2734 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2735 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2736 | SUCH DAMAGE. |
| 2737 | |
| 2738 | ------------------------------------------------------------------- |
| 2739 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2740 | Copyright (c) 1992, 1993, 1994 |
| 2741 | The Regents of the University of California. All rights reserved. |
| 2742 | |
| 2743 | This code is derived from software contributed to Berkeley by |
| 2744 | Henry Spencer. |
| 2745 | |
| 2746 | Redistribution and use in source and binary forms, with or without |
| 2747 | modification, are permitted provided that the following conditions |
| 2748 | are met: |
| 2749 | 1. Redistributions of source code must retain the above copyright |
| 2750 | notice, this list of conditions and the following disclaimer. |
| 2751 | 2. Redistributions in binary form must reproduce the above copyright |
| 2752 | notice, this list of conditions and the following disclaimer in the |
| 2753 | documentation and/or other materials provided with the distribution. |
| 2754 | 3. Neither the name of the University nor the names of its contributors |
| 2755 | may be used to endorse or promote products derived from this software |
| 2756 | without specific prior written permission. |
| 2757 | |
| 2758 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2759 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2760 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2761 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2762 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2763 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2764 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2765 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2766 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2767 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2768 | SUCH DAMAGE. |
| 2769 | |
| 2770 | ------------------------------------------------------------------- |
| 2771 | |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 2772 | Copyright (c) 1992, 1993, 1994 Henry Spencer. |
| 2773 | |
| 2774 | This code is derived from software contributed to Berkeley by |
| 2775 | Henry Spencer. |
| 2776 | |
| 2777 | Redistribution and use in source and binary forms, with or without |
| 2778 | modification, are permitted provided that the following conditions |
| 2779 | are met: |
| 2780 | 1. Redistributions of source code must retain the above copyright |
| 2781 | notice, this list of conditions and the following disclaimer. |
| 2782 | 2. Redistributions in binary form must reproduce the above copyright |
| 2783 | notice, this list of conditions and the following disclaimer in the |
| 2784 | documentation and/or other materials provided with the distribution. |
| 2785 | 3. All advertising materials mentioning features or use of this software |
| 2786 | must display the following acknowledgement: |
| 2787 | This product includes software developed by the University of |
| 2788 | California, Berkeley and its contributors. |
| 2789 | 4. Neither the name of the University nor the names of its contributors |
| 2790 | may be used to endorse or promote products derived from this software |
| 2791 | without specific prior written permission. |
| 2792 | |
| 2793 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2794 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2795 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2796 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2797 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2798 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2799 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2800 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2801 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2802 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2803 | SUCH DAMAGE. |
| 2804 | |
| 2805 | ------------------------------------------------------------------- |
| 2806 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2807 | Copyright (c) 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2808 | The Regents of the University of California. All rights reserved. |
| 2809 | |
| 2810 | Redistribution and use in source and binary forms, with or without |
| 2811 | modification, are permitted provided that the following conditions |
| 2812 | are met: |
| 2813 | 1. Redistributions of source code must retain the above copyright |
| 2814 | notice, this list of conditions and the following disclaimer. |
| 2815 | 2. Redistributions in binary form must reproduce the above copyright |
| 2816 | notice, this list of conditions and the following disclaimer in the |
| 2817 | documentation and/or other materials provided with the distribution. |
| 2818 | 3. Neither the name of the University nor the names of its contributors |
| 2819 | may be used to endorse or promote products derived from this software |
| 2820 | without specific prior written permission. |
| 2821 | |
| 2822 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2823 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2824 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2825 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2826 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2827 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2828 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2829 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2830 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2831 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2832 | SUCH DAMAGE. |
| 2833 | |
| 2834 | ------------------------------------------------------------------- |
| 2835 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2836 | Copyright (c) 1993 Martin Birgmeier |
| 2837 | All rights reserved. |
| 2838 | |
| 2839 | You may redistribute unmodified or modified versions of this source |
| 2840 | code provided that the above copyright notice and this and the |
| 2841 | following conditions are retained. |
| 2842 | |
| 2843 | This software is provided ``as is'', and comes with no warranties |
| 2844 | of any kind. I shall in no event be liable for anything that happens |
| 2845 | to anyone/anything when using this software. |
| 2846 | |
| 2847 | ------------------------------------------------------------------- |
| 2848 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2849 | Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2850 | All rights reserved. |
| 2851 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2852 | Redistribution and use in source and binary forms, with or without |
| 2853 | modification, are permitted provided that the following conditions |
| 2854 | are met: |
| 2855 | 1. Redistributions of source code must retain the above copyright |
| 2856 | notice, this list of conditions and the following disclaimer. |
| 2857 | 2. Redistributions in binary form must reproduce the above copyright |
| 2858 | notice, this list of conditions and the following disclaimer in the |
| 2859 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2860 | 3. The name of the author may not be used to endorse or promote products |
| 2861 | derived from this software without specific prior written permission. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2862 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2863 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2864 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2865 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2866 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2867 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2868 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2869 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2870 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2871 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2872 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2873 | |
| 2874 | ------------------------------------------------------------------- |
| 2875 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2876 | Copyright (c) 1996 by Internet Software Consortium. |
| 2877 | |
| 2878 | Permission to use, copy, modify, and distribute this software for any |
| 2879 | purpose with or without fee is hereby granted, provided that the above |
| 2880 | copyright notice and this permission notice appear in all copies. |
| 2881 | |
| 2882 | THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS |
| 2883 | ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES |
| 2884 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE |
| 2885 | CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 2886 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 2887 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 2888 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 2889 | SOFTWARE. |
| 2890 | |
| 2891 | ------------------------------------------------------------------- |
| 2892 | |
| 2893 | Copyright (c) 1996, David Mazieres <dm@uun.org> |
| 2894 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 2895 | Copyright (c) 2013, Markus Friedl <markus@openbsd.org> |
| 2896 | |
| 2897 | Permission to use, copy, modify, and distribute this software for any |
| 2898 | purpose with or without fee is hereby granted, provided that the above |
| 2899 | copyright notice and this permission notice appear in all copies. |
| 2900 | |
| 2901 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2902 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2903 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2904 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2905 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2906 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2907 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2908 | |
| 2909 | ------------------------------------------------------------------- |
| 2910 | |
| 2911 | Copyright (c) 1996-1998, 2008 Theo de Raadt |
| 2912 | Copyright (c) 1997, 2008-2009 Todd C. Miller |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2913 | |
| 2914 | Permission to use, copy, modify, and distribute this software for any |
| 2915 | purpose with or without fee is hereby granted, provided that the above |
| 2916 | copyright notice and this permission notice appear in all copies. |
| 2917 | |
| 2918 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2919 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2920 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2921 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2922 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2923 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2924 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2925 | |
| 2926 | ------------------------------------------------------------------- |
| 2927 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2928 | Copyright (c) 1997 Mark Brinicombe |
Elliott Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 2929 | Copyright (C) 2010 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2930 | All rights reserved. |
| 2931 | |
| 2932 | Redistribution and use in source and binary forms, with or without |
| 2933 | modification, are permitted provided that the following conditions |
| 2934 | are met: |
| 2935 | 1. Redistributions of source code must retain the above copyright |
| 2936 | notice, this list of conditions and the following disclaimer. |
| 2937 | 2. Redistributions in binary form must reproduce the above copyright |
| 2938 | notice, this list of conditions and the following disclaimer in the |
| 2939 | documentation and/or other materials provided with the distribution. |
| 2940 | 3. All advertising materials mentioning features or use of this software |
| 2941 | must display the following acknowledgement: |
| 2942 | This product includes software developed by Mark Brinicombe |
| 2943 | 4. Neither the name of the University nor the names of its contributors |
| 2944 | may be used to endorse or promote products derived from this software |
| 2945 | without specific prior written permission. |
| 2946 | |
| 2947 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 2948 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2949 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2950 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 2951 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2952 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2953 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2954 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2955 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2956 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2957 | SUCH DAMAGE. |
| 2958 | |
| 2959 | ------------------------------------------------------------------- |
| 2960 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2961 | Copyright (c) 1997 Niklas Hallqvist. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2962 | |
| 2963 | Redistribution and use in source and binary forms, with or without |
| 2964 | modification, are permitted provided that the following conditions |
| 2965 | are met: |
| 2966 | 1. Redistributions of source code must retain the above copyright |
| 2967 | notice, this list of conditions and the following disclaimer. |
| 2968 | 2. Redistributions in binary form must reproduce the above copyright |
| 2969 | notice, this list of conditions and the following disclaimer in the |
| 2970 | documentation and/or other materials provided with the distribution. |
| 2971 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2972 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2973 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2974 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2975 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 2976 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 2977 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 2978 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 2979 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 2980 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 2981 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2982 | |
| 2983 | ------------------------------------------------------------------- |
| 2984 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2985 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2986 | |
| 2987 | Permission to use, copy, modify, and distribute this software for any |
| 2988 | purpose with or without fee is hereby granted, provided that the above |
| 2989 | copyright notice and this permission notice appear in all copies. |
| 2990 | |
| 2991 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2992 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2993 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2994 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2995 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2996 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2997 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2998 | |
| 2999 | ------------------------------------------------------------------- |
| 3000 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3001 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3002 | All rights reserved. |
| 3003 | |
| 3004 | Redistribution and use in source and binary forms, with or without |
| 3005 | modification, are permitted provided that the following conditions |
| 3006 | are met: |
| 3007 | 1. Redistributions of source code must retain the above copyright |
| 3008 | notice, this list of conditions and the following disclaimer. |
| 3009 | 2. Redistributions in binary form must reproduce the above copyright |
| 3010 | notice, this list of conditions and the following disclaimer in the |
| 3011 | documentation and/or other materials provided with the distribution. |
| 3012 | 3. The name of the author may not be used to endorse or promote products |
| 3013 | derived from this software without specific prior written permission. |
| 3014 | |
| 3015 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 3016 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 3017 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 3018 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 3019 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 3020 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 3021 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3022 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3023 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3024 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3025 | |
| 3026 | ------------------------------------------------------------------- |
| 3027 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3028 | Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3029 | All rights reserved. |
| 3030 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3031 | This code was contributed to The NetBSD Foundation by Klaus Klein. |
| 3032 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3033 | Redistribution and use in source and binary forms, with or without |
| 3034 | modification, are permitted provided that the following conditions |
| 3035 | are met: |
| 3036 | 1. Redistributions of source code must retain the above copyright |
| 3037 | notice, this list of conditions and the following disclaimer. |
| 3038 | 2. Redistributions in binary form must reproduce the above copyright |
| 3039 | notice, this list of conditions and the following disclaimer in the |
| 3040 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3041 | 3. All advertising materials mentioning features or use of this software |
| 3042 | must display the following acknowledgement: |
| 3043 | This product includes software developed by the NetBSD |
| 3044 | Foundation, Inc. and its contributors. |
| 3045 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3046 | contributors may be used to endorse or promote products derived |
| 3047 | from this software without specific prior written permission. |
| 3048 | |
| 3049 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3050 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3051 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3052 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3053 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3054 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3055 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3056 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3057 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3058 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3059 | POSSIBILITY OF SUCH DAMAGE. |
| 3060 | |
| 3061 | ------------------------------------------------------------------- |
| 3062 | |
| 3063 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 3064 | All rights reserved. |
| 3065 | |
| 3066 | This code is derived from software contributed to The NetBSD Foundation |
| 3067 | by Luke Mewburn. |
| 3068 | |
| 3069 | Redistribution and use in source and binary forms, with or without |
| 3070 | modification, are permitted provided that the following conditions |
| 3071 | are met: |
| 3072 | 1. Redistributions of source code must retain the above copyright |
| 3073 | notice, this list of conditions and the following disclaimer. |
| 3074 | 2. Redistributions in binary form must reproduce the above copyright |
| 3075 | notice, this list of conditions and the following disclaimer in the |
| 3076 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3077 | |
| 3078 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3079 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3080 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3081 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3082 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3083 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3084 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3085 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3086 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3087 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3088 | POSSIBILITY OF SUCH DAMAGE. |
| 3089 | |
| 3090 | ------------------------------------------------------------------- |
| 3091 | |
| 3092 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 3093 | All rights reserved. |
| 3094 | |
| 3095 | This code is derived from software contributed to The NetBSD Foundation |
| 3096 | by Luke Mewburn; and by Jason R. Thorpe. |
| 3097 | |
| 3098 | Redistribution and use in source and binary forms, with or without |
| 3099 | modification, are permitted provided that the following conditions |
| 3100 | are met: |
| 3101 | 1. Redistributions of source code must retain the above copyright |
| 3102 | notice, this list of conditions and the following disclaimer. |
| 3103 | 2. Redistributions in binary form must reproduce the above copyright |
| 3104 | notice, this list of conditions and the following disclaimer in the |
| 3105 | documentation and/or other materials provided with the distribution. |
| 3106 | 3. All advertising materials mentioning features or use of this software |
| 3107 | must display the following acknowledgement: |
| 3108 | This product includes software developed by the NetBSD |
| 3109 | Foundation, Inc. and its contributors. |
| 3110 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3111 | contributors may be used to endorse or promote products derived |
| 3112 | from this software without specific prior written permission. |
| 3113 | |
| 3114 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3115 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3116 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3117 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3118 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3119 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3120 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3121 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3122 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3123 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3124 | POSSIBILITY OF SUCH DAMAGE. |
| 3125 | |
| 3126 | ------------------------------------------------------------------- |
| 3127 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3128 | Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3129 | |
| 3130 | Permission to use, copy, modify, and distribute this software for any |
| 3131 | purpose with or without fee is hereby granted, provided that the above |
| 3132 | copyright notice and this permission notice appear in all copies. |
| 3133 | |
| 3134 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3135 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3136 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3137 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3138 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3139 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3140 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3141 | |
| 3142 | ------------------------------------------------------------------- |
| 3143 | |
| 3144 | Copyright (c) 1998 Softweyr LLC. All rights reserved. |
| 3145 | |
| 3146 | strtok_r, from Berkeley strtok |
| 3147 | Oct 13, 1998 by Wes Peters <wes@softweyr.com> |
| 3148 | |
| 3149 | Copyright (c) 1988, 1993 |
| 3150 | The Regents of the University of California. All rights reserved. |
| 3151 | |
| 3152 | Redistribution and use in source and binary forms, with or without |
| 3153 | modification, are permitted provided that the following conditions |
| 3154 | are met: |
| 3155 | 1. Redistributions of source code must retain the above copyright |
| 3156 | notices, this list of conditions and the following disclaimer. |
| 3157 | 2. Redistributions in binary form must reproduce the above copyright |
| 3158 | notices, this list of conditions and the following disclaimer in the |
| 3159 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 3160 | 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] | 3161 | may be used to endorse or promote products derived from this software |
| 3162 | without specific prior written permission. |
| 3163 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3164 | THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS |
| 3165 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3166 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 3167 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE |
| 3168 | REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 3169 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 3170 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 3171 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 3172 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 3173 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 3174 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3175 | |
| 3176 | ------------------------------------------------------------------- |
| 3177 | |
| 3178 | Copyright (c) 1998 The NetBSD Foundation, Inc. |
| 3179 | All rights reserved. |
| 3180 | |
| 3181 | This code is derived from software contributed to The NetBSD Foundation |
| 3182 | by Klaus Klein. |
| 3183 | |
| 3184 | Redistribution and use in source and binary forms, with or without |
| 3185 | modification, are permitted provided that the following conditions |
| 3186 | are met: |
| 3187 | 1. Redistributions of source code must retain the above copyright |
| 3188 | notice, this list of conditions and the following disclaimer. |
| 3189 | 2. Redistributions in binary form must reproduce the above copyright |
| 3190 | notice, this list of conditions and the following disclaimer in the |
| 3191 | documentation and/or other materials provided with the distribution. |
| 3192 | 3. All advertising materials mentioning features or use of this software |
| 3193 | must display the following acknowledgement: |
| 3194 | This product includes software developed by the NetBSD |
| 3195 | Foundation, Inc. and its contributors. |
| 3196 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3197 | contributors may be used to endorse or promote products derived |
| 3198 | from this software without specific prior written permission. |
| 3199 | |
| 3200 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3201 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3202 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3203 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3204 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3205 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3206 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3207 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3208 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3209 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3210 | POSSIBILITY OF SUCH DAMAGE. |
| 3211 | |
| 3212 | ------------------------------------------------------------------- |
| 3213 | |
| 3214 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3215 | All rights reserved. |
| 3216 | |
| 3217 | Redistribution and use in source and binary forms, with or without |
| 3218 | modification, are permitted provided that the following conditions |
| 3219 | are met: |
| 3220 | 1. Redistributions of source code must retain the above copyright |
| 3221 | notice, this list of conditions and the following disclaimer. |
| 3222 | 2. Redistributions in binary form must reproduce the above copyright |
| 3223 | notice, this list of conditions and the following disclaimer in the |
| 3224 | documentation and/or other materials provided with the distribution. |
| 3225 | 3. The name of the author may not be used to endorse or promote products |
| 3226 | derived from this software without specific prior written permission. |
| 3227 | |
| 3228 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 3229 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 3230 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 3231 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 3232 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 3233 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 3234 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3235 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3236 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3237 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3238 | |
| 3239 | ------------------------------------------------------------------- |
| 3240 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 3241 | Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3242 | |
| 3243 | Permission to use, copy, modify, and distribute this software for any |
| 3244 | purpose with or without fee is hereby granted, provided that the above |
| 3245 | copyright notice and this permission notice appear in all copies. |
| 3246 | |
| 3247 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3248 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3249 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3250 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3251 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3252 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3253 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3254 | |
| 3255 | ------------------------------------------------------------------- |
| 3256 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3257 | Copyright (c) 1999 |
| 3258 | David E. O'Brien |
| 3259 | Copyright (c) 1988, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3260 | The Regents of the University of California. All rights reserved. |
| 3261 | |
| 3262 | Redistribution and use in source and binary forms, with or without |
| 3263 | modification, are permitted provided that the following conditions |
| 3264 | are met: |
| 3265 | 1. Redistributions of source code must retain the above copyright |
| 3266 | notice, this list of conditions and the following disclaimer. |
| 3267 | 2. Redistributions in binary form must reproduce the above copyright |
| 3268 | notice, this list of conditions and the following disclaimer in the |
| 3269 | documentation and/or other materials provided with the distribution. |
| 3270 | 3. Neither the name of the University nor the names of its contributors |
| 3271 | may be used to endorse or promote products derived from this software |
| 3272 | without specific prior written permission. |
| 3273 | |
| 3274 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 3275 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3276 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3277 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 3278 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3279 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3280 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3281 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3282 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3283 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3284 | SUCH DAMAGE. |
| 3285 | |
| 3286 | ------------------------------------------------------------------- |
| 3287 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3288 | Copyright (c) 2000 Ben Harris. |
| 3289 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
| 3290 | All rights reserved. |
| 3291 | |
| 3292 | Redistribution and use in source and binary forms, with or without |
| 3293 | modification, are permitted provided that the following conditions |
| 3294 | are met: |
| 3295 | 1. Redistributions of source code must retain the above copyright |
| 3296 | notice, this list of conditions and the following disclaimer. |
| 3297 | 2. Redistributions in binary form must reproduce the above copyright |
| 3298 | notice, this list of conditions and the following disclaimer in the |
| 3299 | documentation and/or other materials provided with the distribution. |
| 3300 | 3. Neither the name of the project nor the names of its contributors |
| 3301 | may be used to endorse or promote products derived from this software |
| 3302 | without specific prior written permission. |
| 3303 | |
| 3304 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
| 3305 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3306 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3307 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
| 3308 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3309 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3310 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3311 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3312 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3313 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3314 | SUCH DAMAGE. |
| 3315 | |
| 3316 | ------------------------------------------------------------------- |
| 3317 | |
| 3318 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 3319 | All rights reserved. |
| 3320 | |
| 3321 | This code is derived from software contributed to The NetBSD Foundation |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3322 | by Dieter Baron and Thomas Klausner. |
| 3323 | |
| 3324 | Redistribution and use in source and binary forms, with or without |
| 3325 | modification, are permitted provided that the following conditions |
| 3326 | are met: |
| 3327 | 1. Redistributions of source code must retain the above copyright |
| 3328 | notice, this list of conditions and the following disclaimer. |
| 3329 | 2. Redistributions in binary form must reproduce the above copyright |
| 3330 | notice, this list of conditions and the following disclaimer in the |
| 3331 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3332 | |
| 3333 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3334 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3335 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3336 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3337 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3338 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3339 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3340 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3341 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3342 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3343 | POSSIBILITY OF SUCH DAMAGE. |
| 3344 | |
| 3345 | ------------------------------------------------------------------- |
| 3346 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3347 | Copyright (c) 2001 Wasabi Systems, Inc. |
| 3348 | All rights reserved. |
| 3349 | |
| 3350 | Written by Frank van der Linden for Wasabi Systems, Inc. |
| 3351 | |
| 3352 | Redistribution and use in source and binary forms, with or without |
| 3353 | modification, are permitted provided that the following conditions |
| 3354 | are met: |
| 3355 | 1. Redistributions of source code must retain the above copyright |
| 3356 | notice, this list of conditions and the following disclaimer. |
| 3357 | 2. Redistributions in binary form must reproduce the above copyright |
| 3358 | notice, this list of conditions and the following disclaimer in the |
| 3359 | documentation and/or other materials provided with the distribution. |
| 3360 | 3. All advertising materials mentioning features or use of this software |
| 3361 | must display the following acknowledgement: |
| 3362 | This product includes software developed for the NetBSD Project by |
| 3363 | Wasabi Systems, Inc. |
| 3364 | 4. The name of Wasabi Systems, Inc. may not be used to endorse |
| 3365 | or promote products derived from this software without specific prior |
| 3366 | written permission. |
| 3367 | |
| 3368 | THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND |
| 3369 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3370 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3371 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC |
| 3372 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3373 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3374 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3375 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3376 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3377 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3378 | POSSIBILITY OF SUCH DAMAGE. |
| 3379 | |
| 3380 | ------------------------------------------------------------------- |
| 3381 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3382 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3383 | |
| 3384 | Redistribution and use in source and binary forms, with or without |
| 3385 | modification, are permitted provided that the following conditions |
| 3386 | are met: |
| 3387 | 1. Redistributions of source code must retain the above copyright |
| 3388 | notice, this list of conditions and the following disclaimer. |
| 3389 | 2. Redistributions in binary form must reproduce the above copyright |
| 3390 | notice, this list of conditions and the following disclaimer in the |
| 3391 | documentation and/or other materials provided with the distribution. |
| 3392 | |
| 3393 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3394 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3395 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3396 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3397 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3398 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3399 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3400 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3401 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3402 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3403 | SUCH DAMAGE. |
| 3404 | |
| 3405 | ------------------------------------------------------------------- |
| 3406 | |
| 3407 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3408 | |
| 3409 | Redistribution and use in source and binary forms, with or without |
| 3410 | modification, are permitted provided that the following conditions |
| 3411 | are met: |
| 3412 | 1. Redistributions of source code must retain the above copyright |
| 3413 | notice, this list of conditions and the following disclaimer. |
| 3414 | 2. Redistributions in binary form must reproduce the above copyright |
| 3415 | notice, this list of conditions and the following disclaimer in the |
| 3416 | documentation and/or other materials provided with the distribution. |
| 3417 | 3. Neither the name of Opsycon AB nor the names of its contributors |
| 3418 | may be used to endorse or promote products derived from this software |
| 3419 | without specific prior written permission. |
| 3420 | |
| 3421 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3422 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3423 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3424 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3425 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3426 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3427 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3428 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3429 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3430 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3431 | SUCH DAMAGE. |
| 3432 | |
| 3433 | ------------------------------------------------------------------- |
| 3434 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3435 | Copyright (c) 2001-2011 The FreeBSD Project. |
| 3436 | All rights reserved. |
| 3437 | |
| 3438 | Redistribution and use in source and binary forms, with or without |
| 3439 | modification, are permitted provided that the following conditions |
| 3440 | are met: |
| 3441 | 1. Redistributions of source code must retain the above copyright |
| 3442 | notice, this list of conditions and the following disclaimer. |
| 3443 | 2. Redistributions in binary form must reproduce the above copyright |
| 3444 | notice, this list of conditions and the following disclaimer in the |
| 3445 | documentation and/or other materials provided with the distribution. |
| 3446 | |
| 3447 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3448 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3449 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3450 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3451 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3452 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3453 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3454 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3455 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3456 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3457 | SUCH DAMAGE. |
| 3458 | |
| 3459 | ------------------------------------------------------------------- |
| 3460 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3461 | Copyright (c) 2002 Daniel Hartmeier |
| 3462 | All rights reserved. |
| 3463 | |
| 3464 | Redistribution and use in source and binary forms, with or without |
| 3465 | modification, are permitted provided that the following conditions |
| 3466 | are met: |
| 3467 | |
| 3468 | - Redistributions of source code must retain the above copyright |
| 3469 | notice, this list of conditions and the following disclaimer. |
| 3470 | - Redistributions in binary form must reproduce the above |
| 3471 | copyright notice, this list of conditions and the following |
| 3472 | disclaimer in the documentation and/or other materials provided |
| 3473 | with the distribution. |
| 3474 | |
| 3475 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 3476 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3477 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 3478 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 3479 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3480 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 3481 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 3482 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 3483 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3484 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 3485 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3486 | POSSIBILITY OF SUCH DAMAGE. |
| 3487 | |
| 3488 | ------------------------------------------------------------------- |
| 3489 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3490 | Copyright (c) 2002 The NetBSD Foundation, Inc. |
| 3491 | All rights reserved. |
| 3492 | |
| 3493 | This code is derived from software contributed to The NetBSD Foundation |
| 3494 | by Christos Zoulas. |
| 3495 | |
| 3496 | Redistribution and use in source and binary forms, with or without |
| 3497 | modification, are permitted provided that the following conditions |
| 3498 | are met: |
| 3499 | 1. Redistributions of source code must retain the above copyright |
| 3500 | notice, this list of conditions and the following disclaimer. |
| 3501 | 2. Redistributions in binary form must reproduce the above copyright |
| 3502 | notice, this list of conditions and the following disclaimer in the |
| 3503 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3504 | |
| 3505 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3506 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3507 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3508 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3509 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3510 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3511 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3512 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3513 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3514 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3515 | POSSIBILITY OF SUCH DAMAGE. |
| 3516 | |
| 3517 | ------------------------------------------------------------------- |
| 3518 | |
| 3519 | Copyright (c) 2002 Tim J. Robbins |
| 3520 | All rights reserved. |
| 3521 | |
| 3522 | Redistribution and use in source and binary forms, with or without |
| 3523 | modification, are permitted provided that the following conditions |
| 3524 | are met: |
| 3525 | 1. Redistributions of source code must retain the above copyright |
| 3526 | notice, this list of conditions and the following disclaimer. |
| 3527 | 2. Redistributions in binary form must reproduce the above copyright |
| 3528 | notice, this list of conditions and the following disclaimer in the |
| 3529 | documentation and/or other materials provided with the distribution. |
| 3530 | |
| 3531 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3532 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3533 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3534 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3535 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3536 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3537 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3538 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3539 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3540 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3541 | SUCH DAMAGE. |
| 3542 | |
| 3543 | ------------------------------------------------------------------- |
| 3544 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3545 | Copyright (c) 2002 Tim J. Robbins. |
| 3546 | All rights reserved. |
| 3547 | |
| 3548 | Redistribution and use in source and binary forms, with or without |
| 3549 | modification, are permitted provided that the following conditions |
| 3550 | are met: |
| 3551 | 1. Redistributions of source code must retain the above copyright |
| 3552 | notice, this list of conditions and the following disclaimer. |
| 3553 | 2. Redistributions in binary form must reproduce the above copyright |
| 3554 | notice, this list of conditions and the following disclaimer in the |
| 3555 | documentation and/or other materials provided with the distribution. |
| 3556 | |
| 3557 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3558 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3559 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3560 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3561 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3562 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3563 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3564 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3565 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3566 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3567 | SUCH DAMAGE. |
| 3568 | |
| 3569 | ------------------------------------------------------------------- |
| 3570 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3571 | Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3572 | |
| 3573 | Permission to use, copy, modify, and distribute this software for any |
| 3574 | purpose with or without fee is hereby granted, provided that the above |
| 3575 | copyright notice and this permission notice appear in all copies. |
| 3576 | |
| 3577 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3578 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3579 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3580 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3581 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3582 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3583 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3584 | |
| 3585 | Sponsored in part by the Defense Advanced Research Projects |
| 3586 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3587 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3588 | |
| 3589 | ------------------------------------------------------------------- |
| 3590 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3591 | Copyright (c) 2002, 2003 Tim J. Robbins. |
| 3592 | All rights reserved. |
| 3593 | |
| 3594 | Redistribution and use in source and binary forms, with or without |
| 3595 | modification, are permitted provided that the following conditions |
| 3596 | are met: |
| 3597 | 1. Redistributions of source code must retain the above copyright |
| 3598 | notice, this list of conditions and the following disclaimer. |
| 3599 | 2. Redistributions in binary form must reproduce the above copyright |
| 3600 | notice, this list of conditions and the following disclaimer in the |
| 3601 | documentation and/or other materials provided with the distribution. |
| 3602 | |
| 3603 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3604 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3605 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3606 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3607 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3608 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3609 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3610 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3611 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3612 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3613 | SUCH DAMAGE. |
| 3614 | |
| 3615 | ------------------------------------------------------------------- |
| 3616 | |
| 3617 | Copyright (c) 2002-2004 Tim J. Robbins |
| 3618 | All rights reserved. |
| 3619 | |
| 3620 | Redistribution and use in source and binary forms, with or without |
| 3621 | modification, are permitted provided that the following conditions |
| 3622 | are met: |
| 3623 | 1. Redistributions of source code must retain the above copyright |
| 3624 | notice, this list of conditions and the following disclaimer. |
| 3625 | 2. Redistributions in binary form must reproduce the above copyright |
| 3626 | notice, this list of conditions and the following disclaimer in the |
| 3627 | documentation and/or other materials provided with the distribution. |
| 3628 | |
| 3629 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3630 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3631 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3632 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3633 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3634 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3635 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3636 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3637 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3638 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3639 | SUCH DAMAGE. |
| 3640 | |
| 3641 | ------------------------------------------------------------------- |
| 3642 | |
| 3643 | Copyright (c) 2002-2004 Tim J. Robbins. |
| 3644 | All rights reserved. |
| 3645 | |
| 3646 | Redistribution and use in source and binary forms, with or without |
| 3647 | modification, are permitted provided that the following conditions |
| 3648 | are met: |
| 3649 | 1. Redistributions of source code must retain the above copyright |
| 3650 | notice, this list of conditions and the following disclaimer. |
| 3651 | 2. Redistributions in binary form must reproduce the above copyright |
| 3652 | notice, this list of conditions and the following disclaimer in the |
| 3653 | documentation and/or other materials provided with the distribution. |
| 3654 | |
| 3655 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3656 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3657 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3658 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3659 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3660 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3661 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3662 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3663 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3664 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3665 | SUCH DAMAGE. |
| 3666 | |
| 3667 | ------------------------------------------------------------------- |
| 3668 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3669 | Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
| 3670 | |
| 3671 | Redistribution and use in source and binary forms, with or without |
| 3672 | modification, are permitted provided that the following conditions |
| 3673 | are met: |
| 3674 | 1. Redistributions of source code must retain the above copyright |
| 3675 | notice, this list of conditions and the following disclaimer. |
| 3676 | 2. Redistributions in binary form must reproduce the above copyright |
| 3677 | notice, this list of conditions and the following disclaimer in the |
| 3678 | documentation and/or other materials provided with the distribution. |
| 3679 | 3. The names of the authors may not be used to endorse or promote |
| 3680 | products derived from this software without specific prior written |
| 3681 | permission. |
| 3682 | |
| 3683 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3684 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3685 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3686 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3687 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3688 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3689 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3690 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3691 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3692 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3693 | SUCH DAMAGE. |
| 3694 | |
| 3695 | ------------------------------------------------------------------- |
| 3696 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3697 | Copyright (c) 2003 Dag-Erling Smørgrav |
| 3698 | All rights reserved. |
| 3699 | |
| 3700 | Redistribution and use in source and binary forms, with or without |
| 3701 | modification, are permitted provided that the following conditions |
| 3702 | are met: |
| 3703 | 1. Redistributions of source code must retain the above copyright |
| 3704 | notice, this list of conditions and the following disclaimer |
| 3705 | in this position and unchanged. |
| 3706 | 2. Redistributions in binary form must reproduce the above copyright |
| 3707 | notice, this list of conditions and the following disclaimer in the |
| 3708 | documentation and/or other materials provided with the distribution. |
| 3709 | 3. The name of the author may not be used to endorse or promote products |
| 3710 | derived from this software without specific prior written permission. |
| 3711 | |
| 3712 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3713 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3714 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3715 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3716 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3717 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3718 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3719 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3720 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3721 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3722 | |
| 3723 | ------------------------------------------------------------------- |
| 3724 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3725 | Copyright (c) 2003 David Schultz <das@FreeBSD.ORG> |
| 3726 | All rights reserved. |
| 3727 | |
| 3728 | Redistribution and use in source and binary forms, with or without |
| 3729 | modification, are permitted provided that the following conditions |
| 3730 | are met: |
| 3731 | 1. Redistributions of source code must retain the above copyright |
| 3732 | notice, this list of conditions and the following disclaimer. |
| 3733 | 2. Redistributions in binary form must reproduce the above copyright |
| 3734 | notice, this list of conditions and the following disclaimer in the |
| 3735 | documentation and/or other materials provided with the distribution. |
| 3736 | |
| 3737 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3738 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3739 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3740 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3741 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3742 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3743 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3744 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3745 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3746 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3747 | SUCH DAMAGE. |
| 3748 | |
| 3749 | ------------------------------------------------------------------- |
| 3750 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3751 | Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> |
| 3752 | All rights reserved. |
| 3753 | |
| 3754 | Redistribution and use in source and binary forms, with or without |
| 3755 | modification, are permitted provided that the following conditions |
| 3756 | are met: |
| 3757 | 1. Redistributions of source code must retain the above copyright |
| 3758 | notice, this list of conditions and the following disclaimer. |
| 3759 | 2. Redistributions in binary form must reproduce the above copyright |
| 3760 | notice, this list of conditions and the following disclaimer in the |
| 3761 | documentation and/or other materials provided with the distribution. |
| 3762 | |
| 3763 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3764 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3765 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3766 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3767 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3768 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3769 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3770 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3771 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3772 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3773 | SUCH DAMAGE. |
| 3774 | |
| 3775 | ------------------------------------------------------------------- |
| 3776 | |
| 3777 | Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> |
| 3778 | Copyright (c) 2002 David Schultz <das@FreeBSD.ORG> |
| 3779 | All rights reserved. |
| 3780 | |
| 3781 | Redistribution and use in source and binary forms, with or without |
| 3782 | modification, are permitted provided that the following conditions |
| 3783 | are met: |
| 3784 | 1. Redistributions of source code must retain the above copyright |
| 3785 | notice, this list of conditions and the following disclaimer. |
| 3786 | 2. Redistributions in binary form must reproduce the above copyright |
| 3787 | notice, this list of conditions and the following disclaimer in the |
| 3788 | documentation and/or other materials provided with the distribution. |
| 3789 | |
| 3790 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3791 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3792 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3793 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3794 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3795 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3796 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3797 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3798 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3799 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3800 | SUCH DAMAGE. |
| 3801 | |
| 3802 | ------------------------------------------------------------------- |
| 3803 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3804 | Copyright (c) 2003 Networks Associates Technology, Inc. |
| 3805 | All rights reserved. |
| 3806 | |
| 3807 | Portions of this software were developed for the FreeBSD Project by |
| 3808 | Jacques A. Vidrine, Safeport Network Services, and Network |
| 3809 | Associates Laboratories, the Security Research Division of Network |
| 3810 | Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 |
| 3811 | ("CBOSS"), as part of the DARPA CHATS research program. |
| 3812 | |
| 3813 | Redistribution and use in source and binary forms, with or without |
| 3814 | modification, are permitted provided that the following conditions |
| 3815 | are met: |
| 3816 | 1. Redistributions of source code must retain the above copyright |
| 3817 | notice, this list of conditions and the following disclaimer. |
| 3818 | 2. Redistributions in binary form must reproduce the above copyright |
| 3819 | notice, this list of conditions and the following disclaimer in the |
| 3820 | documentation and/or other materials provided with the distribution. |
| 3821 | |
| 3822 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3823 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3824 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3825 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3826 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3827 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3828 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3829 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3830 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3831 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3832 | SUCH DAMAGE. |
| 3833 | |
| 3834 | ------------------------------------------------------------------- |
| 3835 | |
Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 3836 | Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3837 | |
| 3838 | Permission to use, copy, modify, and distribute this software for any |
| 3839 | purpose with or without fee is hereby granted, provided that the above |
| 3840 | copyright notice and this permission notice appear in all copies. |
| 3841 | |
| 3842 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3843 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3844 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3845 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3846 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3847 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3848 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3849 | |
| 3850 | Sponsored in part by the Defense Advanced Research Projects |
| 3851 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3852 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3853 | |
| 3854 | ------------------------------------------------------------------- |
| 3855 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3856 | Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3857 | |
| 3858 | Permission to use, copy, modify, and distribute this software for any |
| 3859 | purpose with or without fee is hereby granted, provided that the above |
| 3860 | copyright notice and this permission notice appear in all copies. |
| 3861 | |
| 3862 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3863 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3864 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3865 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3866 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3867 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3868 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3869 | |
| 3870 | Sponsored in part by the Defense Advanced Research Projects |
| 3871 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3872 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3873 | |
| 3874 | ------------------------------------------------------------------- |
| 3875 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3876 | Copyright (c) 2003, Steven G. Kargl |
| 3877 | All rights reserved. |
| 3878 | |
| 3879 | Redistribution and use in source and binary forms, with or without |
| 3880 | modification, are permitted provided that the following conditions |
| 3881 | are met: |
| 3882 | 1. Redistributions of source code must retain the above copyright |
| 3883 | notice unmodified, this list of conditions, and the following |
| 3884 | disclaimer. |
| 3885 | 2. Redistributions in binary form must reproduce the above copyright |
| 3886 | notice, this list of conditions and the following disclaimer in the |
| 3887 | documentation and/or other materials provided with the distribution. |
| 3888 | |
| 3889 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3890 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3891 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3892 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3893 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3894 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3895 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3896 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3897 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3898 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3899 | |
| 3900 | ------------------------------------------------------------------- |
| 3901 | |
| 3902 | Copyright (c) 2004 David Schultz <das@FreeBSD.ORG> |
| 3903 | All rights reserved. |
| 3904 | |
| 3905 | Redistribution and use in source and binary forms, with or without |
| 3906 | modification, are permitted provided that the following conditions |
| 3907 | are met: |
| 3908 | 1. Redistributions of source code must retain the above copyright |
| 3909 | notice, this list of conditions and the following disclaimer. |
| 3910 | 2. Redistributions in binary form must reproduce the above copyright |
| 3911 | notice, this list of conditions and the following disclaimer in the |
| 3912 | documentation and/or other materials provided with the distribution. |
| 3913 | |
| 3914 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3915 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3916 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3917 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3918 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3919 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3920 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3921 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3922 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3923 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3924 | SUCH DAMAGE. |
| 3925 | |
| 3926 | ------------------------------------------------------------------- |
| 3927 | |
| 3928 | Copyright (c) 2004 Stefan Farfeleder |
| 3929 | All rights reserved. |
| 3930 | |
| 3931 | Redistribution and use in source and binary forms, with or without |
| 3932 | modification, are permitted provided that the following conditions |
| 3933 | are met: |
| 3934 | 1. Redistributions of source code must retain the above copyright |
| 3935 | notice, this list of conditions and the following disclaimer. |
| 3936 | 2. Redistributions in binary form must reproduce the above copyright |
| 3937 | notice, this list of conditions and the following disclaimer in the |
| 3938 | documentation and/or other materials provided with the distribution. |
| 3939 | |
| 3940 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3941 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3942 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3943 | ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3944 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3945 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3946 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3947 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3948 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3949 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3950 | SUCH DAMAGE. |
| 3951 | |
| 3952 | ------------------------------------------------------------------- |
| 3953 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3954 | Copyright (c) 2004 The NetBSD Foundation, Inc. |
| 3955 | All rights reserved. |
| 3956 | |
| 3957 | This code is derived from software contributed to The NetBSD Foundation |
| 3958 | by Christos Zoulas. |
| 3959 | |
| 3960 | Redistribution and use in source and binary forms, with or without |
| 3961 | modification, are permitted provided that the following conditions |
| 3962 | are met: |
| 3963 | 1. Redistributions of source code must retain the above copyright |
| 3964 | notice, this list of conditions and the following disclaimer. |
| 3965 | 2. Redistributions in binary form must reproduce the above copyright |
| 3966 | notice, this list of conditions and the following disclaimer in the |
| 3967 | documentation and/or other materials provided with the distribution. |
| 3968 | 3. All advertising materials mentioning features or use of this software |
| 3969 | must display the following acknowledgement: |
| 3970 | This product includes software developed by the NetBSD |
| 3971 | Foundation, Inc. and its contributors. |
| 3972 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3973 | contributors may be used to endorse or promote products derived |
| 3974 | from this software without specific prior written permission. |
| 3975 | |
| 3976 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3977 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3978 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3979 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3980 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3981 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3982 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3983 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3984 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3985 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3986 | POSSIBILITY OF SUCH DAMAGE. |
| 3987 | |
| 3988 | ------------------------------------------------------------------- |
| 3989 | |
| 3990 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3991 | Copyright (c) 1995,1999 by Internet Software Consortium. |
| 3992 | |
| 3993 | Permission to use, copy, modify, and distribute this software for any |
| 3994 | purpose with or without fee is hereby granted, provided that the above |
| 3995 | copyright notice and this permission notice appear in all copies. |
| 3996 | |
| 3997 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3998 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3999 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4000 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4001 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4002 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4003 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4004 | |
| 4005 | ------------------------------------------------------------------- |
| 4006 | |
| 4007 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4008 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 4009 | |
| 4010 | Permission to use, copy, modify, and distribute this software for any |
| 4011 | purpose with or without fee is hereby granted, provided that the above |
| 4012 | copyright notice and this permission notice appear in all copies. |
| 4013 | |
| 4014 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4015 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4016 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4017 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4018 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4019 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4020 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4021 | |
| 4022 | ------------------------------------------------------------------- |
| 4023 | |
| 4024 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4025 | Copyright (c) 1995-1999 by Internet Software Consortium. |
| 4026 | |
| 4027 | Permission to use, copy, modify, and distribute this software for any |
| 4028 | purpose with or without fee is hereby granted, provided that the above |
| 4029 | copyright notice and this permission notice appear in all copies. |
| 4030 | |
| 4031 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4032 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4033 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4034 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4035 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4036 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4037 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4038 | |
| 4039 | ------------------------------------------------------------------- |
| 4040 | |
| 4041 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4042 | Copyright (c) 1996,1999 by Internet Software Consortium. |
| 4043 | |
| 4044 | Permission to use, copy, modify, and distribute this software for any |
| 4045 | purpose with or without fee is hereby granted, provided that the above |
| 4046 | copyright notice and this permission notice appear in all copies. |
| 4047 | |
| 4048 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4049 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4050 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4051 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4052 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4053 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4054 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4055 | |
| 4056 | ------------------------------------------------------------------- |
| 4057 | |
| 4058 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4059 | Copyright (c) 1996-1999 by Internet Software Consortium |
| 4060 | |
| 4061 | Permission to use, copy, modify, and distribute this software for any |
| 4062 | purpose with or without fee is hereby granted, provided that the above |
| 4063 | copyright notice and this permission notice appear in all copies. |
| 4064 | |
| 4065 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4066 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4067 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4068 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4069 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4070 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4071 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4072 | |
| 4073 | ------------------------------------------------------------------- |
| 4074 | |
| 4075 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4076 | Copyright (c) 1996-1999 by Internet Software Consortium. |
| 4077 | |
| 4078 | Permission to use, copy, modify, and distribute this software for any |
| 4079 | purpose with or without fee is hereby granted, provided that the above |
| 4080 | copyright notice and this permission notice appear in all copies. |
| 4081 | |
| 4082 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4083 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4084 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4085 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4086 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4087 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4088 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4089 | |
| 4090 | ------------------------------------------------------------------- |
| 4091 | |
| 4092 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4093 | Copyright (c) 1997,1999 by Internet Software Consortium. |
| 4094 | |
| 4095 | Permission to use, copy, modify, and distribute this software for any |
| 4096 | purpose with or without fee is hereby granted, provided that the above |
| 4097 | copyright notice and this permission notice appear in all copies. |
| 4098 | |
| 4099 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4100 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4101 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4102 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4103 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4104 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4105 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4106 | |
| 4107 | ------------------------------------------------------------------- |
| 4108 | |
| 4109 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4110 | Copyright (c) 1999 by Internet Software Consortium. |
| 4111 | |
| 4112 | Permission to use, copy, modify, and distribute this software for any |
| 4113 | purpose with or without fee is hereby granted, provided that the above |
| 4114 | copyright notice and this permission notice appear in all copies. |
| 4115 | |
| 4116 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4117 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4118 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4119 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4120 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4121 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4122 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4123 | |
| 4124 | ------------------------------------------------------------------- |
| 4125 | |
| 4126 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4127 | Portions Copyright (c) 1996-1999 by Internet Software Consortium. |
| 4128 | |
| 4129 | Permission to use, copy, modify, and distribute this software for any |
| 4130 | purpose with or without fee is hereby granted, provided that the above |
| 4131 | copyright notice and this permission notice appear in all copies. |
| 4132 | |
| 4133 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4134 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4135 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4136 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4137 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4138 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4139 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4140 | |
| 4141 | ------------------------------------------------------------------- |
| 4142 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4143 | Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> |
| 4144 | All rights reserved. |
| 4145 | |
| 4146 | Redistribution and use in source and binary forms, with or without |
| 4147 | modification, are permitted provided that the following conditions |
| 4148 | are met: |
| 4149 | 1. Redistributions of source code must retain the above copyright |
| 4150 | notice, this list of conditions and the following disclaimer. |
| 4151 | 2. Redistributions in binary form must reproduce the above copyright |
| 4152 | notice, this list of conditions and the following disclaimer in the |
| 4153 | documentation and/or other materials provided with the distribution. |
| 4154 | |
| 4155 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4156 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4157 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4158 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4159 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4160 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4161 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4162 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4163 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4164 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4165 | SUCH DAMAGE. |
| 4166 | |
| 4167 | ------------------------------------------------------------------- |
| 4168 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4169 | Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG> |
| 4170 | All rights reserved. |
| 4171 | |
| 4172 | Redistribution and use in source and binary forms, with or without |
| 4173 | modification, are permitted provided that the following conditions |
| 4174 | are met: |
| 4175 | 1. Redistributions of source code must retain the above copyright |
| 4176 | notice, this list of conditions and the following disclaimer. |
| 4177 | 2. Redistributions in binary form must reproduce the above copyright |
| 4178 | notice, this list of conditions and the following disclaimer in the |
| 4179 | documentation and/or other materials provided with the distribution. |
| 4180 | |
| 4181 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4182 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4183 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4184 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4185 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4186 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4187 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4188 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4189 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4190 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4191 | SUCH DAMAGE. |
| 4192 | |
| 4193 | ------------------------------------------------------------------- |
| 4194 | |
| 4195 | Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG> |
| 4196 | All rights reserved. |
| 4197 | |
| 4198 | Redistribution and use in source and binary forms, with or without |
| 4199 | modification, are permitted provided that the following conditions |
| 4200 | are met: |
| 4201 | 1. Redistributions of source code must retain the above copyright |
| 4202 | notice, this list of conditions and the following disclaimer. |
| 4203 | 2. Redistributions in binary form must reproduce the above copyright |
| 4204 | notice, this list of conditions and the following disclaimer in the |
| 4205 | documentation and/or other materials provided with the distribution. |
| 4206 | |
| 4207 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4208 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4209 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4210 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4211 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4212 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4213 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4214 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4215 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4216 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4217 | SUCH DAMAGE. |
| 4218 | |
| 4219 | ------------------------------------------------------------------- |
| 4220 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4221 | Copyright (c) 2005 Bruce D. Evans and Steven G. Kargl |
| 4222 | All rights reserved. |
| 4223 | |
| 4224 | Redistribution and use in source and binary forms, with or without |
| 4225 | modification, are permitted provided that the following conditions |
| 4226 | are met: |
| 4227 | 1. Redistributions of source code must retain the above copyright |
| 4228 | notice unmodified, this list of conditions, and the following |
| 4229 | disclaimer. |
| 4230 | 2. Redistributions in binary form must reproduce the above copyright |
| 4231 | notice, this list of conditions and the following disclaimer in the |
| 4232 | documentation and/or other materials provided with the distribution. |
| 4233 | |
| 4234 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4235 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4236 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4237 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4238 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4239 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4240 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4241 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4242 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4243 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4244 | |
| 4245 | ------------------------------------------------------------------- |
| 4246 | |
| 4247 | Copyright (c) 2005 David Schultz <das@FreeBSD.ORG> |
| 4248 | All rights reserved. |
| 4249 | |
| 4250 | Redistribution and use in source and binary forms, with or without |
| 4251 | modification, are permitted provided that the following conditions |
| 4252 | are met: |
| 4253 | 1. Redistributions of source code must retain the above copyright |
| 4254 | notice, this list of conditions and the following disclaimer. |
| 4255 | 2. Redistributions in binary form must reproduce the above copyright |
| 4256 | notice, this list of conditions and the following disclaimer in the |
| 4257 | documentation and/or other materials provided with the distribution. |
| 4258 | |
| 4259 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4260 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4261 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4262 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4263 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4264 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4265 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4266 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4267 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4268 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4269 | SUCH DAMAGE. |
| 4270 | |
| 4271 | ------------------------------------------------------------------- |
| 4272 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4273 | Copyright (c) 2005 Tim J. Robbins. |
| 4274 | All rights reserved. |
| 4275 | |
| 4276 | Redistribution and use in source and binary forms, with or without |
| 4277 | modification, are permitted provided that the following conditions |
| 4278 | are met: |
| 4279 | 1. Redistributions of source code must retain the above copyright |
| 4280 | notice, this list of conditions and the following disclaimer. |
| 4281 | 2. Redistributions in binary form must reproduce the above copyright |
| 4282 | notice, this list of conditions and the following disclaimer in the |
| 4283 | documentation and/or other materials provided with the distribution. |
| 4284 | |
| 4285 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4286 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4287 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4288 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4289 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4290 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4291 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4292 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4293 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4294 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4295 | SUCH DAMAGE. |
| 4296 | |
| 4297 | ------------------------------------------------------------------- |
| 4298 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 4299 | Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC") |
| 4300 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 4301 | |
| 4302 | Permission to use, copy, modify, and distribute this software for any |
| 4303 | purpose with or without fee is hereby granted, provided that the above |
| 4304 | copyright notice and this permission notice appear in all copies. |
| 4305 | |
| 4306 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4307 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4308 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4309 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4310 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4311 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4312 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4313 | |
| 4314 | ------------------------------------------------------------------- |
| 4315 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4316 | Copyright (c) 2005-2008 David Schultz <das@FreeBSD.ORG> |
| 4317 | All rights reserved. |
| 4318 | |
| 4319 | Redistribution and use in source and binary forms, with or without |
| 4320 | modification, are permitted provided that the following conditions |
| 4321 | are met: |
| 4322 | 1. Redistributions of source code must retain the above copyright |
| 4323 | notice, this list of conditions and the following disclaimer. |
| 4324 | 2. Redistributions in binary form must reproduce the above copyright |
| 4325 | notice, this list of conditions and the following disclaimer in the |
| 4326 | documentation and/or other materials provided with the distribution. |
| 4327 | |
| 4328 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4329 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4330 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4331 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4332 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4333 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4334 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4335 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4336 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4337 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4338 | SUCH DAMAGE. |
| 4339 | |
| 4340 | ------------------------------------------------------------------- |
| 4341 | |
| 4342 | Copyright (c) 2005-2011 David Schultz <das@FreeBSD.ORG> |
| 4343 | All rights reserved. |
| 4344 | |
| 4345 | Redistribution and use in source and binary forms, with or without |
| 4346 | modification, are permitted provided that the following conditions |
| 4347 | are met: |
| 4348 | 1. Redistributions of source code must retain the above copyright |
| 4349 | notice, this list of conditions and the following disclaimer. |
| 4350 | 2. Redistributions in binary form must reproduce the above copyright |
| 4351 | notice, this list of conditions and the following disclaimer in the |
| 4352 | documentation and/or other materials provided with the distribution. |
| 4353 | |
| 4354 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4355 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4356 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4357 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4358 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4359 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4360 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4361 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4362 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4363 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4364 | SUCH DAMAGE. |
| 4365 | |
| 4366 | ------------------------------------------------------------------- |
| 4367 | |
| 4368 | Copyright (c) 2007 David Schultz |
| 4369 | All rights reserved. |
| 4370 | |
| 4371 | Redistribution and use in source and binary forms, with or without |
| 4372 | modification, are permitted provided that the following conditions |
| 4373 | are met: |
| 4374 | 1. Redistributions of source code must retain the above copyright |
| 4375 | notice, this list of conditions and the following disclaimer. |
| 4376 | 2. Redistributions in binary form must reproduce the above copyright |
| 4377 | notice, this list of conditions and the following disclaimer in the |
| 4378 | documentation and/or other materials provided with the distribution. |
| 4379 | |
| 4380 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4381 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4382 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4383 | ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4384 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4385 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4386 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4387 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4388 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4389 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4390 | SUCH DAMAGE. |
| 4391 | |
| 4392 | ------------------------------------------------------------------- |
| 4393 | |
| 4394 | Copyright (c) 2007 David Schultz <das@FreeBSD.ORG> |
| 4395 | All rights reserved. |
| 4396 | |
| 4397 | Redistribution and use in source and binary forms, with or without |
| 4398 | modification, are permitted provided that the following conditions |
| 4399 | are met: |
| 4400 | 1. Redistributions of source code must retain the above copyright |
| 4401 | notice, this list of conditions and the following disclaimer. |
| 4402 | 2. Redistributions in binary form must reproduce the above copyright |
| 4403 | notice, this list of conditions and the following disclaimer in the |
| 4404 | documentation and/or other materials provided with the distribution. |
| 4405 | |
| 4406 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4407 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4408 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4409 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4410 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4411 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4412 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4413 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4414 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4415 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4416 | SUCH DAMAGE. |
| 4417 | |
| 4418 | ------------------------------------------------------------------- |
| 4419 | |
| 4420 | Copyright (c) 2007 David Schultz <das@FreeBSD.ORG> |
| 4421 | All rights reserved. |
| 4422 | |
| 4423 | Redistribution and use in source and binary forms, with or without |
| 4424 | modification, are permitted provided that the following conditions |
| 4425 | are met: |
| 4426 | 1. Redistributions of source code must retain the above copyright |
| 4427 | notice, this list of conditions and the following disclaimer. |
| 4428 | 2. Redistributions in binary form must reproduce the above copyright |
| 4429 | notice, this list of conditions and the following disclaimer in the |
| 4430 | documentation and/or other materials provided with the distribution. |
| 4431 | |
| 4432 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4433 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4434 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4435 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4436 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4437 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4438 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4439 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4440 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4441 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4442 | SUCH DAMAGE. |
| 4443 | |
| 4444 | Derived from s_modf.c, which has the following Copyright: |
| 4445 | ==================================================== |
| 4446 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 4447 | |
| 4448 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 4449 | Permission to use, copy, modify, and distribute this |
| 4450 | software is freely granted, provided that this notice |
| 4451 | is preserved. |
| 4452 | |
| 4453 | ------------------------------------------------------------------- |
| 4454 | |
| 4455 | Copyright (c) 2007 Steven G. Kargl |
| 4456 | All rights reserved. |
| 4457 | |
| 4458 | Redistribution and use in source and binary forms, with or without |
| 4459 | modification, are permitted provided that the following conditions |
| 4460 | are met: |
| 4461 | 1. Redistributions of source code must retain the above copyright |
| 4462 | notice unmodified, this list of conditions, and the following |
| 4463 | disclaimer. |
| 4464 | 2. Redistributions in binary form must reproduce the above copyright |
| 4465 | notice, this list of conditions and the following disclaimer in the |
| 4466 | documentation and/or other materials provided with the distribution. |
| 4467 | |
| 4468 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4469 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4470 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4471 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4472 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4473 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4474 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4475 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4476 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4477 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4478 | |
| 4479 | ------------------------------------------------------------------- |
| 4480 | |
| 4481 | Copyright (c) 2007 The NetBSD Foundation, Inc. |
| 4482 | All rights reserved. |
| 4483 | |
| 4484 | This code is derived from software written by Stephen L. Moshier. |
| 4485 | It is redistributed by the NetBSD Foundation by permission of the author. |
| 4486 | |
| 4487 | Redistribution and use in source and binary forms, with or without |
| 4488 | modification, are permitted provided that the following conditions |
| 4489 | are met: |
| 4490 | 1. Redistributions of source code must retain the above copyright |
| 4491 | notice, this list of conditions and the following disclaimer. |
| 4492 | 2. Redistributions in binary form must reproduce the above copyright |
| 4493 | notice, this list of conditions and the following disclaimer in the |
| 4494 | documentation and/or other materials provided with the distribution. |
| 4495 | |
| 4496 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4497 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4498 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4499 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4500 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4501 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4502 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4503 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4504 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4505 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4506 | POSSIBILITY OF SUCH DAMAGE. |
| 4507 | |
| 4508 | ------------------------------------------------------------------- |
| 4509 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 4510 | Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4511 | |
| 4512 | Permission to use, copy, modify, and distribute this software for any |
| 4513 | purpose with or without fee is hereby granted, provided that the above |
| 4514 | copyright notice and this permission notice appear in all copies. |
| 4515 | |
| 4516 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4517 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4518 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4519 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4520 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4521 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4522 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4523 | |
| 4524 | ------------------------------------------------------------------- |
| 4525 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4526 | Copyright (c) 2007-2008 Michael G Schwern |
| 4527 | |
| 4528 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
| 4529 | |
| 4530 | The MIT License: |
| 4531 | |
| 4532 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4533 | of this software and associated documentation files (the "Software"), to deal |
| 4534 | in the Software without restriction, including without limitation the rights |
| 4535 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4536 | copies of the Software, and to permit persons to whom the Software is |
| 4537 | furnished to do so, subject to the following conditions: |
| 4538 | |
| 4539 | The above copyright notice and this permission notice shall be included in |
| 4540 | all copies or substantial portions of the Software. |
| 4541 | |
| 4542 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4543 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4544 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4545 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4546 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4547 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4548 | THE SOFTWARE. |
| 4549 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4550 | ------------------------------------------------------------------- |
| 4551 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4552 | Copyright (c) 2007-2008 Michael G Schwern |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4553 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4554 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4555 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4556 | The MIT License: |
| 4557 | |
| 4558 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4559 | of this software and associated documentation files (the "Software"), to deal |
| 4560 | in the Software without restriction, including without limitation the rights |
| 4561 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4562 | copies of the Software, and to permit persons to whom the Software is |
| 4563 | furnished to do so, subject to the following conditions: |
| 4564 | |
| 4565 | The above copyright notice and this permission notice shall be included in |
| 4566 | all copies or substantial portions of the Software. |
| 4567 | |
| 4568 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4569 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4570 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4571 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4572 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4573 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4574 | THE SOFTWARE. |
| 4575 | |
| 4576 | Origin: http://code.google.com/p/y2038 |
| 4577 | Modified for Bionic by the Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4578 | |
| 4579 | ------------------------------------------------------------------- |
| 4580 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4581 | Copyright (c) 2007-2008 David Schultz <das@FreeBSD.ORG> |
| 4582 | All rights reserved. |
| 4583 | |
| 4584 | Redistribution and use in source and binary forms, with or without |
| 4585 | modification, are permitted provided that the following conditions |
| 4586 | are met: |
| 4587 | 1. Redistributions of source code must retain the above copyright |
| 4588 | notice, this list of conditions and the following disclaimer. |
| 4589 | 2. Redistributions in binary form must reproduce the above copyright |
| 4590 | notice, this list of conditions and the following disclaimer in the |
| 4591 | documentation and/or other materials provided with the distribution. |
| 4592 | |
| 4593 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4594 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4595 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4596 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4597 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4598 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4599 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4600 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4601 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4602 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4603 | SUCH DAMAGE. |
| 4604 | |
| 4605 | ------------------------------------------------------------------- |
| 4606 | |
| 4607 | Copyright (c) 2007-2013 Bruce D. Evans |
| 4608 | All rights reserved. |
| 4609 | |
| 4610 | Redistribution and use in source and binary forms, with or without |
| 4611 | modification, are permitted provided that the following conditions |
| 4612 | are met: |
| 4613 | 1. Redistributions of source code must retain the above copyright |
| 4614 | notice unmodified, this list of conditions, and the following |
| 4615 | disclaimer. |
| 4616 | 2. Redistributions in binary form must reproduce the above copyright |
| 4617 | notice, this list of conditions and the following disclaimer in the |
| 4618 | documentation and/or other materials provided with the distribution. |
| 4619 | |
| 4620 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4621 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4622 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4623 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4624 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4625 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4626 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4627 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4628 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4629 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4630 | |
| 4631 | ------------------------------------------------------------------- |
| 4632 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4633 | Copyright (c) 2008 David Schultz <das@FreeBSD.ORG> |
| 4634 | All rights reserved. |
| 4635 | |
| 4636 | Redistribution and use in source and binary forms, with or without |
| 4637 | modification, are permitted provided that the following conditions |
| 4638 | are met: |
| 4639 | 1. Redistributions of source code must retain the above copyright |
| 4640 | notice, this list of conditions and the following disclaimer. |
| 4641 | 2. Redistributions in binary form must reproduce the above copyright |
| 4642 | notice, this list of conditions and the following disclaimer in the |
| 4643 | documentation and/or other materials provided with the distribution. |
| 4644 | |
| 4645 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4646 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4647 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4648 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4649 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4650 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4651 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4652 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4653 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4654 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4655 | SUCH DAMAGE. |
| 4656 | |
| 4657 | ------------------------------------------------------------------- |
| 4658 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4659 | Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> |
| 4660 | |
| 4661 | Permission to use, copy, modify, and distribute this software for any |
| 4662 | purpose with or without fee is hereby granted, provided that the above |
| 4663 | copyright notice and this permission notice appear in all copies. |
| 4664 | |
| 4665 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4666 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4667 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4668 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4669 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4670 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4671 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4672 | |
| 4673 | ------------------------------------------------------------------- |
| 4674 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4675 | Copyright (c) 2008 Todd C. Miller <millert@openbsd.org> |
| 4676 | |
| 4677 | Permission to use, copy, modify, and distribute this software for any |
| 4678 | purpose with or without fee is hereby granted, provided that the above |
| 4679 | copyright notice and this permission notice appear in all copies. |
| 4680 | |
| 4681 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4682 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4683 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4684 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4685 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4686 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4687 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4688 | |
| 4689 | ------------------------------------------------------------------- |
| 4690 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4691 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
| 4692 | |
| 4693 | Permission to use, copy, modify, and distribute this software for any |
| 4694 | purpose with or without fee is hereby granted, provided that the above |
| 4695 | copyright notice and this permission notice appear in all copies. |
| 4696 | |
| 4697 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4698 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4699 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4700 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4701 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4702 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4703 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4704 | |
| 4705 | ------------------------------------------------------------------- |
| 4706 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4707 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4708 | All rights reserved. |
| 4709 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4710 | Copyright (c) 2011 The FreeBSD Foundation |
| 4711 | All rights reserved. |
| 4712 | Portions of this software were developed by David Chisnall |
| 4713 | under sponsorship from the FreeBSD Foundation. |
| 4714 | |
| 4715 | Redistribution and use in source and binary forms, with or without |
| 4716 | modification, are permitted provided that the following conditions |
| 4717 | are met: |
| 4718 | 1. Redistributions of source code must retain the above copyright |
| 4719 | notice, this list of conditions and the following disclaimer. |
| 4720 | 2. Redistributions in binary form must reproduce the above copyright |
| 4721 | notice, this list of conditions and the following disclaimer in the |
| 4722 | documentation and/or other materials provided with the distribution. |
| 4723 | |
| 4724 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4725 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4726 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4727 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4728 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4729 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4730 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4731 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4732 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4733 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4734 | SUCH DAMAGE. |
| 4735 | |
| 4736 | ------------------------------------------------------------------- |
| 4737 | |
| 4738 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4739 | All rights reserved. |
| 4740 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4741 | Redistribution and use in source and binary forms, with or without |
| 4742 | modification, are permitted provided that the following conditions |
| 4743 | are met: |
| 4744 | 1. Redistributions of source code must retain the above copyright |
| 4745 | notice, this list of conditions and the following disclaimer. |
| 4746 | 2. Redistributions in binary form must reproduce the above copyright |
| 4747 | notice, this list of conditions and the following disclaimer in the |
| 4748 | documentation and/or other materials provided with the distribution. |
| 4749 | |
| 4750 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4751 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4752 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4753 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4754 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4755 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4756 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4757 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4758 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4759 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4760 | SUCH DAMAGE. |
| 4761 | |
| 4762 | ------------------------------------------------------------------- |
| 4763 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 4764 | Copyright (c) 2009 The NetBSD Foundation, Inc. |
| 4765 | |
| 4766 | This code is derived from software contributed to The NetBSD Foundation |
| 4767 | by Roy Marples. |
| 4768 | |
| 4769 | Redistribution and use in source and binary forms, with or without |
| 4770 | modification, are permitted provided that the following conditions |
| 4771 | are met: |
| 4772 | 1. Redistributions of source code must retain the above copyright |
| 4773 | notice, this list of conditions and the following disclaimer. |
| 4774 | 2. Redistributions in binary form must reproduce the above copyright |
| 4775 | notice, this list of conditions and the following disclaimer in the |
| 4776 | documentation and/or other materials provided with the distribution. |
| 4777 | |
| 4778 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4779 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4780 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4781 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4782 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4783 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4784 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4785 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4786 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4787 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4788 | |
| 4789 | ------------------------------------------------------------------- |
| 4790 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4791 | Copyright (c) 2009-2013 Steven G. Kargl |
| 4792 | All rights reserved. |
| 4793 | |
| 4794 | Redistribution and use in source and binary forms, with or without |
| 4795 | modification, are permitted provided that the following conditions |
| 4796 | are met: |
| 4797 | 1. Redistributions of source code must retain the above copyright |
| 4798 | notice unmodified, this list of conditions, and the following |
| 4799 | disclaimer. |
| 4800 | 2. Redistributions in binary form must reproduce the above copyright |
| 4801 | notice, this list of conditions and the following disclaimer in the |
| 4802 | documentation and/or other materials provided with the distribution. |
| 4803 | |
| 4804 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4805 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4806 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4807 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4808 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4809 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4810 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4811 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4812 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4813 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4814 | |
| 4815 | Optimized by Bruce D. Evans. |
| 4816 | |
| 4817 | ------------------------------------------------------------------- |
| 4818 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4819 | Copyright (c) 2010 The NetBSD Foundation, Inc. |
| 4820 | All rights reserved. |
| 4821 | |
| 4822 | Redistribution and use in source and binary forms, with or without |
| 4823 | modification, are permitted provided that the following conditions |
| 4824 | are met: |
| 4825 | 1. Redistributions of source code must retain the above copyright |
| 4826 | notice, this list of conditions and the following disclaimer. |
| 4827 | 2. Redistributions in binary form must reproduce the above copyright |
| 4828 | notice, this list of conditions and the following disclaimer in the |
| 4829 | documentation and/or other materials provided with the distribution. |
| 4830 | |
| 4831 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4832 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4833 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4834 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4835 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4836 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4837 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4838 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4839 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4840 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4841 | POSSIBILITY OF SUCH DAMAGE. |
| 4842 | |
| 4843 | ------------------------------------------------------------------- |
| 4844 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4845 | Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4846 | |
| 4847 | Permission to use, copy, modify, and distribute this software for any |
| 4848 | purpose with or without fee is hereby granted, provided that the above |
| 4849 | copyright notice and this permission notice appear in all copies. |
| 4850 | |
| 4851 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4852 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4853 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4854 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4855 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4856 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4857 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4858 | |
| 4859 | ------------------------------------------------------------------- |
| 4860 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4861 | Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4862 | All rights reserved. |
| 4863 | |
| 4864 | Redistribution and use in source and binary forms, with or without |
| 4865 | modification, are permitted provided that the following conditions are met: |
| 4866 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4867 | * Redistributions of source code must retain the above copyright notice, |
| 4868 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4869 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4870 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4871 | * this list of conditions and the following disclaimer in the documentation |
| 4872 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4873 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4874 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4875 | * may be used to endorse or promote products derived from this software |
| 4876 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4877 | |
| 4878 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4879 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4880 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4881 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4882 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4883 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4884 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4885 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4886 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4887 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4888 | |
| 4889 | ------------------------------------------------------------------- |
| 4890 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4891 | Copyright (c) 2010, Intel Corporation |
| 4892 | All rights reserved. |
| 4893 | |
| 4894 | Redistribution and use in source and binary forms, with or without |
| 4895 | modification, are permitted provided that the following conditions are met: |
| 4896 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4897 | * Redistributions of source code must retain the above copyright notice, |
| 4898 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4899 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4900 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4901 | * this list of conditions and the following disclaimer in the documentation |
| 4902 | * and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4903 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4904 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4905 | * may be used to endorse or promote products derived from this software |
| 4906 | * without specific prior written permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4907 | |
| 4908 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4909 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4910 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4911 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4912 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4913 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4914 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4915 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4916 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4917 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4918 | |
| 4919 | ------------------------------------------------------------------- |
| 4920 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4921 | Copyright (c) 2011 David Chisnall |
| 4922 | All rights reserved. |
| 4923 | |
| 4924 | Redistribution and use in source and binary forms, with or without |
| 4925 | modification, are permitted provided that the following conditions |
| 4926 | are met: |
| 4927 | 1. Redistributions of source code must retain the above copyright |
| 4928 | notice, this list of conditions and the following disclaimer. |
| 4929 | 2. Redistributions in binary form must reproduce the above copyright |
| 4930 | notice, this list of conditions and the following disclaimer in the |
| 4931 | documentation and/or other materials provided with the distribution. |
| 4932 | |
| 4933 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4934 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4935 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4936 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4937 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4938 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4939 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4940 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4941 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4942 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4943 | SUCH DAMAGE. |
| 4944 | |
| 4945 | ------------------------------------------------------------------- |
| 4946 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4947 | Copyright (c) 2011 David Schultz |
| 4948 | All rights reserved. |
| 4949 | |
| 4950 | Redistribution and use in source and binary forms, with or without |
| 4951 | modification, are permitted provided that the following conditions |
| 4952 | are met: |
| 4953 | 1. Redistributions of source code must retain the above copyright |
| 4954 | notice unmodified, this list of conditions, and the following |
| 4955 | disclaimer. |
| 4956 | 2. Redistributions in binary form must reproduce the above copyright |
| 4957 | notice, this list of conditions and the following disclaimer in the |
| 4958 | documentation and/or other materials provided with the distribution. |
| 4959 | |
| 4960 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4961 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4962 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4963 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4964 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4965 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4966 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4967 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4968 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4969 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4970 | |
| 4971 | ------------------------------------------------------------------- |
| 4972 | |
| 4973 | Copyright (c) 2011 David Schultz <das@FreeBSD.ORG> |
| 4974 | All rights reserved. |
| 4975 | |
| 4976 | Redistribution and use in source and binary forms, with or without |
| 4977 | modification, are permitted provided that the following conditions |
| 4978 | are met: |
| 4979 | 1. Redistributions of source code must retain the above copyright |
| 4980 | notice, this list of conditions and the following disclaimer. |
| 4981 | 2. Redistributions in binary form must reproduce the above copyright |
| 4982 | notice, this list of conditions and the following disclaimer in the |
| 4983 | documentation and/or other materials provided with the distribution. |
| 4984 | |
| 4985 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4986 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4987 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4988 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4989 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4990 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4991 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4992 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4993 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4994 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4995 | SUCH DAMAGE. |
| 4996 | |
| 4997 | ------------------------------------------------------------------- |
| 4998 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4999 | Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org> |
| 5000 | David Chisnall <theraven@FreeBSD.org> |
| 5001 | All rights reserved. |
| 5002 | |
| 5003 | Redistribution and use in source and binary forms, with or without |
| 5004 | modification, are permitted provided that the following conditions |
| 5005 | are met: |
| 5006 | 1. Redistributions of source code must retain the above copyright |
| 5007 | notice, this list of conditions and the following disclaimer. |
| 5008 | 2. Redistributions in binary form must reproduce the above copyright |
| 5009 | notice, this list of conditions and the following disclaimer in the |
| 5010 | documentation and/or other materials provided with the distribution. |
| 5011 | |
| 5012 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5013 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5014 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5015 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5016 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5017 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5018 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5019 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5020 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5021 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5022 | SUCH DAMAGE. |
| 5023 | |
| 5024 | ------------------------------------------------------------------- |
| 5025 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5026 | Copyright (c) 2011 Intel Corporation |
| 5027 | All rights reserved. |
| 5028 | |
| 5029 | Redistribution and use in source and binary forms, with or without |
| 5030 | modification, are permitted provided that the following conditions are met: |
| 5031 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5032 | * Redistributions of source code must retain the above copyright notice, |
| 5033 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5034 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5035 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5036 | * this list of conditions and the following disclaimer in the documentation |
| 5037 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5038 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5039 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5040 | * may be used to endorse or promote products derived from this software |
| 5041 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5042 | |
| 5043 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5044 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5045 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5046 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5047 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5048 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5049 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5050 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5051 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5052 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5053 | |
| 5054 | ------------------------------------------------------------------- |
| 5055 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 5056 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 5057 | |
| 5058 | Permission to use, copy, modify, and distribute this software for any |
| 5059 | purpose with or without fee is hereby granted, provided that the above |
| 5060 | copyright notice and this permission notice appear in all copies. |
| 5061 | |
| 5062 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5063 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5064 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5065 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5066 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5067 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5068 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5069 | |
| 5070 | ------------------------------------------------------------------- |
| 5071 | |
| 5072 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 5073 | Copyright (c) 2009 Ted Unangst |
| 5074 | |
| 5075 | Permission to use, copy, modify, and distribute this software for any |
| 5076 | purpose with or without fee is hereby granted, provided that the above |
| 5077 | copyright notice and this permission notice appear in all copies. |
| 5078 | |
| 5079 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5080 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5081 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5082 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5083 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5084 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5085 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5086 | |
| 5087 | ------------------------------------------------------------------- |
| 5088 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5089 | Copyright (c) 2011 The Android Open Source Project |
| 5090 | Copyright (c) 2008 ARM Ltd |
| 5091 | All rights reserved. |
| 5092 | |
| 5093 | Redistribution and use in source and binary forms, with or without |
| 5094 | modification, are permitted provided that the following conditions |
| 5095 | are met: |
| 5096 | 1. Redistributions of source code must retain the above copyright |
| 5097 | notice, this list of conditions and the following disclaimer. |
| 5098 | 2. Redistributions in binary form must reproduce the above copyright |
| 5099 | notice, this list of conditions and the following disclaimer in the |
| 5100 | documentation and/or other materials provided with the distribution. |
| 5101 | 3. The name of the company may not be used to endorse or promote |
| 5102 | products derived from this software without specific prior written |
| 5103 | permission. |
| 5104 | |
| 5105 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5106 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5107 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5108 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5109 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5110 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5111 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5112 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5113 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5114 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5115 | |
| 5116 | ------------------------------------------------------------------- |
| 5117 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5118 | Copyright (c) 2011, 2012, 2013 Intel Corporation |
| 5119 | All rights reserved. |
| 5120 | |
| 5121 | Redistribution and use in source and binary forms, with or without |
| 5122 | modification, are permitted provided that the following conditions are met: |
| 5123 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5124 | * Redistributions of source code must retain the above copyright notice, |
| 5125 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5126 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5127 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5128 | * this list of conditions and the following disclaimer in the documentation |
| 5129 | * and/or other materials provided with the distribution. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5130 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5131 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5132 | * may be used to endorse or promote products derived from this software |
| 5133 | * without specific prior written permission. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5134 | |
| 5135 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5136 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5137 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5138 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5139 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5140 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5141 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5142 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5143 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5144 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5145 | |
| 5146 | ------------------------------------------------------------------- |
| 5147 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5148 | Copyright (c) 2011, Intel Corporation |
| 5149 | All rights reserved. |
| 5150 | |
| 5151 | Redistribution and use in source and binary forms, with or without |
| 5152 | modification, are permitted provided that the following conditions are met: |
| 5153 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5154 | * Redistributions of source code must retain the above copyright notice, |
| 5155 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5156 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5157 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5158 | * this list of conditions and the following disclaimer in the documentation |
| 5159 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5160 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5161 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5162 | * may be used to endorse or promote products derived from this software |
| 5163 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5164 | |
| 5165 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5166 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5167 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5168 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5169 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5170 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5171 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5172 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5173 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5174 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5175 | |
| 5176 | ------------------------------------------------------------------- |
| 5177 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5178 | Copyright (c) 2011, VMware, Inc. |
| 5179 | All rights reserved. |
| 5180 | |
| 5181 | Redistribution and use in source and binary forms, with or without |
| 5182 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5183 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5184 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5185 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5186 | notice, this list of conditions and the following disclaimer in the |
| 5187 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5188 | * 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] | 5189 | may be used to endorse or promote products derived from this software |
| 5190 | without specific prior written permission. |
| 5191 | |
| 5192 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 5193 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5194 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5195 | ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR |
| 5196 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5197 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5198 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 5199 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5200 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5201 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5202 | |
| 5203 | ------------------------------------------------------------------- |
| 5204 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5205 | Copyright (c) 2012 Stephen Montgomery-Smith <stephen@FreeBSD.ORG> |
| 5206 | All rights reserved. |
| 5207 | |
| 5208 | Redistribution and use in source and binary forms, with or without |
| 5209 | modification, are permitted provided that the following conditions |
| 5210 | are met: |
| 5211 | 1. Redistributions of source code must retain the above copyright |
| 5212 | notice, this list of conditions and the following disclaimer. |
| 5213 | 2. Redistributions in binary form must reproduce the above copyright |
| 5214 | notice, this list of conditions and the following disclaimer in the |
| 5215 | documentation and/or other materials provided with the distribution. |
| 5216 | |
| 5217 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5218 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5219 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5220 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5221 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5222 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5223 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5224 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5225 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5226 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5227 | SUCH DAMAGE. |
| 5228 | |
| 5229 | ------------------------------------------------------------------- |
| 5230 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5231 | Copyright (c) 2012, Linaro Limited |
| 5232 | All rights reserved. |
| 5233 | |
| 5234 | Redistribution and use in source and binary forms, with or without |
| 5235 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5236 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5237 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5238 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5239 | notice, this list of conditions and the following disclaimer in the |
| 5240 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5241 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5242 | names of its contributors may be used to endorse or promote products |
| 5243 | derived from this software without specific prior written permission. |
| 5244 | |
| 5245 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5246 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5247 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5248 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5249 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5250 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5251 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5252 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5253 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5254 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5255 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5256 | |
| 5257 | ------------------------------------------------------------------- |
| 5258 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5259 | Copyright (c) 2012, Linaro Limited |
| 5260 | All rights reserved. |
| 5261 | Copyright (c) 2014, NVIDIA Corporation. All rights reserved. |
| 5262 | |
| 5263 | Redistribution and use in source and binary forms, with or without |
| 5264 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5265 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5266 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5267 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5268 | notice, this list of conditions and the following disclaimer in the |
| 5269 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5270 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5271 | names of its contributors may be used to endorse or promote products |
| 5272 | derived from this software without specific prior written permission. |
| 5273 | |
| 5274 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5275 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5276 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5277 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5278 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5279 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5280 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5281 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5282 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5283 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5284 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5285 | |
| 5286 | ------------------------------------------------------------------- |
| 5287 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5288 | Copyright (c) 2012-2013, Linaro Limited |
| 5289 | All rights reserved. |
| 5290 | |
| 5291 | Redistribution and use in source and binary forms, with or without |
| 5292 | modification, are permitted provided that the following conditions are met: |
| 5293 | * Redistributions of source code must retain the above copyright |
| 5294 | notice, this list of conditions and the following disclaimer. |
| 5295 | * Redistributions in binary form must reproduce the above copyright |
| 5296 | notice, this list of conditions and the following disclaimer in the |
| 5297 | documentation and/or other materials provided with the distribution. |
| 5298 | * Neither the name of the Linaro nor the |
| 5299 | names of its contributors may be used to endorse or promote products |
| 5300 | derived from this software without specific prior written permission. |
| 5301 | |
| 5302 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5303 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5304 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5305 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5306 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5307 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5308 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5309 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5310 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5311 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5312 | |
| 5313 | ------------------------------------------------------------------- |
| 5314 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 5315 | Copyright (c) 2013 |
| 5316 | MIPS Technologies, Inc., California. |
| 5317 | |
| 5318 | Redistribution and use in source and binary forms, with or without |
| 5319 | modification, are permitted provided that the following conditions |
| 5320 | are met: |
| 5321 | 1. Redistributions of source code must retain the above copyright |
| 5322 | notice, this list of conditions and the following disclaimer. |
| 5323 | 2. Redistributions in binary form must reproduce the above copyright |
| 5324 | notice, this list of conditions and the following disclaimer in the |
| 5325 | documentation and/or other materials provided with the distribution. |
| 5326 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 5327 | contributors may be used to endorse or promote products derived from |
| 5328 | this software without specific prior written permission. |
| 5329 | |
| 5330 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 5331 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5332 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5333 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 5334 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5335 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5336 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5337 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5338 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5339 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5340 | SUCH DAMAGE. |
| 5341 | |
| 5342 | ------------------------------------------------------------------- |
| 5343 | |
Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 5344 | Copyright (c) 2013 ARM Ltd |
| 5345 | All rights reserved. |
| 5346 | |
| 5347 | Redistribution and use in source and binary forms, with or without |
| 5348 | modification, are permitted provided that the following conditions |
| 5349 | are met: |
| 5350 | 1. Redistributions of source code must retain the above copyright |
| 5351 | notice, this list of conditions and the following disclaimer. |
| 5352 | 2. Redistributions in binary form must reproduce the above copyright |
| 5353 | notice, this list of conditions and the following disclaimer in the |
| 5354 | documentation and/or other materials provided with the distribution. |
| 5355 | 3. The name of the company may not be used to endorse or promote |
| 5356 | products derived from this software without specific prior written |
| 5357 | permission. |
| 5358 | |
| 5359 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5360 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5361 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5362 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5363 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5364 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5365 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5366 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5367 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5368 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5369 | |
| 5370 | ------------------------------------------------------------------- |
| 5371 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5372 | Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org> |
| 5373 | |
| 5374 | Permission to use, copy, modify, and distribute this software for any |
| 5375 | purpose with or without fee is hereby granted, provided that the above |
| 5376 | copyright notice and this permission notice appear in all copies. |
| 5377 | |
| 5378 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5379 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5380 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5381 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5382 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5383 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5384 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5385 | |
| 5386 | ------------------------------------------------------------------- |
| 5387 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5388 | Copyright (c) 2013 David Chisnall |
| 5389 | All rights reserved. |
| 5390 | |
| 5391 | Redistribution and use in source and binary forms, with or without |
| 5392 | modification, are permitted provided that the following conditions |
| 5393 | are met: |
| 5394 | 1. Redistributions of source code must retain the above copyright |
| 5395 | notice, this list of conditions and the following disclaimer. |
| 5396 | 2. Redistributions in binary form must reproduce the above copyright |
| 5397 | notice, this list of conditions and the following disclaimer in the |
| 5398 | documentation and/or other materials provided with the distribution. |
| 5399 | |
| 5400 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5401 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5402 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5403 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5404 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5405 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5406 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5407 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5408 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5409 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5410 | SUCH DAMAGE. |
| 5411 | |
| 5412 | ------------------------------------------------------------------- |
| 5413 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5414 | Copyright (c) 2013 The NetBSD Foundation, Inc. |
| 5415 | All rights reserved. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5416 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5417 | This code is derived from software contributed to The NetBSD Foundation |
| 5418 | by Christos Zoulas. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5419 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5420 | Redistribution and use in source and binary forms, with or without |
| 5421 | modification, are permitted provided that the following conditions |
| 5422 | are met: |
| 5423 | 1. Redistributions of source code must retain the above copyright |
| 5424 | notice, this list of conditions and the following disclaimer. |
| 5425 | 2. Redistributions in binary form must reproduce the above copyright |
| 5426 | notice, this list of conditions and the following disclaimer in the |
| 5427 | documentation and/or other materials provided with the distribution. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5428 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5429 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 5430 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 5431 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 5432 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 5433 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 5434 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 5435 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 5436 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 5437 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 5438 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 5439 | POSSIBILITY OF SUCH DAMAGE. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5440 | |
| 5441 | ------------------------------------------------------------------- |
| 5442 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5443 | Copyright (c) 2013, Linaro Limited |
| 5444 | All rights reserved. |
| 5445 | |
| 5446 | Redistribution and use in source and binary forms, with or without |
| 5447 | modification, are permitted provided that the following conditions are met: |
| 5448 | * Redistributions of source code must retain the above copyright |
| 5449 | notice, this list of conditions and the following disclaimer. |
| 5450 | * Redistributions in binary form must reproduce the above copyright |
| 5451 | notice, this list of conditions and the following disclaimer in the |
| 5452 | documentation and/or other materials provided with the distribution. |
| 5453 | * Neither the name of the Linaro nor the |
| 5454 | names of its contributors may be used to endorse or promote products |
| 5455 | derived from this software without specific prior written permission. |
| 5456 | |
| 5457 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5458 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5459 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5460 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5461 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5462 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5463 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5464 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5465 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5466 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5467 | |
| 5468 | ------------------------------------------------------------------- |
| 5469 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5470 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 5471 | Johnny Qiu <joqiu@nvidia.com> |
| 5472 | Shu Zhang <chazhang@nvidia.com> |
| 5473 | |
| 5474 | Redistribution and use in source and binary forms, with or without |
| 5475 | modification, are permitted provided that the following conditions are |
| 5476 | met: |
| 5477 | * Redistributions of source code must retain the above copyright |
| 5478 | notice, this list of conditions and the following disclaimer. |
| 5479 | * Redistributions in binary form must reproduce the above |
| 5480 | copyright notice, this list of conditions and the following |
| 5481 | disclaimer in the documentation and/or other materials provided |
| 5482 | with the distribution. |
| 5483 | * Neither the name of The Linux Foundation nor the names of its |
| 5484 | contributors may be used to endorse or promote products derived |
| 5485 | from this software without specific prior written permission. |
| 5486 | |
| 5487 | THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 5488 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5489 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| 5490 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| 5491 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 5492 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 5493 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 5494 | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 5495 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 5496 | OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 5497 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5498 | |
| 5499 | ------------------------------------------------------------------- |
| 5500 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5501 | Copyright (c) 2013-2015, Linaro Limited |
| 5502 | All rights reserved. |
| 5503 | |
| 5504 | Redistribution and use in source and binary forms, with or without |
| 5505 | modification, are permitted provided that the following conditions are met: |
| 5506 | * Redistributions of source code must retain the above copyright |
| 5507 | notice, this list of conditions and the following disclaimer. |
| 5508 | * Redistributions in binary form must reproduce the above copyright |
| 5509 | notice, this list of conditions and the following disclaimer in the |
| 5510 | documentation and/or other materials provided with the distribution. |
| 5511 | * Neither the name of the Linaro nor the |
| 5512 | names of its contributors may be used to endorse or promote products |
| 5513 | derived from this software without specific prior written permission. |
| 5514 | |
| 5515 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5516 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5517 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5518 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5519 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5520 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5521 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5522 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5523 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5524 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5525 | |
| 5526 | ------------------------------------------------------------------- |
| 5527 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5528 | Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org> |
| 5529 | Copyright (c) 2014 Bob Beck <beck@obtuse.com> |
| 5530 | |
| 5531 | Permission to use, copy, modify, and distribute this software for any |
| 5532 | purpose with or without fee is hereby granted, provided that the above |
| 5533 | copyright notice and this permission notice appear in all copies. |
| 5534 | |
| 5535 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5536 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5537 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5538 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5539 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5540 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5541 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5542 | |
| 5543 | Emulation of getentropy(2) as documented at: |
Josh Gao | 98d655c | 2016-11-10 16:08:20 -0800 | [diff] [blame] | 5544 | http://man.openbsd.org/getentropy.2 |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5545 | |
| 5546 | ------------------------------------------------------------------- |
| 5547 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5548 | Copyright (c) 2014, Intel Corporation |
| 5549 | All rights reserved. |
| 5550 | |
| 5551 | Redistribution and use in source and binary forms, with or without |
| 5552 | modification, are permitted provided that the following conditions are met: |
| 5553 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5554 | * Redistributions of source code must retain the above copyright notice, |
| 5555 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5556 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5557 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5558 | * this list of conditions and the following disclaimer in the documentation |
| 5559 | * and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5560 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5561 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5562 | * may be used to endorse or promote products derived from this software |
| 5563 | * without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5564 | |
| 5565 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5566 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5567 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5568 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5569 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5570 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5571 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5572 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5573 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5574 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5575 | |
| 5576 | ------------------------------------------------------------------- |
| 5577 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5578 | Copyright (c) 2014, Linaro Limited |
| 5579 | All rights reserved. |
| 5580 | |
| 5581 | Redistribution and use in source and binary forms, with or without |
| 5582 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5583 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5584 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5585 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5586 | notice, this list of conditions and the following disclaimer in the |
| 5587 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5588 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5589 | names of its contributors may be used to endorse or promote products |
| 5590 | derived from this software without specific prior written permission. |
| 5591 | |
| 5592 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5593 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5594 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5595 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5596 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5597 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5598 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5599 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5600 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5601 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5602 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5603 | |
| 5604 | ------------------------------------------------------------------- |
| 5605 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5606 | Copyright (c) 2015 ARM Ltd |
| 5607 | All rights reserved. |
| 5608 | |
| 5609 | Redistribution and use in source and binary forms, with or without |
| 5610 | modification, are permitted provided that the following conditions |
| 5611 | are met: |
| 5612 | 1. Redistributions of source code must retain the above copyright |
| 5613 | notice, this list of conditions and the following disclaimer. |
| 5614 | 2. Redistributions in binary form must reproduce the above copyright |
| 5615 | notice, this list of conditions and the following disclaimer in the |
| 5616 | documentation and/or other materials provided with the distribution. |
| 5617 | 3. The name of the company may not be used to endorse or promote |
| 5618 | products derived from this software without specific prior written |
| 5619 | permission. |
| 5620 | |
| 5621 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5622 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5623 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5624 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5625 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5626 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5627 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5628 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5629 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5630 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5631 | |
| 5632 | ------------------------------------------------------------------- |
| 5633 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 5634 | Copyright (c) 2015 Joerg Sonnenberger <joerg@NetBSD.org>. |
| 5635 | All rights reserved. |
| 5636 | |
| 5637 | Redistribution and use in source and binary forms, with or without |
| 5638 | modification, are permitted provided that the following conditions |
| 5639 | are met: |
| 5640 | |
| 5641 | 1. Redistributions of source code must retain the above copyright |
| 5642 | notice, this list of conditions and the following disclaimer. |
| 5643 | 2. Redistributions in binary form must reproduce the above copyright |
| 5644 | notice, this list of conditions and the following disclaimer in |
| 5645 | the documentation and/or other materials provided with the |
| 5646 | distribution. |
| 5647 | |
| 5648 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5649 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5650 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 5651 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 5652 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5653 | INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 5654 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5655 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 5656 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 5657 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 5658 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5659 | SUCH DAMAGE. |
| 5660 | |
| 5661 | ------------------------------------------------------------------- |
| 5662 | |
Prashant Patil | fcb877a | 2017-03-16 18:07:00 +0530 | [diff] [blame^] | 5663 | Copyright (c) 2017 Imagination Technologies. |
| 5664 | |
| 5665 | All rights reserved. |
| 5666 | |
| 5667 | Redistribution and use in source and binary forms, with or without |
| 5668 | modification, are permitted provided that the following conditions |
| 5669 | are met: |
| 5670 | |
| 5671 | * Redistributions of source code must retain the above copyright |
| 5672 | notice, this list of conditions and the following disclaimer. |
| 5673 | * Redistributions in binary form must reproduce the above copyright |
| 5674 | notice, this list of conditions and the following disclaimer |
| 5675 | in the documentation and/or other materials provided with |
| 5676 | the distribution. |
| 5677 | * Neither the name of Imagination Technologies nor the names of its |
| 5678 | contributors may be used to endorse or promote products derived |
| 5679 | from this software without specific prior written permission. |
| 5680 | |
| 5681 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5682 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5683 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5684 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5685 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5686 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5687 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5688 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5689 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5690 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5691 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5692 | |
| 5693 | ------------------------------------------------------------------- |
| 5694 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5695 | Copyright (c)1999 Citrus Project, |
| 5696 | All rights reserved. |
| 5697 | |
| 5698 | Redistribution and use in source and binary forms, with or without |
| 5699 | modification, are permitted provided that the following conditions |
| 5700 | are met: |
| 5701 | 1. Redistributions of source code must retain the above copyright |
| 5702 | notice, this list of conditions and the following disclaimer. |
| 5703 | 2. Redistributions in binary form must reproduce the above copyright |
| 5704 | notice, this list of conditions and the following disclaimer in the |
| 5705 | documentation and/or other materials provided with the distribution. |
| 5706 | |
| 5707 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5708 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5709 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5710 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5711 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5712 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5713 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5714 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5715 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5716 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5717 | SUCH DAMAGE. |
| 5718 | |
| 5719 | ------------------------------------------------------------------- |
| 5720 | |
| 5721 | Copyright (c)2001 Citrus Project, |
| 5722 | All rights reserved. |
| 5723 | |
| 5724 | Redistribution and use in source and binary forms, with or without |
| 5725 | modification, are permitted provided that the following conditions |
| 5726 | are met: |
| 5727 | 1. Redistributions of source code must retain the above copyright |
| 5728 | notice, this list of conditions and the following disclaimer. |
| 5729 | 2. Redistributions in binary form must reproduce the above copyright |
| 5730 | notice, this list of conditions and the following disclaimer in the |
| 5731 | documentation and/or other materials provided with the distribution. |
| 5732 | |
| 5733 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5734 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5735 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5736 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5737 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5738 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5739 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5740 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5741 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5742 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5743 | SUCH DAMAGE. |
| 5744 | |
| 5745 | ------------------------------------------------------------------- |
| 5746 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5747 | Copyright (c)2003 Citrus Project, |
| 5748 | All rights reserved. |
| 5749 | |
| 5750 | Redistribution and use in source and binary forms, with or without |
| 5751 | modification, are permitted provided that the following conditions |
| 5752 | are met: |
| 5753 | 1. Redistributions of source code must retain the above copyright |
| 5754 | notice, this list of conditions and the following disclaimer. |
| 5755 | 2. Redistributions in binary form must reproduce the above copyright |
| 5756 | notice, this list of conditions and the following disclaimer in the |
| 5757 | documentation and/or other materials provided with the distribution. |
| 5758 | |
| 5759 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5760 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5761 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5762 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5763 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5764 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5765 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5766 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5767 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5768 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5769 | SUCH DAMAGE. |
| 5770 | |
| 5771 | ------------------------------------------------------------------- |
| 5772 | |
Elliott Hughes | 77a3e28 | 2016-08-08 12:39:56 -0700 | [diff] [blame] | 5773 | Copyright 1989 The Regents of the University of California. |
| 5774 | All rights reserved. |
| 5775 | |
| 5776 | Redistribution and use in source and binary forms, with or without |
| 5777 | modification, are permitted provided that the following conditions |
| 5778 | are met: |
| 5779 | 1. Redistributions of source code must retain the above copyright |
| 5780 | notice, this list of conditions and the following disclaimer. |
| 5781 | 2. Redistributions in binary form must reproduce the above copyright |
| 5782 | notice, this list of conditions and the following disclaimer in the |
| 5783 | documentation and/or other materials provided with the distribution. |
| 5784 | 3. Neither the name of the University nor the names of its contributors |
| 5785 | may be used to endorse or promote products derived from this software |
| 5786 | without specific prior written permission. |
| 5787 | |
| 5788 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND |
| 5789 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5790 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5791 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 5792 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5793 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5794 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5795 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5796 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5797 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5798 | |
| 5799 | ------------------------------------------------------------------- |
| 5800 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 5801 | Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
| 5802 | Copyright 2008 Damien Miller <djm@openbsd.org> |
| 5803 | All rights reserved. |
| 5804 | |
| 5805 | Theo de Raadt <deraadt@openbsd.org> came up with the idea of using |
| 5806 | such a mathematical system to generate more random (yet non-repeating) |
| 5807 | ids to solve the resolver/named problem. But Niels designed the |
| 5808 | actual system based on the constraints. |
| 5809 | |
| 5810 | Later modified by Damien Miller to wrap the LCG output in a 15-bit |
| 5811 | permutation generator based on a Luby-Rackoff block cipher. This |
| 5812 | ensures the output is non-repeating and preserves the MSB twiddle |
| 5813 | trick, but makes it more resistant to LCG prediction. |
| 5814 | |
| 5815 | Redistribution and use in source and binary forms, with or without |
| 5816 | modification, are permitted provided that the following conditions |
| 5817 | are met: |
| 5818 | 1. Redistributions of source code must retain the above copyright |
| 5819 | notice, this list of conditions and the following disclaimer. |
| 5820 | 2. Redistributions in binary form must reproduce the above copyright |
| 5821 | notice, this list of conditions and the following disclaimer in the |
| 5822 | documentation and/or other materials provided with the distribution. |
| 5823 | |
| 5824 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 5825 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 5826 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5827 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5828 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 5829 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5830 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5831 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5832 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5833 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5834 | |
| 5835 | ------------------------------------------------------------------- |
| 5836 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5837 | From: @(#)s_ilogb.c 5.1 93/09/24 |
| 5838 | ==================================================== |
| 5839 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 5840 | |
| 5841 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 5842 | Permission to use, copy, modify, and distribute this |
| 5843 | software is freely granted, provided that this notice |
| 5844 | is preserved. |
| 5845 | |
| 5846 | ------------------------------------------------------------------- |
| 5847 | |
Calin Juravle | c4fbf92 | 2014-03-10 11:23:52 +0000 | [diff] [blame] | 5848 | Portions Copyright (C) 2004, 2005, 2008, 2009 Internet Systems Consortium, Inc. ("ISC") |
| 5849 | Portions Copyright (C) 1996-2003 Internet Software Consortium. |
| 5850 | |
| 5851 | Permission to use, copy, modify, and/or distribute this software for any |
| 5852 | purpose with or without fee is hereby granted, provided that the above |
| 5853 | copyright notice and this permission notice appear in all copies. |
| 5854 | |
| 5855 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 5856 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 5857 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 5858 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 5859 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 5860 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 5861 | PERFORMANCE OF THIS SOFTWARE. |
| 5862 | |
| 5863 | ------------------------------------------------------------------- |
| 5864 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5865 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 5866 | |
| 5867 | Permission to use, copy, modify, and distribute this software for any |
| 5868 | purpose with or without fee is hereby granted, provided that the above |
| 5869 | copyright notice and this permission notice appear in all copies, and that |
| 5870 | the name of Digital Equipment Corporation not be used in advertising or |
| 5871 | publicity pertaining to distribution of the document or software without |
| 5872 | specific, written prior permission. |
| 5873 | |
| 5874 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 5875 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 5876 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 5877 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 5878 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 5879 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 5880 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 5881 | SOFTWARE. |
| 5882 | |
| 5883 | ------------------------------------------------------------------- |
| 5884 | |
| 5885 | Portions Copyright (c) 1995 by International Business Machines, Inc. |
| 5886 | |
| 5887 | International Business Machines, Inc. (hereinafter called IBM) grants |
| 5888 | permission under its copyrights to use, copy, modify, and distribute this |
| 5889 | Software with or without fee, provided that the above copyright notice and |
| 5890 | all paragraphs of this notice appear in all copies, and that the name of IBM |
| 5891 | not be used in connection with the marketing of any product incorporating |
| 5892 | the Software or modifications thereof, without specific, written prior |
| 5893 | permission. |
| 5894 | |
| 5895 | To the extent it has a right to do so, IBM grants an immunity from suit |
| 5896 | under its patents, if any, for the use, sale or manufacture of products to |
| 5897 | the extent that such products are used for performing Domain Name System |
| 5898 | dynamic updates in TCP/IP networks by means of the Software. No immunity is |
| 5899 | granted for any product per se or for any other function of any product. |
| 5900 | |
| 5901 | THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, |
| 5902 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 5903 | PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, |
| 5904 | DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING |
| 5905 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN |
| 5906 | IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| 5907 | |
| 5908 | ------------------------------------------------------------------- |
| 5909 | |
| 5910 | Portions Copyright(C) 1995, Jason Downs. All rights reserved. |
| 5911 | |
| 5912 | Redistribution and use in source and binary forms, with or without |
| 5913 | modification, are permitted provided that the following conditions |
| 5914 | are met: |
| 5915 | 1. Redistributions of source code must retain the above copyright |
| 5916 | notice, this list of conditions and the following disclaimer. |
| 5917 | 2. Redistributions in binary form must reproduce the above copyright |
| 5918 | notice, this list of conditions and the following disclaimer in the |
| 5919 | documentation and/or other materials provided with the distribution. |
| 5920 | |
| 5921 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS |
| 5922 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5923 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5924 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, |
| 5925 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5926 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 5927 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 5928 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5929 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5930 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5931 | SUCH DAMAGE. |
| 5932 | |
| 5933 | ------------------------------------------------------------------- |
| 5934 | |
| 5935 | The author of this software is David M. Gay. |
| 5936 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5937 | Copyright (C) 1998 by Lucent Technologies |
| 5938 | All Rights Reserved |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5939 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5940 | Permission to use, copy, modify, and distribute this software and |
| 5941 | its documentation for any purpose and without fee is hereby |
| 5942 | granted, provided that the above copyright notice appear in all |
| 5943 | copies and that both that the copyright notice and this |
| 5944 | permission notice and warranty disclaimer appear in supporting |
| 5945 | documentation, and that the name of Lucent or any of its entities |
| 5946 | not be used in advertising or publicity pertaining to |
| 5947 | distribution of the software without specific, written prior |
| 5948 | permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5949 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5950 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5951 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5952 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5953 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5954 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5955 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5956 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5957 | THIS SOFTWARE. |
| 5958 | |
| 5959 | ------------------------------------------------------------------- |
| 5960 | |
| 5961 | The author of this software is David M. Gay. |
| 5962 | |
| 5963 | Copyright (C) 1998, 1999 by Lucent Technologies |
| 5964 | All Rights Reserved |
| 5965 | |
| 5966 | Permission to use, copy, modify, and distribute this software and |
| 5967 | its documentation for any purpose and without fee is hereby |
| 5968 | granted, provided that the above copyright notice appear in all |
| 5969 | copies and that both that the copyright notice and this |
| 5970 | permission notice and warranty disclaimer appear in supporting |
| 5971 | documentation, and that the name of Lucent or any of its entities |
| 5972 | not be used in advertising or publicity pertaining to |
| 5973 | distribution of the software without specific, written prior |
| 5974 | permission. |
| 5975 | |
| 5976 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5977 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5978 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5979 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5980 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5981 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5982 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5983 | THIS SOFTWARE. |
| 5984 | |
| 5985 | ------------------------------------------------------------------- |
| 5986 | |
| 5987 | The author of this software is David M. Gay. |
| 5988 | |
| 5989 | Copyright (C) 1998, 2000 by Lucent Technologies |
| 5990 | All Rights Reserved |
| 5991 | |
| 5992 | Permission to use, copy, modify, and distribute this software and |
| 5993 | its documentation for any purpose and without fee is hereby |
| 5994 | granted, provided that the above copyright notice appear in all |
| 5995 | copies and that both that the copyright notice and this |
| 5996 | permission notice and warranty disclaimer appear in supporting |
| 5997 | documentation, and that the name of Lucent or any of its entities |
| 5998 | not be used in advertising or publicity pertaining to |
| 5999 | distribution of the software without specific, written prior |
| 6000 | permission. |
| 6001 | |
| 6002 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6003 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6004 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6005 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6006 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6007 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6008 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6009 | THIS SOFTWARE. |
| 6010 | |
| 6011 | ------------------------------------------------------------------- |
| 6012 | |
| 6013 | The author of this software is David M. Gay. |
| 6014 | |
| 6015 | Copyright (C) 1998-2000 by Lucent Technologies |
| 6016 | All Rights Reserved |
| 6017 | |
| 6018 | Permission to use, copy, modify, and distribute this software and |
| 6019 | its documentation for any purpose and without fee is hereby |
| 6020 | granted, provided that the above copyright notice appear in all |
| 6021 | copies and that both that the copyright notice and this |
| 6022 | permission notice and warranty disclaimer appear in supporting |
| 6023 | documentation, and that the name of Lucent or any of its entities |
| 6024 | not be used in advertising or publicity pertaining to |
| 6025 | distribution of the software without specific, written prior |
| 6026 | permission. |
| 6027 | |
| 6028 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6029 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6030 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6031 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6032 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6033 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6034 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6035 | THIS SOFTWARE. |
| 6036 | |
| 6037 | ------------------------------------------------------------------- |
| 6038 | |
| 6039 | The author of this software is David M. Gay. |
| 6040 | |
| 6041 | Copyright (C) 1998-2001 by Lucent Technologies |
| 6042 | All Rights Reserved |
| 6043 | |
| 6044 | Permission to use, copy, modify, and distribute this software and |
| 6045 | its documentation for any purpose and without fee is hereby |
| 6046 | granted, provided that the above copyright notice appear in all |
| 6047 | copies and that both that the copyright notice and this |
| 6048 | permission notice and warranty disclaimer appear in supporting |
| 6049 | documentation, and that the name of Lucent or any of its entities |
| 6050 | not be used in advertising or publicity pertaining to |
| 6051 | distribution of the software without specific, written prior |
| 6052 | permission. |
| 6053 | |
| 6054 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6055 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6056 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6057 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6058 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6059 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6060 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6061 | THIS SOFTWARE. |
| 6062 | |
| 6063 | ------------------------------------------------------------------- |
| 6064 | |
| 6065 | The author of this software is David M. Gay. |
| 6066 | |
| 6067 | Copyright (C) 2000 by Lucent Technologies |
| 6068 | All Rights Reserved |
| 6069 | |
| 6070 | Permission to use, copy, modify, and distribute this software and |
| 6071 | its documentation for any purpose and without fee is hereby |
| 6072 | granted, provided that the above copyright notice appear in all |
| 6073 | copies and that both that the copyright notice and this |
| 6074 | permission notice and warranty disclaimer appear in supporting |
| 6075 | documentation, and that the name of Lucent or any of its entities |
| 6076 | not be used in advertising or publicity pertaining to |
| 6077 | distribution of the software without specific, written prior |
| 6078 | permission. |
| 6079 | |
| 6080 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6081 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6082 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6083 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6084 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6085 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6086 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6087 | THIS SOFTWARE. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 6088 | |
| 6089 | ------------------------------------------------------------------- |
| 6090 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 6091 | memchr - find a character in a memory zone |
| 6092 | |
| 6093 | Copyright (c) 2014, ARM Limited |
| 6094 | All rights Reserved. |
| 6095 | Copyright (c) 2014, Linaro Ltd. |
| 6096 | |
| 6097 | Redistribution and use in source and binary forms, with or without |
| 6098 | modification, are permitted provided that the following conditions are met: |
| 6099 | * Redistributions of source code must retain the above copyright |
| 6100 | notice, this list of conditions and the following disclaimer. |
| 6101 | * Redistributions in binary form must reproduce the above copyright |
| 6102 | notice, this list of conditions and the following disclaimer in the |
| 6103 | documentation and/or other materials provided with the distribution. |
| 6104 | * Neither the name of the company nor the names of its contributors |
| 6105 | may be used to endorse or promote products derived from this |
| 6106 | software without specific prior written permission. |
| 6107 | |
| 6108 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 6109 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 6110 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 6111 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 6112 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 6113 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 6114 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 6115 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 6116 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 6117 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 6118 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 6119 | |
| 6120 | ------------------------------------------------------------------- |
| 6121 | |