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 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 385 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 386 | |
| 387 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 388 | you may not use this file except in compliance with the License. |
| 389 | You may obtain a copy of the License at |
| 390 | |
| 391 | http://www.apache.org/licenses/LICENSE-2.0 |
| 392 | |
| 393 | Unless required by applicable law or agreed to in writing, software |
| 394 | distributed under the License is distributed on an "AS IS" BASIS, |
| 395 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 396 | See the License for the specific language governing permissions and |
| 397 | limitations under the License. |
| 398 | |
| 399 | ------------------------------------------------------------------- |
| 400 | |
| 401 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 402 | All rights reserved. |
| 403 | |
| 404 | Redistribution and use in source and binary forms, with or without |
| 405 | modification, are permitted provided that the following conditions |
| 406 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 407 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 408 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 409 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 410 | notice, this list of conditions and the following disclaimer in |
| 411 | the documentation and/or other materials provided with the |
| 412 | distribution. |
| 413 | |
| 414 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 415 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 416 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 417 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 418 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 419 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 420 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 421 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 422 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 423 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 424 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 425 | SUCH DAMAGE. |
| 426 | |
| 427 | ------------------------------------------------------------------- |
| 428 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 429 | Copyright (C) 2008 The Android Open Source Project |
| 430 | All rights reserved. |
| 431 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 432 | |
| 433 | Redistribution and use in source and binary forms, with or without |
| 434 | modification, are permitted provided that the following conditions |
| 435 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 436 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 437 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 438 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 439 | notice, this list of conditions and the following disclaimer in |
| 440 | the documentation and/or other materials provided with the |
| 441 | distribution. |
| 442 | |
| 443 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 444 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 445 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 446 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 447 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 448 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 449 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 450 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 451 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 452 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 453 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 454 | SUCH DAMAGE. |
| 455 | |
| 456 | ------------------------------------------------------------------- |
| 457 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 458 | Copyright (C) 2009 The Android Open Source Project |
| 459 | 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 | 261e223 | 2012-08-14 15:04:05 -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 | 261e223 | 2012-08-14 15:04:05 -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 | |
| 486 | Copyright (C) 2010 The Android Open Source Project |
| 487 | |
| 488 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 489 | you may not use this file except in compliance with the License. |
| 490 | You may obtain a copy of the License at |
| 491 | |
| 492 | http://www.apache.org/licenses/LICENSE-2.0 |
| 493 | |
| 494 | Unless required by applicable law or agreed to in writing, software |
| 495 | distributed under the License is distributed on an "AS IS" BASIS, |
| 496 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 497 | See the License for the specific language governing permissions and |
| 498 | limitations under the License. |
| 499 | |
| 500 | ------------------------------------------------------------------- |
| 501 | |
| 502 | Copyright (C) 2010 The Android Open Source Project |
| 503 | All rights reserved. |
| 504 | |
| 505 | Redistribution and use in source and binary forms, with or without |
| 506 | modification, are permitted provided that the following conditions |
| 507 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 508 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 509 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 510 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 511 | notice, this list of conditions and the following disclaimer in |
| 512 | the documentation and/or other materials provided with the |
| 513 | distribution. |
| 514 | |
| 515 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 516 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 517 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 518 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 519 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 520 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 521 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 522 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 523 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 524 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 525 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 526 | SUCH DAMAGE. |
| 527 | |
| 528 | ------------------------------------------------------------------- |
| 529 | |
| 530 | Copyright (C) 2010 The Android Open Source Project |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 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: |
| 536 | 1. Redistributions of source code must retain the above copyright |
| 537 | notice, this list of conditions and the following disclaimer. |
| 538 | 2. Redistributions in binary form must reproduce the above copyright |
| 539 | notice, this list of conditions and the following disclaimer in the |
| 540 | documentation and/or other materials provided with the distribution. |
| 541 | |
| 542 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 543 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 544 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 545 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 546 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 547 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 548 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 549 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 550 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 551 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 552 | SUCH DAMAGE. |
| 553 | |
| 554 | ------------------------------------------------------------------- |
| 555 | |
| 556 | Copyright (C) 2010 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 557 | Copyright (c) 2008 ARM Ltd |
| 558 | All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 559 | |
| 560 | Redistribution and use in source and binary forms, with or without |
| 561 | modification, are permitted provided that the following conditions |
| 562 | are met: |
| 563 | 1. Redistributions of source code must retain the above copyright |
| 564 | notice, this list of conditions and the following disclaimer. |
| 565 | 2. Redistributions in binary form must reproduce the above copyright |
| 566 | notice, this list of conditions and the following disclaimer in the |
| 567 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 568 | 3. The name of the company may not be used to endorse or promote |
| 569 | products derived from this software without specific prior written |
| 570 | permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 571 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 572 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 573 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 574 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 575 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 576 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 577 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 578 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 579 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 580 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 581 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 582 | |
| 583 | Android adaptation and tweak by Jim Huang <jserv@0xlab.org>. |
| 584 | |
| 585 | ------------------------------------------------------------------- |
| 586 | |
| 587 | Copyright (C) 2011 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 588 | All rights reserved. |
| 589 | |
| 590 | Redistribution and use in source and binary forms, with or without |
| 591 | modification, are permitted provided that the following conditions |
| 592 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 593 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 594 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 595 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 596 | notice, this list of conditions and the following disclaimer in |
| 597 | the documentation and/or other materials provided with the |
| 598 | distribution. |
| 599 | |
| 600 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 601 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 602 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 603 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 604 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 605 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 606 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 607 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 608 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 609 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 610 | 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] | 611 | SUCH DAMAGE. |
| 612 | |
| 613 | ------------------------------------------------------------------- |
| 614 | |
| 615 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 616 | |
| 617 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 618 | you may not use this file except in compliance with the License. |
| 619 | You may obtain a copy of the License at |
| 620 | |
| 621 | http://www.apache.org/licenses/LICENSE-2.0 |
| 622 | |
| 623 | Unless required by applicable law or agreed to in writing, software |
| 624 | distributed under the License is distributed on an "AS IS" BASIS, |
| 625 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 626 | See the License for the specific language governing permissions and |
| 627 | limitations under the License. |
| 628 | |
| 629 | ------------------------------------------------------------------- |
| 630 | |
| 631 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 632 | All rights reserved. |
| 633 | |
| 634 | Redistribution and use in source and binary forms, with or without |
| 635 | modification, are permitted provided that the following conditions |
| 636 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 637 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 638 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 639 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 640 | notice, this list of conditions and the following disclaimer in |
| 641 | the documentation and/or other materials provided with the |
| 642 | distribution. |
| 643 | |
| 644 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 645 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 646 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 647 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 648 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 649 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 650 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 651 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 652 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 653 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 654 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 655 | SUCH DAMAGE. |
| 656 | |
| 657 | ------------------------------------------------------------------- |
| 658 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 659 | Copyright (C) 2013 The Android Open Source Project |
| 660 | |
| 661 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 662 | you may not use this file except in compliance with the License. |
| 663 | You may obtain a copy of the License at |
| 664 | |
| 665 | http://www.apache.org/licenses/LICENSE-2.0 |
| 666 | |
| 667 | Unless required by applicable law or agreed to in writing, software |
| 668 | distributed under the License is distributed on an "AS IS" BASIS, |
| 669 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 670 | See the License for the specific language governing permissions and |
| 671 | limitations under the License. |
| 672 | |
| 673 | ------------------------------------------------------------------- |
| 674 | |
| 675 | Copyright (C) 2013 The Android Open Source Project |
| 676 | All rights reserved. |
| 677 | |
| 678 | Redistribution and use in source and binary forms, with or without |
| 679 | modification, are permitted provided that the following conditions |
| 680 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 681 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 682 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 683 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 684 | notice, this list of conditions and the following disclaimer in |
| 685 | the documentation and/or other materials provided with the |
| 686 | distribution. |
| 687 | |
| 688 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 689 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 690 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 691 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 692 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 693 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 694 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 695 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 696 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 697 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 698 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 699 | SUCH DAMAGE. |
| 700 | |
| 701 | ------------------------------------------------------------------- |
| 702 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 703 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 704 | All rights reserved. |
| 705 | Copyright (c) 2013-2014 NVIDIA Corporation. All rights reserved. |
| 706 | |
| 707 | Redistribution and use in source and binary forms, with or without |
| 708 | modification, are permitted provided that the following conditions |
| 709 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 710 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 711 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 712 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 713 | notice, this list of conditions and the following disclaimer in |
| 714 | the documentation and/or other materials provided with the |
| 715 | distribution. |
| 716 | |
| 717 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 718 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 719 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 720 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 721 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 722 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 723 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 724 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 725 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 726 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 727 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 728 | SUCH DAMAGE. |
| 729 | |
| 730 | ------------------------------------------------------------------- |
| 731 | |
| 732 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 733 | Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. |
| 734 | All rights reserved. |
| 735 | |
| 736 | Redistribution and use in source and binary forms, with or without |
| 737 | modification, are permitted provided that the following conditions |
| 738 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 739 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 740 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 741 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 742 | notice, this list of conditions and the following disclaimer in |
| 743 | the documentation and/or other materials provided with the |
| 744 | distribution. |
| 745 | |
| 746 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 747 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 748 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 749 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 750 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 751 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 752 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 753 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 754 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 755 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 756 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 757 | SUCH DAMAGE. |
| 758 | |
| 759 | ------------------------------------------------------------------- |
| 760 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 761 | Copyright (C) 2014 The Android Open Source Project |
| 762 | |
| 763 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 764 | you may not use this file except in compliance with the License. |
| 765 | You may obtain a copy of the License at |
| 766 | |
| 767 | http://www.apache.org/licenses/LICENSE-2.0 |
| 768 | |
| 769 | Unless required by applicable law or agreed to in writing, software |
| 770 | distributed under the License is distributed on an "AS IS" BASIS, |
| 771 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 772 | See the License for the specific language governing permissions and |
| 773 | limitations under the License. |
| 774 | |
| 775 | ------------------------------------------------------------------- |
| 776 | |
| 777 | Copyright (C) 2014 The Android Open Source Project |
| 778 | All rights reserved. |
| 779 | |
| 780 | Redistribution and use in source and binary forms, with or without |
| 781 | modification, are permitted provided that the following conditions |
| 782 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 783 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 784 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 785 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 786 | notice, this list of conditions and the following disclaimer in |
| 787 | the documentation and/or other materials provided with the |
| 788 | distribution. |
| 789 | |
| 790 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 791 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 792 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 793 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 794 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 795 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 796 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 797 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 798 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 799 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 800 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 801 | SUCH DAMAGE. |
| 802 | |
| 803 | ------------------------------------------------------------------- |
| 804 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 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: |
| 811 | 1. Redistributions of source code must retain the above copyright |
| 812 | notice, this list of conditions and the following disclaimer. |
| 813 | 2. Redistributions in binary form must reproduce the above copyright |
| 814 | notice, this list of conditions and the following disclaimer in the |
| 815 | documentation and/or other materials provided with the distribution. |
| 816 | |
| 817 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 818 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 819 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 820 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 821 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 822 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 823 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 824 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 825 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 826 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 827 | SUCH DAMAGE. |
| 828 | |
| 829 | ------------------------------------------------------------------- |
| 830 | |
| 831 | Copyright (C) 2015 The Android Open Source Project |
| 832 | |
| 833 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 834 | you may not use this file except in compliance with the License. |
| 835 | You may obtain a copy of the License at |
| 836 | |
| 837 | http://www.apache.org/licenses/LICENSE-2.0 |
| 838 | |
| 839 | Unless required by applicable law or agreed to in writing, software |
| 840 | distributed under the License is distributed on an "AS IS" BASIS, |
| 841 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 842 | See the License for the specific language governing permissions and |
| 843 | limitations under the License. |
| 844 | |
| 845 | ------------------------------------------------------------------- |
| 846 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 847 | Copyright (C) 2015 The Android Open Source Project |
| 848 | |
| 849 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 850 | you may not use this file except in compliance with the License. |
| 851 | You may obtain a copy of the License at |
| 852 | |
| 853 | http://www.apache.org/licenses/LICENSE-2.0 |
| 854 | |
| 855 | Unless required by applicable law or agreed to in writing, software |
| 856 | distributed under the License is distributed on an "AS IS" BASIS, |
| 857 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 858 | See the License for the specific language governing permissions and |
| 859 | limitations under the License. |
| 860 | |
| 861 | ------------------------------------------------------------------- |
| 862 | |
| 863 | Copyright (C) 2015 The Android Open Source Project |
| 864 | All rights reserved. |
| 865 | |
| 866 | Redistribution and use in source and binary forms, with or without |
| 867 | modification, are permitted provided that the following conditions |
| 868 | are met: |
| 869 | * Redistributions of source code must retain the above copyright |
| 870 | notice, this list of conditions and the following disclaimer. |
| 871 | * Redistributions in binary form must reproduce the above copyright |
| 872 | notice, this list of conditions and the following disclaimer in |
| 873 | the documentation and/or other materials provided with the |
| 874 | distribution. |
| 875 | |
| 876 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 877 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 878 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 879 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 880 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 881 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 882 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 883 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 884 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 885 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 886 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 887 | SUCH DAMAGE. |
| 888 | |
| 889 | ------------------------------------------------------------------- |
| 890 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 891 | Copyright (C) 2016 The Android Open Source Project |
| 892 | |
| 893 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 894 | you may not use this file except in compliance with the License. |
| 895 | You may obtain a copy of the License at |
| 896 | |
| 897 | http://www.apache.org/licenses/LICENSE-2.0 |
| 898 | |
| 899 | Unless required by applicable law or agreed to in writing, software |
| 900 | distributed under the License is distributed on an "AS IS" BASIS, |
| 901 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 902 | See the License for the specific language governing permissions and |
| 903 | limitations under the License. |
| 904 | |
| 905 | ------------------------------------------------------------------- |
| 906 | |
| 907 | Copyright (C) 2016 The Android Open Source Project |
| 908 | All rights reserved. |
| 909 | |
| 910 | Redistribution and use in source and binary forms, with or without |
| 911 | modification, are permitted provided that the following conditions |
| 912 | are met: |
| 913 | * Redistributions of source code must retain the above copyright |
| 914 | notice, this list of conditions and the following disclaimer. |
| 915 | * Redistributions in binary form must reproduce the above copyright |
| 916 | notice, this list of conditions and the following disclaimer in |
| 917 | the documentation and/or other materials provided with the |
| 918 | distribution. |
| 919 | |
| 920 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 921 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 922 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 923 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 924 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 925 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 926 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 927 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 928 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 929 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 930 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 931 | SUCH DAMAGE. |
| 932 | |
| 933 | ------------------------------------------------------------------- |
| 934 | |
mspector | 2e3d6a1 | 2017-01-24 21:51:51 -0800 | [diff] [blame] | 935 | Copyright (C) 2017 The Android Open Source Project |
Dimitry Ivanov | 451909d | 2017-01-26 16:52:59 -0800 | [diff] [blame] | 936 | |
| 937 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 938 | you may not use this file except in compliance with the License. |
| 939 | You may obtain a copy of the License at |
| 940 | |
| 941 | http://www.apache.org/licenses/LICENSE-2.0 |
| 942 | |
| 943 | Unless required by applicable law or agreed to in writing, software |
| 944 | distributed under the License is distributed on an "AS IS" BASIS, |
| 945 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 946 | See the License for the specific language governing permissions and |
| 947 | limitations under the License. |
| 948 | |
| 949 | ------------------------------------------------------------------- |
| 950 | |
| 951 | Copyright (C) 2017 The Android Open Source Project |
mspector | 2e3d6a1 | 2017-01-24 21:51:51 -0800 | [diff] [blame] | 952 | All rights reserved. |
| 953 | |
| 954 | Redistribution and use in source and binary forms, with or without |
| 955 | modification, are permitted provided that the following conditions |
| 956 | are met: |
| 957 | * Redistributions of source code must retain the above copyright |
| 958 | notice, this list of conditions and the following disclaimer. |
| 959 | * Redistributions in binary form must reproduce the above copyright |
| 960 | notice, this list of conditions and the following disclaimer in |
| 961 | the documentation and/or other materials provided with the |
| 962 | distribution. |
| 963 | |
| 964 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 965 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 966 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 967 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 968 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 969 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 970 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 971 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 972 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 973 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 974 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 975 | SUCH DAMAGE. |
| 976 | |
| 977 | ------------------------------------------------------------------- |
| 978 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 979 | Copyright (c) 1980, 1983, 1988, 1993 |
| 980 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 981 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 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 | 1. Redistributions of source code must retain the above copyright |
| 986 | notice, this list of conditions and the following disclaimer. |
| 987 | 2. Redistributions in binary form must reproduce the above copyright |
| 988 | notice, this list of conditions and the following disclaimer in the |
| 989 | documentation and/or other materials provided with the distribution. |
| 990 | 3. All advertising materials mentioning features or use of this software |
| 991 | must display the following acknowledgement: |
| 992 | This product includes software developed by the University of |
| 993 | California, Berkeley and its contributors. |
| 994 | 4. Neither the name of the University nor the names of its contributors |
| 995 | may be used to endorse or promote products derived from this software |
| 996 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 997 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 998 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 999 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1000 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1001 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1002 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1003 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1004 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1005 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1006 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1007 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1008 | SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1009 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1010 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1011 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1012 | |
| 1013 | Permission to use, copy, modify, and distribute this software for any |
| 1014 | purpose with or without fee is hereby granted, provided that the above |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1015 | copyright notice and this permission notice appear in all copies, and that |
| 1016 | the name of Digital Equipment Corporation not be used in advertising or |
| 1017 | publicity pertaining to distribution of the document or software without |
| 1018 | specific, written prior permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1019 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1020 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1021 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1022 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1023 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1024 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1025 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1026 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1027 | SOFTWARE. |
| 1028 | |
| 1029 | ------------------------------------------------------------------- |
| 1030 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1031 | Copyright (c) 1982, 1986, 1993 |
| 1032 | The Regents of the University of California. All rights reserved. |
| 1033 | |
| 1034 | Redistribution and use in source and binary forms, with or without |
| 1035 | modification, are permitted provided that the following conditions |
| 1036 | are met: |
| 1037 | 1. Redistributions of source code must retain the above copyright |
| 1038 | notice, this list of conditions and the following disclaimer. |
| 1039 | 2. Redistributions in binary form must reproduce the above copyright |
| 1040 | notice, this list of conditions and the following disclaimer in the |
| 1041 | documentation and/or other materials provided with the distribution. |
| 1042 | 3. Neither the name of the University nor the names of its contributors |
| 1043 | may be used to endorse or promote products derived from this software |
| 1044 | without specific prior written permission. |
| 1045 | |
| 1046 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1047 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1048 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1049 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1050 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1051 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1052 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1053 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1054 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1055 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1056 | SUCH DAMAGE. |
| 1057 | |
| 1058 | ------------------------------------------------------------------- |
| 1059 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 1060 | Copyright (c) 1982, 1986, 1993 |
| 1061 | The Regents of the University of California. All rights reserved. |
| 1062 | (c) UNIX System Laboratories, Inc. |
| 1063 | All or some portions of this file are derived from material licensed |
| 1064 | to the University of California by American Telephone and Telegraph |
| 1065 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1066 | the permission of UNIX System Laboratories, Inc. |
| 1067 | |
| 1068 | Redistribution and use in source and binary forms, with or without |
| 1069 | modification, are permitted provided that the following conditions |
| 1070 | are met: |
| 1071 | 1. Redistributions of source code must retain the above copyright |
| 1072 | notice, this list of conditions and the following disclaimer. |
| 1073 | 2. Redistributions in binary form must reproduce the above copyright |
| 1074 | notice, this list of conditions and the following disclaimer in the |
| 1075 | documentation and/or other materials provided with the distribution. |
| 1076 | 3. Neither the name of the University nor the names of its contributors |
| 1077 | may be used to endorse or promote products derived from this software |
| 1078 | without specific prior written permission. |
| 1079 | |
| 1080 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1081 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1082 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1083 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1084 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1085 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1086 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1087 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1088 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1089 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1090 | SUCH DAMAGE. |
| 1091 | |
| 1092 | ------------------------------------------------------------------- |
| 1093 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1094 | Copyright (c) 1983, 1987, 1989 |
| 1095 | The Regents of the University of California. All rights reserved. |
| 1096 | |
| 1097 | Redistribution and use in source and binary forms, with or without |
| 1098 | modification, are permitted provided that the following conditions |
| 1099 | are met: |
| 1100 | 1. Redistributions of source code must retain the above copyright |
| 1101 | notice, this list of conditions and the following disclaimer. |
| 1102 | 2. Redistributions in binary form must reproduce the above copyright |
| 1103 | notice, this list of conditions and the following disclaimer in the |
| 1104 | documentation and/or other materials provided with the distribution. |
| 1105 | 3. Neither the name of the University nor the names of its contributors |
| 1106 | may be used to endorse or promote products derived from this software |
| 1107 | without specific prior written permission. |
| 1108 | |
| 1109 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1110 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1111 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1112 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1113 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1114 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1115 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1116 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1117 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1118 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1119 | SUCH DAMAGE. |
| 1120 | |
| 1121 | ------------------------------------------------------------------- |
| 1122 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1123 | Copyright (c) 1983, 1989 |
| 1124 | The Regents of the University of California. All rights reserved. |
| 1125 | |
| 1126 | Redistribution and use in source and binary forms, with or without |
| 1127 | modification, are permitted provided that the following conditions |
| 1128 | are met: |
| 1129 | 1. Redistributions of source code must retain the above copyright |
| 1130 | notice, this list of conditions and the following disclaimer. |
| 1131 | 2. Redistributions in binary form must reproduce the above copyright |
| 1132 | notice, this list of conditions and the following disclaimer in the |
| 1133 | documentation and/or other materials provided with the distribution. |
| 1134 | 3. All advertising materials mentioning features or use of this software |
| 1135 | must display the following acknowledgement: |
| 1136 | This product includes software developed by the University of |
| 1137 | California, Berkeley and its contributors. |
| 1138 | 4. Neither the name of the University nor the names of its contributors |
| 1139 | may be used to endorse or promote products derived from this software |
| 1140 | without specific prior written permission. |
| 1141 | |
| 1142 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1143 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1144 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1145 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1146 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1147 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1148 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1149 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1150 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1151 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1152 | SUCH DAMAGE. |
| 1153 | |
| 1154 | ------------------------------------------------------------------- |
| 1155 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1156 | Copyright (c) 1983, 1989, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1157 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1158 | |
| 1159 | Redistribution and use in source and binary forms, with or without |
| 1160 | modification, are permitted provided that the following conditions |
| 1161 | are met: |
| 1162 | 1. Redistributions of source code must retain the above copyright |
| 1163 | notice, this list of conditions and the following disclaimer. |
| 1164 | 2. Redistributions in binary form must reproduce the above copyright |
| 1165 | notice, this list of conditions and the following disclaimer in the |
| 1166 | documentation and/or other materials provided with the distribution. |
| 1167 | 3. Neither the name of the University nor the names of its contributors |
| 1168 | may be used to endorse or promote products derived from this software |
| 1169 | without specific prior written permission. |
| 1170 | |
| 1171 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1172 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1173 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1174 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1175 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1176 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1177 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1178 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1179 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1180 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1181 | SUCH DAMAGE. |
| 1182 | |
| 1183 | ------------------------------------------------------------------- |
| 1184 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1185 | Copyright (c) 1983, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1186 | The Regents of the University of California. All rights reserved. |
| 1187 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1188 | Redistribution and use in source and binary forms, with or without |
| 1189 | modification, are permitted provided that the following conditions |
| 1190 | are met: |
| 1191 | 1. Redistributions of source code must retain the above copyright |
| 1192 | notice, this list of conditions and the following disclaimer. |
| 1193 | 2. Redistributions in binary form must reproduce the above copyright |
| 1194 | notice, this list of conditions and the following disclaimer in the |
| 1195 | documentation and/or other materials provided with the distribution. |
| 1196 | 3. Neither the name of the University nor the names of its contributors |
| 1197 | may be used to endorse or promote products derived from this software |
| 1198 | without specific prior written permission. |
| 1199 | |
| 1200 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1201 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1202 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1203 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1204 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1205 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1206 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1207 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1208 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1209 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1210 | SUCH DAMAGE. |
| 1211 | |
| 1212 | ------------------------------------------------------------------- |
| 1213 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1214 | Copyright (c) 1983, 1993 |
| 1215 | The Regents of the University of California. All rights reserved. |
| 1216 | |
| 1217 | Redistribution and use in source and binary forms, with or without |
| 1218 | modification, are permitted provided that the following conditions |
| 1219 | are met: |
| 1220 | 1. Redistributions of source code must retain the above copyright |
| 1221 | notice, this list of conditions and the following disclaimer. |
| 1222 | 2. Redistributions in binary form must reproduce the above copyright |
| 1223 | notice, this list of conditions and the following disclaimer in the |
| 1224 | documentation and/or other materials provided with the distribution. |
| 1225 | 4. Neither the name of the University nor the names of its contributors |
| 1226 | may be used to endorse or promote products derived from this software |
| 1227 | without specific prior written permission. |
| 1228 | |
| 1229 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1230 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1231 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1232 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1233 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1234 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1235 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1236 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1237 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1238 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1239 | SUCH DAMAGE. |
| 1240 | |
| 1241 | ------------------------------------------------------------------- |
| 1242 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1243 | Copyright (c) 1985 |
| 1244 | The Regents of the University of California. All rights reserved. |
| 1245 | |
| 1246 | Redistribution and use in source and binary forms, with or without |
| 1247 | modification, are permitted provided that the following conditions |
| 1248 | are met: |
| 1249 | 1. Redistributions of source code must retain the above copyright |
| 1250 | notice, this list of conditions and the following disclaimer. |
| 1251 | 2. Redistributions in binary form must reproduce the above copyright |
| 1252 | notice, this list of conditions and the following disclaimer in the |
| 1253 | documentation and/or other materials provided with the distribution. |
| 1254 | 3. All advertising materials mentioning features or use of this software |
| 1255 | must display the following acknowledgement: |
| 1256 | This product includes software developed by the University of |
| 1257 | California, Berkeley and its contributors. |
| 1258 | 4. Neither the name of the University nor the names of its contributors |
| 1259 | may be used to endorse or promote products derived from this software |
| 1260 | without specific prior written permission. |
| 1261 | |
| 1262 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1263 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1264 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1265 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1266 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1267 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1268 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1269 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1270 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1271 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1272 | SUCH DAMAGE. |
| 1273 | |
| 1274 | ------------------------------------------------------------------- |
| 1275 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1276 | Copyright (c) 1985 Regents of the University of California. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1277 | All rights reserved. |
| 1278 | |
| 1279 | Redistribution and use in source and binary forms, with or without |
| 1280 | modification, are permitted provided that the following conditions |
| 1281 | are met: |
| 1282 | 1. Redistributions of source code must retain the above copyright |
| 1283 | notice, this list of conditions and the following disclaimer. |
| 1284 | 2. Redistributions in binary form must reproduce the above copyright |
| 1285 | notice, this list of conditions and the following disclaimer in the |
| 1286 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1287 | 3. Neither the name of the University nor the names of its contributors |
| 1288 | may be used to endorse or promote products derived from this software |
| 1289 | without specific prior written permission. |
| 1290 | |
| 1291 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1292 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1293 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1294 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1295 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1296 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1297 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1298 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1299 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1300 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1301 | SUCH DAMAGE. |
| 1302 | |
| 1303 | ------------------------------------------------------------------- |
| 1304 | |
| 1305 | Copyright (c) 1985, 1988, 1993 |
| 1306 | The Regents of the University of California. All rights reserved. |
| 1307 | |
| 1308 | Redistribution and use in source and binary forms, with or without |
| 1309 | modification, are permitted provided that the following conditions |
| 1310 | are met: |
| 1311 | 1. Redistributions of source code must retain the above copyright |
| 1312 | notice, this list of conditions and the following disclaimer. |
| 1313 | 2. Redistributions in binary form must reproduce the above copyright |
| 1314 | notice, this list of conditions and the following disclaimer in the |
| 1315 | documentation and/or other materials provided with the distribution. |
| 1316 | 3. Neither the name of the University nor the names of its contributors |
| 1317 | may be used to endorse or promote products derived from this software |
| 1318 | without specific prior written permission. |
| 1319 | |
| 1320 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1321 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1322 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1323 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1324 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1325 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1326 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1327 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1328 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1329 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1330 | SUCH DAMAGE. |
| 1331 | |
| 1332 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 1333 | |
| 1334 | Permission to use, copy, modify, and distribute this software for any |
| 1335 | purpose with or without fee is hereby granted, provided that the above |
| 1336 | copyright notice and this permission notice appear in all copies, and that |
| 1337 | the name of Digital Equipment Corporation not be used in advertising or |
| 1338 | publicity pertaining to distribution of the document or software without |
| 1339 | specific, written prior permission. |
| 1340 | |
| 1341 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1342 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1343 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1344 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1345 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1346 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1347 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1348 | SOFTWARE. |
| 1349 | |
| 1350 | ------------------------------------------------------------------- |
| 1351 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1352 | Copyright (c) 1985, 1989, 1993 |
| 1353 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1354 | |
| 1355 | Redistribution and use in source and binary forms, with or without |
| 1356 | modification, are permitted provided that the following conditions |
| 1357 | are met: |
| 1358 | 1. Redistributions of source code must retain the above copyright |
| 1359 | notice, this list of conditions and the following disclaimer. |
| 1360 | 2. Redistributions in binary form must reproduce the above copyright |
| 1361 | notice, this list of conditions and the following disclaimer in the |
| 1362 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1363 | 3. All advertising materials mentioning features or use of this software |
| 1364 | must display the following acknowledgement: |
| 1365 | This product includes software developed by the University of |
| 1366 | California, Berkeley and its contributors. |
| 1367 | 4. Neither the name of the University nor the names of its contributors |
| 1368 | may be used to endorse or promote products derived from this software |
| 1369 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1370 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1371 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1372 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1373 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1374 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1375 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1376 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1377 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1378 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1379 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1380 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1381 | SUCH DAMAGE. |
| 1382 | |
| 1383 | ------------------------------------------------------------------- |
| 1384 | |
| 1385 | Copyright (c) 1985, 1993 |
| 1386 | The Regents of the University of California. All rights reserved. |
| 1387 | |
| 1388 | Redistribution and use in source and binary forms, with or without |
| 1389 | modification, are permitted provided that the following conditions |
| 1390 | are met: |
| 1391 | 1. Redistributions of source code must retain the above copyright |
| 1392 | notice, this list of conditions and the following disclaimer. |
| 1393 | 2. Redistributions in binary form must reproduce the above copyright |
| 1394 | notice, this list of conditions and the following disclaimer in the |
| 1395 | documentation and/or other materials provided with the distribution. |
| 1396 | 3. All advertising materials mentioning features or use of this software |
| 1397 | must display the following acknowledgement: |
| 1398 | This product includes software developed by the University of |
| 1399 | California, Berkeley and its contributors. |
| 1400 | 4. Neither the name of the University nor the names of its contributors |
| 1401 | may be used to endorse or promote products derived from this software |
| 1402 | without specific prior written permission. |
| 1403 | |
| 1404 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1405 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1406 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1407 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1408 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1409 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1410 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1411 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1412 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1413 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1414 | SUCH DAMAGE. |
| 1415 | |
| 1416 | ------------------------------------------------------------------- |
| 1417 | |
| 1418 | Copyright (c) 1985, 1993 |
| 1419 | The Regents of the University of California. All rights reserved. |
| 1420 | |
| 1421 | Redistribution and use in source and binary forms, with or without |
| 1422 | modification, are permitted provided that the following conditions |
| 1423 | are met: |
| 1424 | 1. Redistributions of source code must retain the above copyright |
| 1425 | notice, this list of conditions and the following disclaimer. |
| 1426 | 2. Redistributions in binary form must reproduce the above copyright |
| 1427 | notice, this list of conditions and the following disclaimer in the |
| 1428 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 1429 | 3. All advertising materials mentioning features or use of this software |
| 1430 | must display the following acknowledgement: |
| 1431 | This product includes software developed by the University of |
| 1432 | California, Berkeley and its contributors. |
| 1433 | 4. Neither the name of the University nor the names of its contributors |
| 1434 | may be used to endorse or promote products derived from this software |
| 1435 | without specific prior written permission. |
| 1436 | |
| 1437 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1438 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1439 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1440 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1441 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1442 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1443 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1444 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1445 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1446 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1447 | SUCH DAMAGE. |
| 1448 | |
| 1449 | ------------------------------------------------------------------- |
| 1450 | |
| 1451 | Copyright (c) 1985, 1993 |
| 1452 | The Regents of the University of California. All rights reserved. |
| 1453 | |
| 1454 | Redistribution and use in source and binary forms, with or without |
| 1455 | modification, are permitted provided that the following conditions |
| 1456 | are met: |
| 1457 | 1. Redistributions of source code must retain the above copyright |
| 1458 | notice, this list of conditions and the following disclaimer. |
| 1459 | 2. Redistributions in binary form must reproduce the above copyright |
| 1460 | notice, this list of conditions and the following disclaimer in the |
| 1461 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1462 | 3. Neither the name of the University nor the names of its contributors |
| 1463 | may be used to endorse or promote products derived from this software |
| 1464 | without specific prior written permission. |
| 1465 | |
| 1466 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1467 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1468 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1469 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1470 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1471 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1472 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1473 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1474 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1475 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1476 | SUCH DAMAGE. |
| 1477 | |
| 1478 | ------------------------------------------------------------------- |
| 1479 | |
| 1480 | Copyright (c) 1987 Regents of the University of California. |
| 1481 | All rights reserved. |
| 1482 | |
| 1483 | Redistribution and use in source and binary forms, with or without |
| 1484 | modification, are permitted provided that the following conditions |
| 1485 | are met: |
| 1486 | 1. Redistributions of source code must retain the above copyright |
| 1487 | notice, this list of conditions and the following disclaimer. |
| 1488 | 2. Redistributions in binary form must reproduce the above copyright |
| 1489 | notice, this list of conditions and the following disclaimer in the |
| 1490 | documentation and/or other materials provided with the distribution. |
| 1491 | 3. Neither the name of the University nor the names of its contributors |
| 1492 | may be used to endorse or promote products derived from this software |
| 1493 | without specific prior written permission. |
| 1494 | |
| 1495 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1496 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1497 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1498 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1499 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1500 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1501 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1502 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1503 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1504 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1505 | SUCH DAMAGE. |
| 1506 | |
| 1507 | ------------------------------------------------------------------- |
| 1508 | |
| 1509 | Copyright (c) 1987, 1993 |
| 1510 | The Regents of the University of California. All rights reserved. |
| 1511 | |
| 1512 | Redistribution and use in source and binary forms, with or without |
| 1513 | modification, are permitted provided that the following conditions |
| 1514 | are met: |
| 1515 | 1. Redistributions of source code must retain the above copyright |
| 1516 | notice, this list of conditions and the following disclaimer. |
| 1517 | 2. Redistributions in binary form must reproduce the above copyright |
| 1518 | notice, this list of conditions and the following disclaimer in the |
| 1519 | documentation and/or other materials provided with the distribution. |
| 1520 | 3. All advertising materials mentioning features or use of this software |
| 1521 | must display the following acknowledgement: |
| 1522 | This product includes software developed by the University of |
| 1523 | California, Berkeley and its contributors. |
| 1524 | 4. Neither the name of the University nor the names of its contributors |
| 1525 | may be used to endorse or promote products derived from this software |
| 1526 | without specific prior written permission. |
| 1527 | |
| 1528 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1529 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1530 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1531 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1532 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1533 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1534 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1535 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1536 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1537 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1538 | SUCH DAMAGE. |
| 1539 | |
| 1540 | ------------------------------------------------------------------- |
| 1541 | |
| 1542 | Copyright (c) 1987, 1993 |
| 1543 | The Regents of the University of California. All rights reserved. |
| 1544 | |
| 1545 | Redistribution and use in source and binary forms, with or without |
| 1546 | modification, are permitted provided that the following conditions |
| 1547 | are met: |
| 1548 | 1. Redistributions of source code must retain the above copyright |
| 1549 | notice, this list of conditions and the following disclaimer. |
| 1550 | 2. Redistributions in binary form must reproduce the above copyright |
| 1551 | notice, this list of conditions and the following disclaimer in the |
| 1552 | documentation and/or other materials provided with the distribution. |
| 1553 | 3. Neither the name of the University nor the names of its contributors |
| 1554 | may be used to endorse or promote products derived from this software |
| 1555 | without specific prior written permission. |
| 1556 | |
| 1557 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1558 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1559 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1560 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1561 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1562 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1563 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1564 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1565 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1566 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1567 | SUCH DAMAGE. |
| 1568 | |
| 1569 | ------------------------------------------------------------------- |
| 1570 | |
| 1571 | Copyright (c) 1988 Regents of the University of California. |
| 1572 | All rights reserved. |
| 1573 | |
| 1574 | Redistribution and use in source and binary forms, with or without |
| 1575 | modification, are permitted provided that the following conditions |
| 1576 | are met: |
| 1577 | 1. Redistributions of source code must retain the above copyright |
| 1578 | notice, this list of conditions and the following disclaimer. |
| 1579 | 2. Redistributions in binary form must reproduce the above copyright |
| 1580 | notice, this list of conditions and the following disclaimer in the |
| 1581 | documentation and/or other materials provided with the distribution. |
| 1582 | 3. Neither the name of the University nor the names of its contributors |
| 1583 | may be used to endorse or promote products derived from this software |
| 1584 | without specific prior written permission. |
| 1585 | |
| 1586 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1587 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1588 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1589 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1590 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1591 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1592 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1593 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1594 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1595 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1596 | SUCH DAMAGE. |
| 1597 | |
| 1598 | ------------------------------------------------------------------- |
| 1599 | |
| 1600 | Copyright (c) 1988 The Regents of the University of California. |
| 1601 | All rights reserved. |
| 1602 | |
| 1603 | Redistribution and use in source and binary forms, with or without |
| 1604 | modification, are permitted provided that the following conditions |
| 1605 | are met: |
| 1606 | 1. Redistributions of source code must retain the above copyright |
| 1607 | notice, this list of conditions and the following disclaimer. |
| 1608 | 2. Redistributions in binary form must reproduce the above copyright |
| 1609 | notice, this list of conditions and the following disclaimer in the |
| 1610 | documentation and/or other materials provided with the distribution. |
| 1611 | 3. Neither the name of the University nor the names of its contributors |
| 1612 | may be used to endorse or promote products derived from this software |
| 1613 | without specific prior written permission. |
| 1614 | |
| 1615 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1616 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1617 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1618 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1619 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1620 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1621 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1622 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1623 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1624 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1625 | SUCH DAMAGE. |
| 1626 | |
| 1627 | ------------------------------------------------------------------- |
| 1628 | |
| 1629 | Copyright (c) 1988, 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1630 | The Regents of the University of California. All rights reserved. |
| 1631 | |
| 1632 | Redistribution and use in source and binary forms, with or without |
| 1633 | modification, are permitted provided that the following conditions |
| 1634 | are met: |
| 1635 | 1. Redistributions of source code must retain the above copyright |
| 1636 | notice, this list of conditions and the following disclaimer. |
| 1637 | 2. Redistributions in binary form must reproduce the above copyright |
| 1638 | notice, this list of conditions and the following disclaimer in the |
| 1639 | documentation and/or other materials provided with the distribution. |
| 1640 | 3. All advertising materials mentioning features or use of this software |
| 1641 | must display the following acknowledgement: |
| 1642 | This product includes software developed by the University of |
| 1643 | California, Berkeley and its contributors. |
| 1644 | 4. Neither the name of the University nor the names of its contributors |
| 1645 | may be used to endorse or promote products derived from this software |
| 1646 | without specific prior written permission. |
| 1647 | |
| 1648 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1649 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1650 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1651 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1652 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1653 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1654 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1655 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1656 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1657 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1658 | SUCH DAMAGE. |
| 1659 | |
| 1660 | ------------------------------------------------------------------- |
| 1661 | |
| 1662 | Copyright (c) 1988, 1993 |
| 1663 | The Regents of the University of California. All rights reserved. |
| 1664 | |
| 1665 | Redistribution and use in source and binary forms, with or without |
| 1666 | modification, are permitted provided that the following conditions |
| 1667 | are met: |
| 1668 | 1. Redistributions of source code must retain the above copyright |
| 1669 | notice, this list of conditions and the following disclaimer. |
| 1670 | 2. Redistributions in binary form must reproduce the above copyright |
| 1671 | notice, this list of conditions and the following disclaimer in the |
| 1672 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 1673 | 3. All advertising materials mentioning features or use of this software |
| 1674 | must display the following acknowledgement: |
| 1675 | This product includes software developed by the University of |
| 1676 | California, Berkeley and its contributors. |
| 1677 | 4. Neither the name of the University nor the names of its contributors |
| 1678 | may be used to endorse or promote products derived from this software |
| 1679 | without specific prior written permission. |
| 1680 | |
| 1681 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1682 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1683 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1684 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1685 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1686 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1687 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1688 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1689 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1690 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1691 | SUCH DAMAGE. |
| 1692 | |
| 1693 | ------------------------------------------------------------------- |
| 1694 | |
| 1695 | Copyright (c) 1988, 1993 |
| 1696 | The Regents of the University of California. All rights reserved. |
| 1697 | |
| 1698 | Redistribution and use in source and binary forms, with or without |
| 1699 | modification, are permitted provided that the following conditions |
| 1700 | are met: |
| 1701 | 1. Redistributions of source code must retain the above copyright |
| 1702 | notice, this list of conditions and the following disclaimer. |
| 1703 | 2. Redistributions in binary form must reproduce the above copyright |
| 1704 | notice, this list of conditions and the following disclaimer in the |
| 1705 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1706 | 3. Neither the name of the University nor the names of its contributors |
| 1707 | may be used to endorse or promote products derived from this software |
| 1708 | without specific prior written permission. |
| 1709 | |
| 1710 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1711 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1712 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1713 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1714 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1715 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1716 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1717 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1718 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1719 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1720 | SUCH DAMAGE. |
| 1721 | |
| 1722 | ------------------------------------------------------------------- |
| 1723 | |
| 1724 | Copyright (c) 1988, 1993 |
| 1725 | The Regents of the University of California. All rights reserved. |
| 1726 | |
| 1727 | This code is derived from software written by Ken Arnold and |
| 1728 | published in UNIX Review, Vol. 6, No. 8. |
| 1729 | |
| 1730 | Redistribution and use in source and binary forms, with or without |
| 1731 | modification, are permitted provided that the following conditions |
| 1732 | are met: |
| 1733 | 1. Redistributions of source code must retain the above copyright |
| 1734 | notice, this list of conditions and the following disclaimer. |
| 1735 | 2. Redistributions in binary form must reproduce the above copyright |
| 1736 | notice, this list of conditions and the following disclaimer in the |
| 1737 | documentation and/or other materials provided with the distribution. |
| 1738 | 3. Neither the name of the University nor the names of its contributors |
| 1739 | may be used to endorse or promote products derived from this software |
| 1740 | without specific prior written permission. |
| 1741 | |
| 1742 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1743 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1744 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1745 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1746 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1747 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1748 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1749 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1750 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1751 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1752 | SUCH DAMAGE. |
| 1753 | |
| 1754 | ------------------------------------------------------------------- |
| 1755 | |
| 1756 | Copyright (c) 1989 The Regents of the University of California. |
| 1757 | All rights reserved. |
| 1758 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1759 | Redistribution and use in source and binary forms, with or without |
| 1760 | modification, are permitted provided that the following conditions |
| 1761 | are met: |
| 1762 | 1. Redistributions of source code must retain the above copyright |
| 1763 | notice, this list of conditions and the following disclaimer. |
| 1764 | 2. Redistributions in binary form must reproduce the above copyright |
| 1765 | notice, this list of conditions and the following disclaimer in the |
| 1766 | documentation and/or other materials provided with the distribution. |
| 1767 | 3. Neither the name of the University nor the names of its contributors |
| 1768 | may be used to endorse or promote products derived from this software |
| 1769 | without specific prior written permission. |
| 1770 | |
| 1771 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1772 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1773 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1774 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1775 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1776 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1777 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1778 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1779 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1780 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1781 | SUCH DAMAGE. |
| 1782 | |
| 1783 | ------------------------------------------------------------------- |
| 1784 | |
| 1785 | Copyright (c) 1989 The Regents of the University of California. |
| 1786 | All rights reserved. |
| 1787 | (c) UNIX System Laboratories, Inc. |
| 1788 | All or some portions of this file are derived from material licensed |
| 1789 | to the University of California by American Telephone and Telegraph |
| 1790 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1791 | the permission of UNIX System Laboratories, Inc. |
| 1792 | |
| 1793 | Redistribution and use in source and binary forms, with or without |
| 1794 | modification, are permitted provided that the following conditions |
| 1795 | are met: |
| 1796 | 1. Redistributions of source code must retain the above copyright |
| 1797 | notice, this list of conditions and the following disclaimer. |
| 1798 | 2. Redistributions in binary form must reproduce the above copyright |
| 1799 | notice, this list of conditions and the following disclaimer in the |
| 1800 | documentation and/or other materials provided with the distribution. |
| 1801 | 3. Neither the name of the University nor the names of its contributors |
| 1802 | may be used to endorse or promote products derived from this software |
| 1803 | without specific prior written permission. |
| 1804 | |
| 1805 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1806 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1807 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1808 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1809 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1810 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1811 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1812 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1813 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1814 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1815 | SUCH DAMAGE. |
| 1816 | |
| 1817 | ------------------------------------------------------------------- |
| 1818 | |
| 1819 | Copyright (c) 1989, 1993 |
| 1820 | The Regents of the University of California. All rights reserved. |
| 1821 | |
| 1822 | Redistribution and use in source and binary forms, with or without |
| 1823 | modification, are permitted provided that the following conditions |
| 1824 | are met: |
| 1825 | 1. Redistributions of source code must retain the above copyright |
| 1826 | notice, this list of conditions and the following disclaimer. |
| 1827 | 2. Redistributions in binary form must reproduce the above copyright |
| 1828 | notice, this list of conditions and the following disclaimer in the |
| 1829 | documentation and/or other materials provided with the distribution. |
| 1830 | 3. Neither the name of the University nor the names of its contributors |
| 1831 | may be used to endorse or promote products derived from this software |
| 1832 | without specific prior written permission. |
| 1833 | |
| 1834 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1835 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1836 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1837 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1838 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1839 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1840 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1841 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1842 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1843 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1844 | SUCH DAMAGE. |
| 1845 | |
| 1846 | ------------------------------------------------------------------- |
| 1847 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1848 | Copyright (c) 1989, 1993 |
| 1849 | The Regents of the University of California. All rights reserved. |
| 1850 | |
| 1851 | Redistribution and use in source and binary forms, with or without |
| 1852 | modification, are permitted provided that the following conditions |
| 1853 | are met: |
| 1854 | 1. Redistributions of source code must retain the above copyright |
| 1855 | notice, this list of conditions and the following disclaimer. |
| 1856 | 2. Redistributions in binary form must reproduce the above copyright |
| 1857 | notice, this list of conditions and the following disclaimer in the |
| 1858 | documentation and/or other materials provided with the distribution. |
| 1859 | 4. Neither the name of the University nor the names of its contributors |
| 1860 | may be used to endorse or promote products derived from this software |
| 1861 | without specific prior written permission. |
| 1862 | |
| 1863 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1864 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1865 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1866 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1867 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1868 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1869 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1870 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1871 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1872 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1873 | SUCH DAMAGE. |
| 1874 | |
| 1875 | ------------------------------------------------------------------- |
| 1876 | |
| 1877 | Copyright (c) 1989, 1993 |
| 1878 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 1879 | |
| 1880 | This code is derived from software contributed to Berkeley by |
| 1881 | Roger L. Snyder. |
| 1882 | |
| 1883 | Redistribution and use in source and binary forms, with or without |
| 1884 | modification, are permitted provided that the following conditions |
| 1885 | are met: |
| 1886 | 1. Redistributions of source code must retain the above copyright |
| 1887 | notice, this list of conditions and the following disclaimer. |
| 1888 | 2. Redistributions in binary form must reproduce the above copyright |
| 1889 | notice, this list of conditions and the following disclaimer in the |
| 1890 | documentation and/or other materials provided with the distribution. |
| 1891 | 3. Neither the name of the University nor the names of its contributors |
| 1892 | may be used to endorse or promote products derived from this software |
| 1893 | without specific prior written permission. |
| 1894 | |
| 1895 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1896 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1897 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1898 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1899 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1900 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1901 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1902 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1903 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1904 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1905 | SUCH DAMAGE. |
| 1906 | |
| 1907 | ------------------------------------------------------------------- |
| 1908 | |
| 1909 | Copyright (c) 1989, 1993 |
| 1910 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1911 | (c) UNIX System Laboratories, Inc. |
| 1912 | All or some portions of this file are derived from material licensed |
| 1913 | to the University of California by American Telephone and Telegraph |
| 1914 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1915 | the permission of UNIX System Laboratories, Inc. |
| 1916 | |
| 1917 | Redistribution and use in source and binary forms, with or without |
| 1918 | modification, are permitted provided that the following conditions |
| 1919 | are met: |
| 1920 | 1. Redistributions of source code must retain the above copyright |
| 1921 | notice, this list of conditions and the following disclaimer. |
| 1922 | 2. Redistributions in binary form must reproduce the above copyright |
| 1923 | notice, this list of conditions and the following disclaimer in the |
| 1924 | documentation and/or other materials provided with the distribution. |
| 1925 | 3. Neither the name of the University nor the names of its contributors |
| 1926 | may be used to endorse or promote products derived from this software |
| 1927 | without specific prior written permission. |
| 1928 | |
| 1929 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1930 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1931 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1932 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1933 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1934 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1935 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1936 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1937 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1938 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1939 | SUCH DAMAGE. |
| 1940 | |
| 1941 | ------------------------------------------------------------------- |
| 1942 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 1943 | Copyright (c) 1990 Regents of the University of California. |
| 1944 | All rights reserved. |
| 1945 | |
| 1946 | This code is derived from software contributed to Berkeley by |
| 1947 | Chris Torek. |
| 1948 | |
| 1949 | Redistribution and use in source and binary forms, with or without |
| 1950 | modification, are permitted provided that the following conditions |
| 1951 | are met: |
| 1952 | 1. Redistributions of source code must retain the above copyright |
| 1953 | notice, this list of conditions and the following disclaimer. |
| 1954 | 2. Redistributions in binary form must reproduce the above copyright |
| 1955 | notice, this list of conditions and the following disclaimer in the |
| 1956 | documentation and/or other materials provided with the distribution. |
| 1957 | 3. Neither the name of the University nor the names of its contributors |
| 1958 | may be used to endorse or promote products derived from this software |
| 1959 | without specific prior written permission. |
| 1960 | |
| 1961 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1962 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1963 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1964 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1965 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1966 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1967 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1968 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1969 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1970 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1971 | SUCH DAMAGE. |
| 1972 | |
| 1973 | ------------------------------------------------------------------- |
| 1974 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1975 | Copyright (c) 1990 The Regents of the University of California. |
| 1976 | All rights reserved. |
| 1977 | |
| 1978 | Redistribution and use in source and binary forms, with or without |
| 1979 | modification, are permitted provided that the following conditions |
| 1980 | are met: |
| 1981 | 1. Redistributions of source code must retain the above copyright |
| 1982 | notice, this list of conditions and the following disclaimer. |
| 1983 | 2. Redistributions in binary form must reproduce the above copyright |
| 1984 | notice, this list of conditions and the following disclaimer in the |
| 1985 | documentation and/or other materials provided with the distribution. |
| 1986 | 3. Neither the name of the University nor the names of its contributors |
| 1987 | may be used to endorse or promote products derived from this software |
| 1988 | without specific prior written permission. |
| 1989 | |
| 1990 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1991 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1992 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1993 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1994 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1995 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1996 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1997 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1998 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1999 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2000 | SUCH DAMAGE. |
| 2001 | |
| 2002 | ------------------------------------------------------------------- |
| 2003 | |
| 2004 | Copyright (c) 1990 The Regents of the University of California. |
| 2005 | All rights reserved. |
| 2006 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2007 | This code is derived from software contributed to Berkeley by |
| 2008 | Chris Torek. |
| 2009 | |
| 2010 | Redistribution and use in source and binary forms, with or without |
| 2011 | modification, are permitted provided that the following conditions |
| 2012 | are met: |
| 2013 | 1. Redistributions of source code must retain the above copyright |
| 2014 | notice, this list of conditions and the following disclaimer. |
| 2015 | 2. Redistributions in binary form must reproduce the above copyright |
| 2016 | notice, this list of conditions and the following disclaimer in the |
| 2017 | documentation and/or other materials provided with the distribution. |
| 2018 | 3. Neither the name of the University nor the names of its contributors |
| 2019 | may be used to endorse or promote products derived from this software |
| 2020 | without specific prior written permission. |
| 2021 | |
| 2022 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2023 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2024 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2025 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2026 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2027 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2028 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2029 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2030 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2031 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2032 | SUCH DAMAGE. |
| 2033 | |
| 2034 | ------------------------------------------------------------------- |
| 2035 | |
| 2036 | Copyright (c) 1990 The Regents of the University of California. |
| 2037 | All rights reserved. |
| 2038 | |
| 2039 | This code is derived from software contributed to Berkeley by |
| 2040 | William Jolitz. |
| 2041 | |
| 2042 | Redistribution and use in source and binary forms, with or without |
| 2043 | modification, are permitted provided that the following conditions |
| 2044 | are met: |
| 2045 | 1. Redistributions of source code must retain the above copyright |
| 2046 | notice, this list of conditions and the following disclaimer. |
| 2047 | 2. Redistributions in binary form must reproduce the above copyright |
| 2048 | notice, this list of conditions and the following disclaimer in the |
| 2049 | documentation and/or other materials provided with the distribution. |
| 2050 | 3. Neither the name of the University nor the names of its contributors |
| 2051 | may be used to endorse or promote products derived from this software |
| 2052 | without specific prior written permission. |
| 2053 | |
| 2054 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2055 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2056 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2057 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2058 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2059 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2060 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2061 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2062 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2063 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2064 | SUCH DAMAGE. |
| 2065 | |
| 2066 | ------------------------------------------------------------------- |
| 2067 | |
| 2068 | Copyright (c) 1990, 1993 |
| 2069 | The Regents of the University of California. All rights reserved. |
| 2070 | |
| 2071 | Redistribution and use in source and binary forms, with or without |
| 2072 | modification, are permitted provided that the following conditions |
| 2073 | are met: |
| 2074 | 1. Redistributions of source code must retain the above copyright |
| 2075 | notice, this list of conditions and the following disclaimer. |
| 2076 | 2. Redistributions in binary form must reproduce the above copyright |
| 2077 | notice, this list of conditions and the following disclaimer in the |
| 2078 | documentation and/or other materials provided with the distribution. |
| 2079 | 3. Neither the name of the University nor the names of its contributors |
| 2080 | may be used to endorse or promote products derived from this software |
| 2081 | without specific prior written permission. |
| 2082 | |
| 2083 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2084 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2085 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2086 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2087 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2088 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2089 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2090 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2091 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2092 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2093 | SUCH DAMAGE. |
| 2094 | |
| 2095 | ------------------------------------------------------------------- |
| 2096 | |
| 2097 | Copyright (c) 1990, 1993 |
| 2098 | The Regents of the University of California. All rights reserved. |
| 2099 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2100 | This code is derived from software contributed to Berkeley by |
| 2101 | Chris Torek. |
| 2102 | |
| 2103 | Redistribution and use in source and binary forms, with or without |
| 2104 | modification, are permitted provided that the following conditions |
| 2105 | are met: |
| 2106 | 1. Redistributions of source code must retain the above copyright |
| 2107 | notice, this list of conditions and the following disclaimer. |
| 2108 | 2. Redistributions in binary form must reproduce the above copyright |
| 2109 | notice, this list of conditions and the following disclaimer in the |
| 2110 | documentation and/or other materials provided with the distribution. |
| 2111 | 3. Neither the name of the University nor the names of its contributors |
| 2112 | may be used to endorse or promote products derived from this software |
| 2113 | without specific prior written permission. |
| 2114 | |
| 2115 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2116 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2117 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2118 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2119 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2120 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2121 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2122 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2123 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2124 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2125 | SUCH DAMAGE. |
| 2126 | |
| 2127 | ------------------------------------------------------------------- |
| 2128 | |
| 2129 | Copyright (c) 1990, 1993 |
| 2130 | The Regents of the University of California. All rights reserved. |
| 2131 | |
| 2132 | This code is derived from software contributed to Berkeley by |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2133 | Donn Seeley at UUNET Technologies, Inc. |
| 2134 | |
| 2135 | Redistribution and use in source and binary forms, with or without |
| 2136 | modification, are permitted provided that the following conditions |
| 2137 | are met: |
| 2138 | 1. Redistributions of source code must retain the above copyright |
| 2139 | notice, this list of conditions and the following disclaimer. |
| 2140 | 2. Redistributions in binary form must reproduce the above copyright |
| 2141 | notice, this list of conditions and the following disclaimer in the |
| 2142 | documentation and/or other materials provided with the distribution. |
| 2143 | 3. Neither the name of the University nor the names of its contributors |
| 2144 | may be used to endorse or promote products derived from this software |
| 2145 | without specific prior written permission. |
| 2146 | |
| 2147 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2148 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2149 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2150 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2151 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2152 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2153 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2154 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2155 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2156 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2157 | SUCH DAMAGE. |
| 2158 | |
| 2159 | ------------------------------------------------------------------- |
| 2160 | |
| 2161 | Copyright (c) 1990, 1993 |
| 2162 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2163 | |
| 2164 | This code is derived from software contributed to Berkeley by |
| 2165 | Donn Seeley at UUNET Technologies, Inc. |
| 2166 | |
| 2167 | Redistribution and use in source and binary forms, with or without |
| 2168 | modification, are permitted provided that the following conditions |
| 2169 | are met: |
| 2170 | 1. Redistributions of source code must retain the above copyright |
| 2171 | notice, this list of conditions and the following disclaimer. |
| 2172 | 2. Redistributions in binary form must reproduce the above copyright |
| 2173 | notice, this list of conditions and the following disclaimer in the |
| 2174 | documentation and/or other materials provided with the distribution. |
| 2175 | 4. Neither the name of the University nor the names of its contributors |
| 2176 | may be used to endorse or promote products derived from this software |
| 2177 | without specific prior written permission. |
| 2178 | |
| 2179 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2180 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2181 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2182 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2183 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2184 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2185 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2186 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2187 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2188 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2189 | SUCH DAMAGE. |
| 2190 | |
| 2191 | ------------------------------------------------------------------- |
| 2192 | |
| 2193 | Copyright (c) 1990, 1993 |
| 2194 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2195 | (c) UNIX System Laboratories, Inc. |
| 2196 | All or some portions of this file are derived from material licensed |
| 2197 | to the University of California by American Telephone and Telegraph |
| 2198 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2199 | the permission of UNIX System Laboratories, Inc. |
| 2200 | |
| 2201 | Redistribution and use in source and binary forms, with or without |
| 2202 | modification, are permitted provided that the following conditions |
| 2203 | are met: |
| 2204 | 1. Redistributions of source code must retain the above copyright |
| 2205 | notice, this list of conditions and the following disclaimer. |
| 2206 | 2. Redistributions in binary form must reproduce the above copyright |
| 2207 | notice, this list of conditions and the following disclaimer in the |
| 2208 | documentation and/or other materials provided with the distribution. |
| 2209 | 3. Neither the name of the University nor the names of its contributors |
| 2210 | may be used to endorse or promote products derived from this software |
| 2211 | without specific prior written permission. |
| 2212 | |
| 2213 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2214 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2215 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2216 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2217 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2218 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2219 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2220 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2221 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2222 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2223 | SUCH DAMAGE. |
| 2224 | |
| 2225 | ------------------------------------------------------------------- |
| 2226 | |
| 2227 | Copyright (c) 1990, 1993, 1994 |
| 2228 | The Regents of the University of California. All rights reserved. |
| 2229 | |
| 2230 | Redistribution and use in source and binary forms, with or without |
| 2231 | modification, are permitted provided that the following conditions |
| 2232 | are met: |
| 2233 | 1. Redistributions of source code must retain the above copyright |
| 2234 | notice, this list of conditions and the following disclaimer. |
| 2235 | 2. Redistributions in binary form must reproduce the above copyright |
| 2236 | notice, this list of conditions and the following disclaimer in the |
| 2237 | documentation and/or other materials provided with the distribution. |
| 2238 | 3. Neither the name of the University nor the names of its contributors |
| 2239 | may be used to endorse or promote products derived from this software |
| 2240 | without specific prior written permission. |
| 2241 | |
| 2242 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2243 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2244 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2245 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2246 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2247 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2248 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2249 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2250 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2251 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2252 | SUCH DAMAGE. |
| 2253 | |
| 2254 | ------------------------------------------------------------------- |
| 2255 | |
| 2256 | Copyright (c) 1990, 1993, 1994 |
| 2257 | The Regents of the University of California. All rights reserved. |
| 2258 | |
| 2259 | This code is derived from software contributed to Berkeley by |
| 2260 | Chris Torek. |
| 2261 | |
| 2262 | Redistribution and use in source and binary forms, with or without |
| 2263 | modification, are permitted provided that the following conditions |
| 2264 | are met: |
| 2265 | 1. Redistributions of source code must retain the above copyright |
| 2266 | notice, this list of conditions and the following disclaimer. |
| 2267 | 2. Redistributions in binary form must reproduce the above copyright |
| 2268 | notice, this list of conditions and the following disclaimer in the |
| 2269 | documentation and/or other materials provided with the distribution. |
| 2270 | 3. Neither the name of the University nor the names of its contributors |
| 2271 | may be used to endorse or promote products derived from this software |
| 2272 | without specific prior written permission. |
| 2273 | |
| 2274 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2275 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2276 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2277 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2278 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2279 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2280 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2281 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2282 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2283 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2284 | SUCH DAMAGE. |
| 2285 | |
| 2286 | ------------------------------------------------------------------- |
| 2287 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2288 | Copyright (c) 1991 The Regents of the University of California. |
| 2289 | All rights reserved. |
| 2290 | |
| 2291 | Redistribution and use in source and binary forms, with or without |
| 2292 | modification, are permitted provided that the following conditions |
| 2293 | are met: |
| 2294 | 1. Redistributions of source code must retain the above copyright |
| 2295 | notice, this list of conditions and the following disclaimer. |
| 2296 | 2. Redistributions in binary form must reproduce the above copyright |
| 2297 | notice, this list of conditions and the following disclaimer in the |
| 2298 | documentation and/or other materials provided with the distribution. |
| 2299 | 3. Neither the name of the University nor the names of its contributors |
| 2300 | may be used to endorse or promote products derived from this software |
| 2301 | without specific prior written permission. |
| 2302 | |
| 2303 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2304 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2305 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2306 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2307 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2308 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2309 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2310 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2311 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2312 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2313 | SUCH DAMAGE. |
| 2314 | |
| 2315 | ------------------------------------------------------------------- |
| 2316 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2317 | Copyright (c) 1991, 1993 |
| 2318 | The Regents of the University of California. All rights reserved. |
| 2319 | |
| 2320 | Redistribution and use in source and binary forms, with or without |
| 2321 | modification, are permitted provided that the following conditions |
| 2322 | are met: |
| 2323 | 1. Redistributions of source code must retain the above copyright |
| 2324 | notice, this list of conditions and the following disclaimer. |
| 2325 | 2. Redistributions in binary form must reproduce the above copyright |
| 2326 | notice, this list of conditions and the following disclaimer in the |
| 2327 | documentation and/or other materials provided with the distribution. |
| 2328 | 3. Neither the name of the University nor the names of its contributors |
| 2329 | may be used to endorse or promote products derived from this software |
| 2330 | without specific prior written permission. |
| 2331 | |
| 2332 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2333 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2334 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2335 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2336 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2337 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2338 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2339 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2340 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2341 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2342 | SUCH DAMAGE. |
| 2343 | |
| 2344 | ------------------------------------------------------------------- |
| 2345 | |
| 2346 | Copyright (c) 1991, 1993 |
| 2347 | The Regents of the University of California. All rights reserved. |
| 2348 | |
| 2349 | This code is derived from software contributed to Berkeley by |
| 2350 | Berkeley Software Design, Inc. |
| 2351 | |
| 2352 | Redistribution and use in source and binary forms, with or without |
| 2353 | modification, are permitted provided that the following conditions |
| 2354 | are met: |
| 2355 | 1. Redistributions of source code must retain the above copyright |
| 2356 | notice, this list of conditions and the following disclaimer. |
| 2357 | 2. Redistributions in binary form must reproduce the above copyright |
| 2358 | notice, this list of conditions and the following disclaimer in the |
| 2359 | documentation and/or other materials provided with the distribution. |
| 2360 | 3. Neither the name of the University nor the names of its contributors |
| 2361 | may be used to endorse or promote products derived from this software |
| 2362 | without specific prior written permission. |
| 2363 | |
| 2364 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2365 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2366 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2367 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2368 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2369 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2370 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2371 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2372 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2373 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2374 | SUCH DAMAGE. |
| 2375 | |
| 2376 | ------------------------------------------------------------------- |
| 2377 | |
| 2378 | Copyright (c) 1991, 1993 |
| 2379 | The Regents of the University of California. All rights reserved. |
| 2380 | (c) UNIX System Laboratories, Inc. |
| 2381 | All or some portions of this file are derived from material licensed |
| 2382 | to the University of California by American Telephone and Telegraph |
| 2383 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2384 | the permission of UNIX System Laboratories, Inc. |
| 2385 | |
| 2386 | This code is derived from software contributed to Berkeley by |
| 2387 | Hugh Smith at The University of Guelph. |
| 2388 | |
| 2389 | Redistribution and use in source and binary forms, with or without |
| 2390 | modification, are permitted provided that the following conditions |
| 2391 | are met: |
| 2392 | 1. Redistributions of source code must retain the above copyright |
| 2393 | notice, this list of conditions and the following disclaimer. |
| 2394 | 2. Redistributions in binary form must reproduce the above copyright |
| 2395 | notice, this list of conditions and the following disclaimer in the |
| 2396 | documentation and/or other materials provided with the distribution. |
| 2397 | 3. Neither the name of the University nor the names of its contributors |
| 2398 | may be used to endorse or promote products derived from this software |
| 2399 | without specific prior written permission. |
| 2400 | |
| 2401 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2402 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2403 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2404 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2405 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2406 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2407 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2408 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2409 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2410 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2411 | SUCH DAMAGE. |
| 2412 | |
| 2413 | ------------------------------------------------------------------- |
| 2414 | |
| 2415 | Copyright (c) 1991, 1993, 1995, |
| 2416 | The Regents of the University of California. All rights reserved. |
| 2417 | |
| 2418 | This code is derived from software contributed to Berkeley by |
| 2419 | Havard Eidnes. |
| 2420 | |
| 2421 | Redistribution and use in source and binary forms, with or without |
| 2422 | modification, are permitted provided that the following conditions |
| 2423 | are met: |
| 2424 | 1. Redistributions of source code must retain the above copyright |
| 2425 | notice, this list of conditions and the following disclaimer. |
| 2426 | 2. Redistributions in binary form must reproduce the above copyright |
| 2427 | notice, this list of conditions and the following disclaimer in the |
| 2428 | documentation and/or other materials provided with the distribution. |
| 2429 | 3. Neither the name of the University nor the names of its contributors |
| 2430 | may be used to endorse or promote products derived from this software |
| 2431 | without specific prior written permission. |
| 2432 | |
| 2433 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2434 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2435 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2436 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2437 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2438 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2439 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2440 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2441 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2442 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2443 | SUCH DAMAGE. |
| 2444 | |
| 2445 | ------------------------------------------------------------------- |
| 2446 | |
| 2447 | Copyright (c) 1992 Henry Spencer. |
| 2448 | Copyright (c) 1992, 1993 |
| 2449 | The Regents of the University of California. All rights reserved. |
| 2450 | |
| 2451 | This code is derived from software contributed to Berkeley by |
| 2452 | Henry Spencer of the University of Toronto. |
| 2453 | |
| 2454 | Redistribution and use in source and binary forms, with or without |
| 2455 | modification, are permitted provided that the following conditions |
| 2456 | are met: |
| 2457 | 1. Redistributions of source code must retain the above copyright |
| 2458 | notice, this list of conditions and the following disclaimer. |
| 2459 | 2. Redistributions in binary form must reproduce the above copyright |
| 2460 | notice, this list of conditions and the following disclaimer in the |
| 2461 | documentation and/or other materials provided with the distribution. |
| 2462 | 3. Neither the name of the University nor the names of its contributors |
| 2463 | may be used to endorse or promote products derived from this software |
| 2464 | without specific prior written permission. |
| 2465 | |
| 2466 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2467 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2468 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2469 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2470 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2471 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2472 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2473 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2474 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2475 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2476 | SUCH DAMAGE. |
| 2477 | |
| 2478 | ------------------------------------------------------------------- |
| 2479 | |
| 2480 | Copyright (c) 1992 The Regents of the University of California. |
| 2481 | All rights reserved. |
| 2482 | |
| 2483 | Redistribution and use in source and binary forms, with or without |
| 2484 | modification, are permitted provided that the following conditions |
| 2485 | are met: |
| 2486 | 1. Redistributions of source code must retain the above copyright |
| 2487 | notice, this list of conditions and the following disclaimer. |
| 2488 | 2. Redistributions in binary form must reproduce the above copyright |
| 2489 | notice, this list of conditions and the following disclaimer in the |
| 2490 | documentation and/or other materials provided with the distribution. |
| 2491 | 3. Neither the name of the University nor the names of its contributors |
| 2492 | may be used to endorse or promote products derived from this software |
| 2493 | without specific prior written permission. |
| 2494 | |
| 2495 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2496 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2497 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2498 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2499 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2500 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2501 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2502 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2503 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2504 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2505 | SUCH DAMAGE. |
| 2506 | |
| 2507 | ------------------------------------------------------------------- |
| 2508 | |
| 2509 | Copyright (c) 1992, 1993 |
| 2510 | The Regents of the University of California. All rights reserved. |
| 2511 | |
| 2512 | Redistribution and use in source and binary forms, with or without |
| 2513 | modification, are permitted provided that the following conditions |
| 2514 | are met: |
| 2515 | 1. Redistributions of source code must retain the above copyright |
| 2516 | notice, this list of conditions and the following disclaimer. |
| 2517 | 2. Redistributions in binary form must reproduce the above copyright |
| 2518 | notice, this list of conditions and the following disclaimer in the |
| 2519 | documentation and/or other materials provided with the distribution. |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 2520 | 3. All advertising materials mentioning features or use of this software |
| 2521 | must display the following acknowledgement: |
| 2522 | This product includes software developed by the University of |
| 2523 | California, Berkeley and its contributors. |
| 2524 | 4. Neither the name of the University nor the names of its contributors |
| 2525 | may be used to endorse or promote products derived from this software |
| 2526 | without specific prior written permission. |
| 2527 | |
| 2528 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2529 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2530 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2531 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2532 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2533 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2534 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2535 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2536 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2537 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2538 | SUCH DAMAGE. |
| 2539 | |
| 2540 | ------------------------------------------------------------------- |
| 2541 | |
| 2542 | Copyright (c) 1992, 1993 |
| 2543 | The Regents of the University of California. All rights reserved. |
| 2544 | |
| 2545 | Redistribution and use in source and binary forms, with or without |
| 2546 | modification, are permitted provided that the following conditions |
| 2547 | are met: |
| 2548 | 1. Redistributions of source code must retain the above copyright |
| 2549 | notice, this list of conditions and the following disclaimer. |
| 2550 | 2. Redistributions in binary form must reproduce the above copyright |
| 2551 | notice, this list of conditions and the following disclaimer in the |
| 2552 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2553 | 3. Neither the name of the University nor the names of its contributors |
| 2554 | may be used to endorse or promote products derived from this software |
| 2555 | without specific prior written permission. |
| 2556 | |
| 2557 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2558 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2559 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2560 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2561 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2562 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2563 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2564 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2565 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2566 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2567 | SUCH DAMAGE. |
| 2568 | |
| 2569 | ------------------------------------------------------------------- |
| 2570 | |
| 2571 | Copyright (c) 1992, 1993 |
| 2572 | The Regents of the University of California. All rights reserved. |
| 2573 | |
| 2574 | This code is derived from software contributed to Berkeley by |
| 2575 | Ralph Campbell. |
| 2576 | |
| 2577 | Redistribution and use in source and binary forms, with or without |
| 2578 | modification, are permitted provided that the following conditions |
| 2579 | are met: |
| 2580 | 1. Redistributions of source code must retain the above copyright |
| 2581 | notice, this list of conditions and the following disclaimer. |
| 2582 | 2. Redistributions in binary form must reproduce the above copyright |
| 2583 | notice, this list of conditions and the following disclaimer in the |
| 2584 | documentation and/or other materials provided with the distribution. |
| 2585 | 3. Neither the name of the University nor the names of its contributors |
| 2586 | may be used to endorse or promote products derived from this software |
| 2587 | without specific prior written permission. |
| 2588 | |
| 2589 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2590 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2591 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2592 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2593 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2594 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2595 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2596 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2597 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2598 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2599 | SUCH DAMAGE. |
| 2600 | |
| 2601 | ------------------------------------------------------------------- |
| 2602 | |
| 2603 | Copyright (c) 1992, 1993 |
| 2604 | The Regents of the University of California. All rights reserved. |
| 2605 | |
| 2606 | This code is derived from software contributed to Berkeley by |
| 2607 | Ralph Campbell. This file is derived from the MIPS RISC |
| 2608 | Architecture book by Gerry Kane. |
| 2609 | |
| 2610 | Redistribution and use in source and binary forms, with or without |
| 2611 | modification, are permitted provided that the following conditions |
| 2612 | are met: |
| 2613 | 1. Redistributions of source code must retain the above copyright |
| 2614 | notice, this list of conditions and the following disclaimer. |
| 2615 | 2. Redistributions in binary form must reproduce the above copyright |
| 2616 | notice, this list of conditions and the following disclaimer in the |
| 2617 | documentation and/or other materials provided with the distribution. |
| 2618 | 3. Neither the name of the University nor the names of its contributors |
| 2619 | may be used to endorse or promote products derived from this software |
| 2620 | without specific prior written permission. |
| 2621 | |
| 2622 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2623 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2624 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2625 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2626 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2627 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2628 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2629 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2630 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2631 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2632 | SUCH DAMAGE. |
| 2633 | |
| 2634 | ------------------------------------------------------------------- |
| 2635 | |
| 2636 | Copyright (c) 1992, 1993 |
| 2637 | The Regents of the University of California. All rights reserved. |
| 2638 | |
| 2639 | This software was developed by the Computer Systems Engineering group |
| 2640 | at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and |
| 2641 | contributed to Berkeley. |
| 2642 | |
| 2643 | All advertising materials mentioning features or use of this software |
| 2644 | must display the following acknowledgement: |
| 2645 | This product includes software developed by the University of |
| 2646 | California, Lawrence Berkeley Laboratory. |
| 2647 | |
| 2648 | Redistribution and use in source and binary forms, with or without |
| 2649 | modification, are permitted provided that the following conditions |
| 2650 | are met: |
| 2651 | 1. Redistributions of source code must retain the above copyright |
| 2652 | notice, this list of conditions and the following disclaimer. |
| 2653 | 2. Redistributions in binary form must reproduce the above copyright |
| 2654 | notice, this list of conditions and the following disclaimer in the |
| 2655 | documentation and/or other materials provided with the distribution. |
| 2656 | 3. All advertising materials mentioning features or use of this software |
| 2657 | must display the following acknowledgement: |
| 2658 | This product includes software developed by the University of |
| 2659 | California, Berkeley and its contributors. |
| 2660 | 4. Neither the name of the University nor the names of its contributors |
| 2661 | may be used to endorse or promote products derived from this software |
| 2662 | without specific prior written permission. |
| 2663 | |
| 2664 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2665 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2666 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2667 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2668 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2669 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2670 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2671 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2672 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2673 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2674 | SUCH DAMAGE. |
| 2675 | |
| 2676 | ------------------------------------------------------------------- |
| 2677 | |
| 2678 | Copyright (c) 1992, 1993 |
| 2679 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2680 | (c) UNIX System Laboratories, Inc. |
| 2681 | All or some portions of this file are derived from material licensed |
| 2682 | to the University of California by American Telephone and Telegraph |
| 2683 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2684 | the permission of UNIX System Laboratories, Inc. |
| 2685 | |
| 2686 | Redistribution and use in source and binary forms, with or without |
| 2687 | modification, are permitted provided that the following conditions |
| 2688 | are met: |
| 2689 | 1. Redistributions of source code must retain the above copyright |
| 2690 | notice, this list of conditions and the following disclaimer. |
| 2691 | 2. Redistributions in binary form must reproduce the above copyright |
| 2692 | notice, this list of conditions and the following disclaimer in the |
| 2693 | documentation and/or other materials provided with the distribution. |
| 2694 | 3. Neither the name of the University nor the names of its contributors |
| 2695 | may be used to endorse or promote products derived from this software |
| 2696 | without specific prior written permission. |
| 2697 | |
| 2698 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2699 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2700 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2701 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2702 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2703 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2704 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2705 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2706 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2707 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2708 | SUCH DAMAGE. |
| 2709 | |
| 2710 | ------------------------------------------------------------------- |
| 2711 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2712 | Copyright (c) 1992, 1993, 1994 |
| 2713 | The Regents of the University of California. All rights reserved. |
| 2714 | |
| 2715 | This code is derived from software contributed to Berkeley by |
| 2716 | Henry Spencer. |
| 2717 | |
| 2718 | Redistribution and use in source and binary forms, with or without |
| 2719 | modification, are permitted provided that the following conditions |
| 2720 | are met: |
| 2721 | 1. Redistributions of source code must retain the above copyright |
| 2722 | notice, this list of conditions and the following disclaimer. |
| 2723 | 2. Redistributions in binary form must reproduce the above copyright |
| 2724 | notice, this list of conditions and the following disclaimer in the |
| 2725 | documentation and/or other materials provided with the distribution. |
| 2726 | 3. Neither the name of the University nor the names of its contributors |
| 2727 | may be used to endorse or promote products derived from this software |
| 2728 | without specific prior written permission. |
| 2729 | |
| 2730 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2731 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2732 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2733 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2734 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2735 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2736 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2737 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2738 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2739 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2740 | SUCH DAMAGE. |
| 2741 | |
| 2742 | ------------------------------------------------------------------- |
| 2743 | |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 2744 | Copyright (c) 1992, 1993, 1994 Henry Spencer. |
| 2745 | |
| 2746 | This code is derived from software contributed to Berkeley by |
| 2747 | Henry Spencer. |
| 2748 | |
| 2749 | Redistribution and use in source and binary forms, with or without |
| 2750 | modification, are permitted provided that the following conditions |
| 2751 | are met: |
| 2752 | 1. Redistributions of source code must retain the above copyright |
| 2753 | notice, this list of conditions and the following disclaimer. |
| 2754 | 2. Redistributions in binary form must reproduce the above copyright |
| 2755 | notice, this list of conditions and the following disclaimer in the |
| 2756 | documentation and/or other materials provided with the distribution. |
| 2757 | 3. All advertising materials mentioning features or use of this software |
| 2758 | must display the following acknowledgement: |
| 2759 | This product includes software developed by the University of |
| 2760 | California, Berkeley and its contributors. |
| 2761 | 4. Neither the name of the University nor the names of its contributors |
| 2762 | may be used to endorse or promote products derived from this software |
| 2763 | without specific prior written permission. |
| 2764 | |
| 2765 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2766 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2767 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2768 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2769 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2770 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2771 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2772 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2773 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2774 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2775 | SUCH DAMAGE. |
| 2776 | |
| 2777 | ------------------------------------------------------------------- |
| 2778 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2779 | Copyright (c) 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2780 | The Regents of the University of California. All rights reserved. |
| 2781 | |
| 2782 | Redistribution and use in source and binary forms, with or without |
| 2783 | modification, are permitted provided that the following conditions |
| 2784 | are met: |
| 2785 | 1. Redistributions of source code must retain the above copyright |
| 2786 | notice, this list of conditions and the following disclaimer. |
| 2787 | 2. Redistributions in binary form must reproduce the above copyright |
| 2788 | notice, this list of conditions and the following disclaimer in the |
| 2789 | documentation and/or other materials provided with the distribution. |
| 2790 | 3. Neither the name of the University nor the names of its contributors |
| 2791 | may be used to endorse or promote products derived from this software |
| 2792 | without specific prior written permission. |
| 2793 | |
| 2794 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2795 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2796 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2797 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2798 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2799 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2800 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2801 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2802 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2803 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2804 | SUCH DAMAGE. |
| 2805 | |
| 2806 | ------------------------------------------------------------------- |
| 2807 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2808 | Copyright (c) 1993 Martin Birgmeier |
| 2809 | All rights reserved. |
| 2810 | |
| 2811 | You may redistribute unmodified or modified versions of this source |
| 2812 | code provided that the above copyright notice and this and the |
| 2813 | following conditions are retained. |
| 2814 | |
| 2815 | This software is provided ``as is'', and comes with no warranties |
| 2816 | of any kind. I shall in no event be liable for anything that happens |
| 2817 | to anyone/anything when using this software. |
| 2818 | |
| 2819 | ------------------------------------------------------------------- |
| 2820 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2821 | Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2822 | All rights reserved. |
| 2823 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2824 | Redistribution and use in source and binary forms, with or without |
| 2825 | modification, are permitted provided that the following conditions |
| 2826 | are met: |
| 2827 | 1. Redistributions of source code must retain the above copyright |
| 2828 | notice, this list of conditions and the following disclaimer. |
| 2829 | 2. Redistributions in binary form must reproduce the above copyright |
| 2830 | notice, this list of conditions and the following disclaimer in the |
| 2831 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2832 | 3. The name of the author may not be used to endorse or promote products |
| 2833 | derived from this software without specific prior written permission. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2834 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2835 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2836 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2837 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2838 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2839 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2840 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2841 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2842 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2843 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2844 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2845 | |
| 2846 | ------------------------------------------------------------------- |
| 2847 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2848 | Copyright (c) 1996 by Internet Software Consortium. |
| 2849 | |
| 2850 | Permission to use, copy, modify, and distribute this software for any |
| 2851 | purpose with or without fee is hereby granted, provided that the above |
| 2852 | copyright notice and this permission notice appear in all copies. |
| 2853 | |
| 2854 | THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS |
| 2855 | ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES |
| 2856 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE |
| 2857 | CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 2858 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 2859 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 2860 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 2861 | SOFTWARE. |
| 2862 | |
| 2863 | ------------------------------------------------------------------- |
| 2864 | |
| 2865 | Copyright (c) 1996, David Mazieres <dm@uun.org> |
| 2866 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 2867 | Copyright (c) 2013, Markus Friedl <markus@openbsd.org> |
| 2868 | |
| 2869 | Permission to use, copy, modify, and distribute this software for any |
| 2870 | purpose with or without fee is hereby granted, provided that the above |
| 2871 | copyright notice and this permission notice appear in all copies. |
| 2872 | |
| 2873 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2874 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2875 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2876 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2877 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2878 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2879 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2880 | |
| 2881 | ------------------------------------------------------------------- |
| 2882 | |
| 2883 | Copyright (c) 1996-1998, 2008 Theo de Raadt |
| 2884 | Copyright (c) 1997, 2008-2009 Todd C. Miller |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2885 | |
| 2886 | Permission to use, copy, modify, and distribute this software for any |
| 2887 | purpose with or without fee is hereby granted, provided that the above |
| 2888 | copyright notice and this permission notice appear in all copies. |
| 2889 | |
| 2890 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2891 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2892 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2893 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2894 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2895 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2896 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2897 | |
| 2898 | ------------------------------------------------------------------- |
| 2899 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2900 | Copyright (c) 1997 Mark Brinicombe |
Elliott Hughes | dfb74c5 | 2016-10-24 12:53:17 -0700 | [diff] [blame] | 2901 | Copyright (C) 2010 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2902 | All rights reserved. |
| 2903 | |
| 2904 | Redistribution and use in source and binary forms, with or without |
| 2905 | modification, are permitted provided that the following conditions |
| 2906 | are met: |
| 2907 | 1. Redistributions of source code must retain the above copyright |
| 2908 | notice, this list of conditions and the following disclaimer. |
| 2909 | 2. Redistributions in binary form must reproduce the above copyright |
| 2910 | notice, this list of conditions and the following disclaimer in the |
| 2911 | documentation and/or other materials provided with the distribution. |
| 2912 | 3. All advertising materials mentioning features or use of this software |
| 2913 | must display the following acknowledgement: |
| 2914 | This product includes software developed by Mark Brinicombe |
| 2915 | 4. Neither the name of the University nor the names of its contributors |
| 2916 | may be used to endorse or promote products derived from this software |
| 2917 | without specific prior written permission. |
| 2918 | |
| 2919 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 2920 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2921 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2922 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 2923 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2924 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2925 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2926 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2927 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2928 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2929 | SUCH DAMAGE. |
| 2930 | |
| 2931 | ------------------------------------------------------------------- |
| 2932 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2933 | Copyright (c) 1997 Niklas Hallqvist. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2934 | |
| 2935 | Redistribution and use in source and binary forms, with or without |
| 2936 | modification, are permitted provided that the following conditions |
| 2937 | are met: |
| 2938 | 1. Redistributions of source code must retain the above copyright |
| 2939 | notice, this list of conditions and the following disclaimer. |
| 2940 | 2. Redistributions in binary form must reproduce the above copyright |
| 2941 | notice, this list of conditions and the following disclaimer in the |
| 2942 | documentation and/or other materials provided with the distribution. |
| 2943 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2944 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2945 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2946 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2947 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 2948 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 2949 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 2950 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 2951 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 2952 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 2953 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2954 | |
| 2955 | ------------------------------------------------------------------- |
| 2956 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2957 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2958 | |
| 2959 | Permission to use, copy, modify, and distribute this software for any |
| 2960 | purpose with or without fee is hereby granted, provided that the above |
| 2961 | copyright notice and this permission notice appear in all copies. |
| 2962 | |
| 2963 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2964 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2965 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2966 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2967 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2968 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2969 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2970 | |
| 2971 | ------------------------------------------------------------------- |
| 2972 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2973 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2974 | All rights reserved. |
| 2975 | |
| 2976 | Redistribution and use in source and binary forms, with or without |
| 2977 | modification, are permitted provided that the following conditions |
| 2978 | are met: |
| 2979 | 1. Redistributions of source code must retain the above copyright |
| 2980 | notice, this list of conditions and the following disclaimer. |
| 2981 | 2. Redistributions in binary form must reproduce the above copyright |
| 2982 | notice, this list of conditions and the following disclaimer in the |
| 2983 | documentation and/or other materials provided with the distribution. |
| 2984 | 3. The name of the author may not be used to endorse or promote products |
| 2985 | derived from this software without specific prior written permission. |
| 2986 | |
| 2987 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 2988 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 2989 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 2990 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 2991 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2992 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2993 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2994 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2995 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2996 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2997 | |
| 2998 | ------------------------------------------------------------------- |
| 2999 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3000 | Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3001 | All rights reserved. |
| 3002 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3003 | This code was contributed to The NetBSD Foundation by Klaus Klein. |
| 3004 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3005 | Redistribution and use in source and binary forms, with or without |
| 3006 | modification, are permitted provided that the following conditions |
| 3007 | are met: |
| 3008 | 1. Redistributions of source code must retain the above copyright |
| 3009 | notice, this list of conditions and the following disclaimer. |
| 3010 | 2. Redistributions in binary form must reproduce the above copyright |
| 3011 | notice, this list of conditions and the following disclaimer in the |
| 3012 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3013 | 3. All advertising materials mentioning features or use of this software |
| 3014 | must display the following acknowledgement: |
| 3015 | This product includes software developed by the NetBSD |
| 3016 | Foundation, Inc. and its contributors. |
| 3017 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3018 | contributors may be used to endorse or promote products derived |
| 3019 | from this software without specific prior written permission. |
| 3020 | |
| 3021 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3022 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3023 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3024 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3025 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3026 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3027 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3028 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3029 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3030 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3031 | POSSIBILITY OF SUCH DAMAGE. |
| 3032 | |
| 3033 | ------------------------------------------------------------------- |
| 3034 | |
| 3035 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 3036 | All rights reserved. |
| 3037 | |
| 3038 | This code is derived from software contributed to The NetBSD Foundation |
| 3039 | by Luke Mewburn. |
| 3040 | |
| 3041 | Redistribution and use in source and binary forms, with or without |
| 3042 | modification, are permitted provided that the following conditions |
| 3043 | are met: |
| 3044 | 1. Redistributions of source code must retain the above copyright |
| 3045 | notice, this list of conditions and the following disclaimer. |
| 3046 | 2. Redistributions in binary form must reproduce the above copyright |
| 3047 | notice, this list of conditions and the following disclaimer in the |
| 3048 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3049 | |
| 3050 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3051 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3052 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3053 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3054 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3055 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3056 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3057 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3058 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3059 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3060 | POSSIBILITY OF SUCH DAMAGE. |
| 3061 | |
| 3062 | ------------------------------------------------------------------- |
| 3063 | |
| 3064 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 3065 | All rights reserved. |
| 3066 | |
| 3067 | This code is derived from software contributed to The NetBSD Foundation |
| 3068 | by Luke Mewburn; and by Jason R. Thorpe. |
| 3069 | |
| 3070 | Redistribution and use in source and binary forms, with or without |
| 3071 | modification, are permitted provided that the following conditions |
| 3072 | are met: |
| 3073 | 1. Redistributions of source code must retain the above copyright |
| 3074 | notice, this list of conditions and the following disclaimer. |
| 3075 | 2. Redistributions in binary form must reproduce the above copyright |
| 3076 | notice, this list of conditions and the following disclaimer in the |
| 3077 | documentation and/or other materials provided with the distribution. |
| 3078 | 3. All advertising materials mentioning features or use of this software |
| 3079 | must display the following acknowledgement: |
| 3080 | This product includes software developed by the NetBSD |
| 3081 | Foundation, Inc. and its contributors. |
| 3082 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3083 | contributors may be used to endorse or promote products derived |
| 3084 | from this software without specific prior written permission. |
| 3085 | |
| 3086 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3087 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3088 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3089 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3090 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3091 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3092 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3093 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3094 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3095 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3096 | POSSIBILITY OF SUCH DAMAGE. |
| 3097 | |
| 3098 | ------------------------------------------------------------------- |
| 3099 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3100 | Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3101 | |
| 3102 | Permission to use, copy, modify, and distribute this software for any |
| 3103 | purpose with or without fee is hereby granted, provided that the above |
| 3104 | copyright notice and this permission notice appear in all copies. |
| 3105 | |
| 3106 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3107 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3108 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3109 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3110 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3111 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3112 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3113 | |
| 3114 | ------------------------------------------------------------------- |
| 3115 | |
| 3116 | Copyright (c) 1998 Softweyr LLC. All rights reserved. |
| 3117 | |
| 3118 | strtok_r, from Berkeley strtok |
| 3119 | Oct 13, 1998 by Wes Peters <wes@softweyr.com> |
| 3120 | |
| 3121 | Copyright (c) 1988, 1993 |
| 3122 | The Regents of the University of California. All rights reserved. |
| 3123 | |
| 3124 | Redistribution and use in source and binary forms, with or without |
| 3125 | modification, are permitted provided that the following conditions |
| 3126 | are met: |
| 3127 | 1. Redistributions of source code must retain the above copyright |
| 3128 | notices, this list of conditions and the following disclaimer. |
| 3129 | 2. Redistributions in binary form must reproduce the above copyright |
| 3130 | notices, this list of conditions and the following disclaimer in the |
| 3131 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 3132 | 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] | 3133 | may be used to endorse or promote products derived from this software |
| 3134 | without specific prior written permission. |
| 3135 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3136 | THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS |
| 3137 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3138 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 3139 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE |
| 3140 | REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 3141 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 3142 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 3143 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 3144 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 3145 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 3146 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3147 | |
| 3148 | ------------------------------------------------------------------- |
| 3149 | |
| 3150 | Copyright (c) 1998 The NetBSD Foundation, Inc. |
| 3151 | All rights reserved. |
| 3152 | |
| 3153 | This code is derived from software contributed to The NetBSD Foundation |
| 3154 | by Klaus Klein. |
| 3155 | |
| 3156 | Redistribution and use in source and binary forms, with or without |
| 3157 | modification, are permitted provided that the following conditions |
| 3158 | are met: |
| 3159 | 1. Redistributions of source code must retain the above copyright |
| 3160 | notice, this list of conditions and the following disclaimer. |
| 3161 | 2. Redistributions in binary form must reproduce the above copyright |
| 3162 | notice, this list of conditions and the following disclaimer in the |
| 3163 | documentation and/or other materials provided with the distribution. |
| 3164 | 3. All advertising materials mentioning features or use of this software |
| 3165 | must display the following acknowledgement: |
| 3166 | This product includes software developed by the NetBSD |
| 3167 | Foundation, Inc. and its contributors. |
| 3168 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3169 | contributors may be used to endorse or promote products derived |
| 3170 | from this software without specific prior written permission. |
| 3171 | |
| 3172 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3173 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3174 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3175 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3176 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3177 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3178 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3179 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3180 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3181 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3182 | POSSIBILITY OF SUCH DAMAGE. |
| 3183 | |
| 3184 | ------------------------------------------------------------------- |
| 3185 | |
| 3186 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3187 | All rights reserved. |
| 3188 | |
| 3189 | Redistribution and use in source and binary forms, with or without |
| 3190 | modification, are permitted provided that the following conditions |
| 3191 | are met: |
| 3192 | 1. Redistributions of source code must retain the above copyright |
| 3193 | notice, this list of conditions and the following disclaimer. |
| 3194 | 2. Redistributions in binary form must reproduce the above copyright |
| 3195 | notice, this list of conditions and the following disclaimer in the |
| 3196 | documentation and/or other materials provided with the distribution. |
| 3197 | 3. The name of the author may not be used to endorse or promote products |
| 3198 | derived from this software without specific prior written permission. |
| 3199 | |
| 3200 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 3201 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 3202 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 3203 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 3204 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 3205 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 3206 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 3207 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 3208 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 3209 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3210 | |
| 3211 | ------------------------------------------------------------------- |
| 3212 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 3213 | Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3214 | |
| 3215 | Permission to use, copy, modify, and distribute this software for any |
| 3216 | purpose with or without fee is hereby granted, provided that the above |
| 3217 | copyright notice and this permission notice appear in all copies. |
| 3218 | |
| 3219 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3220 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3221 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3222 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3223 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3224 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3225 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3226 | |
| 3227 | ------------------------------------------------------------------- |
| 3228 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3229 | Copyright (c) 1999 |
| 3230 | David E. O'Brien |
| 3231 | Copyright (c) 1988, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3232 | The Regents of the University of California. All rights reserved. |
| 3233 | |
| 3234 | Redistribution and use in source and binary forms, with or without |
| 3235 | modification, are permitted provided that the following conditions |
| 3236 | are met: |
| 3237 | 1. Redistributions of source code must retain the above copyright |
| 3238 | notice, this list of conditions and the following disclaimer. |
| 3239 | 2. Redistributions in binary form must reproduce the above copyright |
| 3240 | notice, this list of conditions and the following disclaimer in the |
| 3241 | documentation and/or other materials provided with the distribution. |
| 3242 | 3. Neither the name of the University nor the names of its contributors |
| 3243 | may be used to endorse or promote products derived from this software |
| 3244 | without specific prior written permission. |
| 3245 | |
| 3246 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 3247 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3248 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3249 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 3250 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3251 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3252 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3253 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3254 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3255 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3256 | SUCH DAMAGE. |
| 3257 | |
| 3258 | ------------------------------------------------------------------- |
| 3259 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3260 | Copyright (c) 2000 Ben Harris. |
| 3261 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
| 3262 | All rights reserved. |
| 3263 | |
| 3264 | Redistribution and use in source and binary forms, with or without |
| 3265 | modification, are permitted provided that the following conditions |
| 3266 | are met: |
| 3267 | 1. Redistributions of source code must retain the above copyright |
| 3268 | notice, this list of conditions and the following disclaimer. |
| 3269 | 2. Redistributions in binary form must reproduce the above copyright |
| 3270 | notice, this list of conditions and the following disclaimer in the |
| 3271 | documentation and/or other materials provided with the distribution. |
| 3272 | 3. Neither the name of the project nor the names of its contributors |
| 3273 | may be used to endorse or promote products derived from this software |
| 3274 | without specific prior written permission. |
| 3275 | |
| 3276 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
| 3277 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3278 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3279 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
| 3280 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3281 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3282 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3283 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3284 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3285 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3286 | SUCH DAMAGE. |
| 3287 | |
| 3288 | ------------------------------------------------------------------- |
| 3289 | |
| 3290 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 3291 | All rights reserved. |
| 3292 | |
| 3293 | This code is derived from software contributed to The NetBSD Foundation |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3294 | by Dieter Baron and Thomas Klausner. |
| 3295 | |
| 3296 | Redistribution and use in source and binary forms, with or without |
| 3297 | modification, are permitted provided that the following conditions |
| 3298 | are met: |
| 3299 | 1. Redistributions of source code must retain the above copyright |
| 3300 | notice, this list of conditions and the following disclaimer. |
| 3301 | 2. Redistributions in binary form must reproduce the above copyright |
| 3302 | notice, this list of conditions and the following disclaimer in the |
| 3303 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3304 | |
| 3305 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3306 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3307 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3308 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3309 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3310 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3311 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3312 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3313 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3314 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3315 | POSSIBILITY OF SUCH DAMAGE. |
| 3316 | |
| 3317 | ------------------------------------------------------------------- |
| 3318 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3319 | Copyright (c) 2001 Wasabi Systems, Inc. |
| 3320 | All rights reserved. |
| 3321 | |
| 3322 | Written by Frank van der Linden for Wasabi Systems, Inc. |
| 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. |
| 3332 | 3. All advertising materials mentioning features or use of this software |
| 3333 | must display the following acknowledgement: |
| 3334 | This product includes software developed for the NetBSD Project by |
| 3335 | Wasabi Systems, Inc. |
| 3336 | 4. The name of Wasabi Systems, Inc. may not be used to endorse |
| 3337 | or promote products derived from this software without specific prior |
| 3338 | written permission. |
| 3339 | |
| 3340 | THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND |
| 3341 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3342 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3343 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC |
| 3344 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3345 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3346 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3347 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3348 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3349 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3350 | POSSIBILITY OF SUCH DAMAGE. |
| 3351 | |
| 3352 | ------------------------------------------------------------------- |
| 3353 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3354 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3355 | |
| 3356 | Redistribution and use in source and binary forms, with or without |
| 3357 | modification, are permitted provided that the following conditions |
| 3358 | are met: |
| 3359 | 1. Redistributions of source code must retain the above copyright |
| 3360 | notice, this list of conditions and the following disclaimer. |
| 3361 | 2. Redistributions in binary form must reproduce the above copyright |
| 3362 | notice, this list of conditions and the following disclaimer in the |
| 3363 | documentation and/or other materials provided with the distribution. |
| 3364 | |
| 3365 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3366 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3367 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3368 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3369 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3370 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3371 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3372 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3373 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3374 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3375 | SUCH DAMAGE. |
| 3376 | |
| 3377 | ------------------------------------------------------------------- |
| 3378 | |
| 3379 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3380 | |
| 3381 | Redistribution and use in source and binary forms, with or without |
| 3382 | modification, are permitted provided that the following conditions |
| 3383 | are met: |
| 3384 | 1. Redistributions of source code must retain the above copyright |
| 3385 | notice, this list of conditions and the following disclaimer. |
| 3386 | 2. Redistributions in binary form must reproduce the above copyright |
| 3387 | notice, this list of conditions and the following disclaimer in the |
| 3388 | documentation and/or other materials provided with the distribution. |
| 3389 | 3. Neither the name of Opsycon AB nor the names of its contributors |
| 3390 | may be used to endorse or promote products derived from this software |
| 3391 | without specific prior written permission. |
| 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 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3407 | Copyright (c) 2001-2011 The FreeBSD Project. |
| 3408 | All rights reserved. |
| 3409 | |
| 3410 | Redistribution and use in source and binary forms, with or without |
| 3411 | modification, are permitted provided that the following conditions |
| 3412 | are met: |
| 3413 | 1. Redistributions of source code must retain the above copyright |
| 3414 | notice, this list of conditions and the following disclaimer. |
| 3415 | 2. Redistributions in binary form must reproduce the above copyright |
| 3416 | notice, this list of conditions and the following disclaimer in the |
| 3417 | documentation and/or other materials provided with the distribution. |
| 3418 | |
| 3419 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3420 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3421 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3422 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3423 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3424 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3425 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3426 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3427 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3428 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3429 | SUCH DAMAGE. |
| 3430 | |
| 3431 | ------------------------------------------------------------------- |
| 3432 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3433 | Copyright (c) 2002 Daniel Hartmeier |
| 3434 | All rights reserved. |
| 3435 | |
| 3436 | Redistribution and use in source and binary forms, with or without |
| 3437 | modification, are permitted provided that the following conditions |
| 3438 | are met: |
| 3439 | |
| 3440 | - Redistributions of source code must retain the above copyright |
| 3441 | notice, this list of conditions and the following disclaimer. |
| 3442 | - Redistributions in binary form must reproduce the above |
| 3443 | copyright notice, this list of conditions and the following |
| 3444 | disclaimer in the documentation and/or other materials provided |
| 3445 | with the distribution. |
| 3446 | |
| 3447 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 3448 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3449 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 3450 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 3451 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3452 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 3453 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 3454 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 3455 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3456 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 3457 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3458 | POSSIBILITY OF SUCH DAMAGE. |
| 3459 | |
| 3460 | ------------------------------------------------------------------- |
| 3461 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3462 | Copyright (c) 2002 The NetBSD Foundation, Inc. |
| 3463 | All rights reserved. |
| 3464 | |
| 3465 | This code is derived from software contributed to The NetBSD Foundation |
| 3466 | by Christos Zoulas. |
| 3467 | |
| 3468 | Redistribution and use in source and binary forms, with or without |
| 3469 | modification, are permitted provided that the following conditions |
| 3470 | are met: |
| 3471 | 1. Redistributions of source code must retain the above copyright |
| 3472 | notice, this list of conditions and the following disclaimer. |
| 3473 | 2. Redistributions in binary form must reproduce the above copyright |
| 3474 | notice, this list of conditions and the following disclaimer in the |
| 3475 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3476 | |
| 3477 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3478 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3479 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3480 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3481 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3482 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3483 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3484 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3485 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3486 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3487 | POSSIBILITY OF SUCH DAMAGE. |
| 3488 | |
| 3489 | ------------------------------------------------------------------- |
| 3490 | |
| 3491 | Copyright (c) 2002 Tim J. Robbins |
| 3492 | All rights reserved. |
| 3493 | |
| 3494 | Redistribution and use in source and binary forms, with or without |
| 3495 | modification, are permitted provided that the following conditions |
| 3496 | are met: |
| 3497 | 1. Redistributions of source code must retain the above copyright |
| 3498 | notice, this list of conditions and the following disclaimer. |
| 3499 | 2. Redistributions in binary form must reproduce the above copyright |
| 3500 | notice, this list of conditions and the following disclaimer in the |
| 3501 | documentation and/or other materials provided with the distribution. |
| 3502 | |
| 3503 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3504 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3505 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3506 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3507 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3508 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3509 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3510 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3511 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3512 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3513 | SUCH DAMAGE. |
| 3514 | |
| 3515 | ------------------------------------------------------------------- |
| 3516 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3517 | Copyright (c) 2002 Tim J. Robbins. |
| 3518 | All rights reserved. |
| 3519 | |
| 3520 | Redistribution and use in source and binary forms, with or without |
| 3521 | modification, are permitted provided that the following conditions |
| 3522 | are met: |
| 3523 | 1. Redistributions of source code must retain the above copyright |
| 3524 | notice, this list of conditions and the following disclaimer. |
| 3525 | 2. Redistributions in binary form must reproduce the above copyright |
| 3526 | notice, this list of conditions and the following disclaimer in the |
| 3527 | documentation and/or other materials provided with the distribution. |
| 3528 | |
| 3529 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3530 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3531 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3532 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3533 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3534 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3535 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3536 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3537 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3538 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3539 | SUCH DAMAGE. |
| 3540 | |
| 3541 | ------------------------------------------------------------------- |
| 3542 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3543 | Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3544 | |
| 3545 | Permission to use, copy, modify, and distribute this software for any |
| 3546 | purpose with or without fee is hereby granted, provided that the above |
| 3547 | copyright notice and this permission notice appear in all copies. |
| 3548 | |
| 3549 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3550 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3551 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3552 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3553 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3554 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3555 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3556 | |
| 3557 | Sponsored in part by the Defense Advanced Research Projects |
| 3558 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3559 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3560 | |
| 3561 | ------------------------------------------------------------------- |
| 3562 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3563 | Copyright (c) 2002, 2003 Tim J. Robbins. |
| 3564 | All rights reserved. |
| 3565 | |
| 3566 | Redistribution and use in source and binary forms, with or without |
| 3567 | modification, are permitted provided that the following conditions |
| 3568 | are met: |
| 3569 | 1. Redistributions of source code must retain the above copyright |
| 3570 | notice, this list of conditions and the following disclaimer. |
| 3571 | 2. Redistributions in binary form must reproduce the above copyright |
| 3572 | notice, this list of conditions and the following disclaimer in the |
| 3573 | documentation and/or other materials provided with the distribution. |
| 3574 | |
| 3575 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3576 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3577 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3578 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3579 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3580 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3581 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3582 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3583 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3584 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3585 | SUCH DAMAGE. |
| 3586 | |
| 3587 | ------------------------------------------------------------------- |
| 3588 | |
| 3589 | Copyright (c) 2002-2004 Tim J. Robbins |
| 3590 | All rights reserved. |
| 3591 | |
| 3592 | Redistribution and use in source and binary forms, with or without |
| 3593 | modification, are permitted provided that the following conditions |
| 3594 | are met: |
| 3595 | 1. Redistributions of source code must retain the above copyright |
| 3596 | notice, this list of conditions and the following disclaimer. |
| 3597 | 2. Redistributions in binary form must reproduce the above copyright |
| 3598 | notice, this list of conditions and the following disclaimer in the |
| 3599 | documentation and/or other materials provided with the distribution. |
| 3600 | |
| 3601 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3602 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3603 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3604 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3605 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3606 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3607 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3608 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3609 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3610 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3611 | SUCH DAMAGE. |
| 3612 | |
| 3613 | ------------------------------------------------------------------- |
| 3614 | |
| 3615 | Copyright (c) 2002-2004 Tim J. Robbins. |
| 3616 | All rights reserved. |
| 3617 | |
| 3618 | Redistribution and use in source and binary forms, with or without |
| 3619 | modification, are permitted provided that the following conditions |
| 3620 | are met: |
| 3621 | 1. Redistributions of source code must retain the above copyright |
| 3622 | notice, this list of conditions and the following disclaimer. |
| 3623 | 2. Redistributions in binary form must reproduce the above copyright |
| 3624 | notice, this list of conditions and the following disclaimer in the |
| 3625 | documentation and/or other materials provided with the distribution. |
| 3626 | |
| 3627 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3628 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3629 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3630 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3631 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3632 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3633 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3634 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3635 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3636 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3637 | SUCH DAMAGE. |
| 3638 | |
| 3639 | ------------------------------------------------------------------- |
| 3640 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3641 | Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
| 3642 | |
| 3643 | Redistribution and use in source and binary forms, with or without |
| 3644 | modification, are permitted provided that the following conditions |
| 3645 | are met: |
| 3646 | 1. Redistributions of source code must retain the above copyright |
| 3647 | notice, this list of conditions and the following disclaimer. |
| 3648 | 2. Redistributions in binary form must reproduce the above copyright |
| 3649 | notice, this list of conditions and the following disclaimer in the |
| 3650 | documentation and/or other materials provided with the distribution. |
| 3651 | 3. The names of the authors may not be used to endorse or promote |
| 3652 | products derived from this software without specific prior written |
| 3653 | permission. |
| 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 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3669 | Copyright (c) 2003 Dag-Erling Smørgrav |
| 3670 | All rights reserved. |
| 3671 | |
| 3672 | Redistribution and use in source and binary forms, with or without |
| 3673 | modification, are permitted provided that the following conditions |
| 3674 | are met: |
| 3675 | 1. Redistributions of source code must retain the above copyright |
| 3676 | notice, this list of conditions and the following disclaimer |
| 3677 | in this position and unchanged. |
| 3678 | 2. Redistributions in binary form must reproduce the above copyright |
| 3679 | notice, this list of conditions and the following disclaimer in the |
| 3680 | documentation and/or other materials provided with the distribution. |
| 3681 | 3. The name of the author may not be used to endorse or promote products |
| 3682 | derived from this software without specific prior written permission. |
| 3683 | |
| 3684 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3685 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3686 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3687 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3688 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3689 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3690 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3691 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3692 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3693 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3694 | |
| 3695 | ------------------------------------------------------------------- |
| 3696 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3697 | Copyright (c) 2003 David Schultz <das@FreeBSD.ORG> |
| 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 | 2. Redistributions in binary form must reproduce the above copyright |
| 3706 | notice, this list of conditions and the following disclaimer in the |
| 3707 | documentation and/or other materials provided with the distribution. |
| 3708 | |
| 3709 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3710 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3711 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3712 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3713 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3714 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3715 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3716 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3717 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3718 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3719 | SUCH DAMAGE. |
| 3720 | |
| 3721 | ------------------------------------------------------------------- |
| 3722 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3723 | Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> |
| 3724 | All rights reserved. |
| 3725 | |
| 3726 | Redistribution and use in source and binary forms, with or without |
| 3727 | modification, are permitted provided that the following conditions |
| 3728 | are met: |
| 3729 | 1. Redistributions of source code must retain the above copyright |
| 3730 | notice, this list of conditions and the following disclaimer. |
| 3731 | 2. Redistributions in binary form must reproduce the above copyright |
| 3732 | notice, this list of conditions and the following disclaimer in the |
| 3733 | documentation and/or other materials provided with the distribution. |
| 3734 | |
| 3735 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3736 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3737 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3738 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3739 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3740 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3741 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3742 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3743 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3744 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3745 | SUCH DAMAGE. |
| 3746 | |
| 3747 | ------------------------------------------------------------------- |
| 3748 | |
| 3749 | Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> |
| 3750 | Copyright (c) 2002 David Schultz <das@FreeBSD.ORG> |
| 3751 | All rights reserved. |
| 3752 | |
| 3753 | Redistribution and use in source and binary forms, with or without |
| 3754 | modification, are permitted provided that the following conditions |
| 3755 | are met: |
| 3756 | 1. Redistributions of source code must retain the above copyright |
| 3757 | notice, this list of conditions and the following disclaimer. |
| 3758 | 2. Redistributions in binary form must reproduce the above copyright |
| 3759 | notice, this list of conditions and the following disclaimer in the |
| 3760 | documentation and/or other materials provided with the distribution. |
| 3761 | |
| 3762 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3763 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3764 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3765 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3766 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3767 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3768 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3769 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3770 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3771 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3772 | SUCH DAMAGE. |
| 3773 | |
| 3774 | ------------------------------------------------------------------- |
| 3775 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3776 | Copyright (c) 2003 Networks Associates Technology, Inc. |
| 3777 | All rights reserved. |
| 3778 | |
| 3779 | Portions of this software were developed for the FreeBSD Project by |
| 3780 | Jacques A. Vidrine, Safeport Network Services, and Network |
| 3781 | Associates Laboratories, the Security Research Division of Network |
| 3782 | Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 |
| 3783 | ("CBOSS"), as part of the DARPA CHATS research program. |
| 3784 | |
| 3785 | Redistribution and use in source and binary forms, with or without |
| 3786 | modification, are permitted provided that the following conditions |
| 3787 | are met: |
| 3788 | 1. Redistributions of source code must retain the above copyright |
| 3789 | notice, this list of conditions and the following disclaimer. |
| 3790 | 2. Redistributions in binary form must reproduce the above copyright |
| 3791 | notice, this list of conditions and the following disclaimer in the |
| 3792 | documentation and/or other materials provided with the distribution. |
| 3793 | |
| 3794 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3795 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3796 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3797 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3798 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3799 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3800 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3801 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3802 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3803 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3804 | SUCH DAMAGE. |
| 3805 | |
| 3806 | ------------------------------------------------------------------- |
| 3807 | |
Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 3808 | Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3809 | |
| 3810 | Permission to use, copy, modify, and distribute this software for any |
| 3811 | purpose with or without fee is hereby granted, provided that the above |
| 3812 | copyright notice and this permission notice appear in all copies. |
| 3813 | |
| 3814 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3815 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3816 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3817 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3818 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3819 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3820 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3821 | |
| 3822 | Sponsored in part by the Defense Advanced Research Projects |
| 3823 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3824 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3825 | |
| 3826 | ------------------------------------------------------------------- |
| 3827 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 3828 | Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3829 | |
| 3830 | Permission to use, copy, modify, and distribute this software for any |
| 3831 | purpose with or without fee is hereby granted, provided that the above |
| 3832 | copyright notice and this permission notice appear in all copies. |
| 3833 | |
| 3834 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3835 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3836 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3837 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3838 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3839 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3840 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3841 | |
| 3842 | Sponsored in part by the Defense Advanced Research Projects |
| 3843 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3844 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3845 | |
| 3846 | ------------------------------------------------------------------- |
| 3847 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 3848 | Copyright (c) 2003, Steven G. Kargl |
| 3849 | All rights reserved. |
| 3850 | |
| 3851 | Redistribution and use in source and binary forms, with or without |
| 3852 | modification, are permitted provided that the following conditions |
| 3853 | are met: |
| 3854 | 1. Redistributions of source code must retain the above copyright |
| 3855 | notice unmodified, this list of conditions, and the following |
| 3856 | disclaimer. |
| 3857 | 2. Redistributions in binary form must reproduce the above copyright |
| 3858 | notice, this list of conditions and the following disclaimer in the |
| 3859 | documentation and/or other materials provided with the distribution. |
| 3860 | |
| 3861 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3862 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3863 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3864 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3865 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3866 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3867 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3868 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3869 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3870 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3871 | |
| 3872 | ------------------------------------------------------------------- |
| 3873 | |
| 3874 | Copyright (c) 2004 David Schultz <das@FreeBSD.ORG> |
| 3875 | All rights reserved. |
| 3876 | |
| 3877 | Redistribution and use in source and binary forms, with or without |
| 3878 | modification, are permitted provided that the following conditions |
| 3879 | are met: |
| 3880 | 1. Redistributions of source code must retain the above copyright |
| 3881 | notice, this list of conditions and the following disclaimer. |
| 3882 | 2. Redistributions in binary form must reproduce the above copyright |
| 3883 | notice, this list of conditions and the following disclaimer in the |
| 3884 | documentation and/or other materials provided with the distribution. |
| 3885 | |
| 3886 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3887 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3888 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3889 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3890 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3891 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3892 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3893 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3894 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3895 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3896 | SUCH DAMAGE. |
| 3897 | |
| 3898 | ------------------------------------------------------------------- |
| 3899 | |
| 3900 | Copyright (c) 2004 Stefan Farfeleder |
| 3901 | All rights reserved. |
| 3902 | |
| 3903 | Redistribution and use in source and binary forms, with or without |
| 3904 | modification, are permitted provided that the following conditions |
| 3905 | are met: |
| 3906 | 1. Redistributions of source code must retain the above copyright |
| 3907 | notice, this list of conditions and the following disclaimer. |
| 3908 | 2. Redistributions in binary form must reproduce the above copyright |
| 3909 | notice, this list of conditions and the following disclaimer in the |
| 3910 | documentation and/or other materials provided with the distribution. |
| 3911 | |
| 3912 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3913 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3914 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3915 | ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3916 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3917 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3918 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3919 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3920 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3921 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3922 | SUCH DAMAGE. |
| 3923 | |
| 3924 | ------------------------------------------------------------------- |
| 3925 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3926 | Copyright (c) 2004 The NetBSD Foundation, Inc. |
| 3927 | All rights reserved. |
| 3928 | |
| 3929 | This code is derived from software contributed to The NetBSD Foundation |
| 3930 | by Christos Zoulas. |
| 3931 | |
| 3932 | Redistribution and use in source and binary forms, with or without |
| 3933 | modification, are permitted provided that the following conditions |
| 3934 | are met: |
| 3935 | 1. Redistributions of source code must retain the above copyright |
| 3936 | notice, this list of conditions and the following disclaimer. |
| 3937 | 2. Redistributions in binary form must reproduce the above copyright |
| 3938 | notice, this list of conditions and the following disclaimer in the |
| 3939 | documentation and/or other materials provided with the distribution. |
| 3940 | 3. All advertising materials mentioning features or use of this software |
| 3941 | must display the following acknowledgement: |
| 3942 | This product includes software developed by the NetBSD |
| 3943 | Foundation, Inc. and its contributors. |
| 3944 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3945 | contributors may be used to endorse or promote products derived |
| 3946 | from this software without specific prior written permission. |
| 3947 | |
| 3948 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3949 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3950 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3951 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3952 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3953 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3954 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3955 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3956 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3957 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3958 | POSSIBILITY OF SUCH DAMAGE. |
| 3959 | |
| 3960 | ------------------------------------------------------------------- |
| 3961 | |
| 3962 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3963 | Copyright (c) 1995,1999 by Internet Software Consortium. |
| 3964 | |
| 3965 | Permission to use, copy, modify, and distribute this software for any |
| 3966 | purpose with or without fee is hereby granted, provided that the above |
| 3967 | copyright notice and this permission notice appear in all copies. |
| 3968 | |
| 3969 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3970 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3971 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3972 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3973 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3974 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3975 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3976 | |
| 3977 | ------------------------------------------------------------------- |
| 3978 | |
| 3979 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3980 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 3981 | |
| 3982 | Permission to use, copy, modify, and distribute this software for any |
| 3983 | purpose with or without fee is hereby granted, provided that the above |
| 3984 | copyright notice and this permission notice appear in all copies. |
| 3985 | |
| 3986 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3987 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3988 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3989 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3990 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3991 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3992 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3993 | |
| 3994 | ------------------------------------------------------------------- |
| 3995 | |
| 3996 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3997 | Copyright (c) 1995-1999 by Internet Software Consortium. |
| 3998 | |
| 3999 | Permission to use, copy, modify, and distribute this software for any |
| 4000 | purpose with or without fee is hereby granted, provided that the above |
| 4001 | copyright notice and this permission notice appear in all copies. |
| 4002 | |
| 4003 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4004 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4005 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4006 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4007 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4008 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4009 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4010 | |
| 4011 | ------------------------------------------------------------------- |
| 4012 | |
| 4013 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4014 | Copyright (c) 1996,1999 by Internet Software Consortium. |
| 4015 | |
| 4016 | Permission to use, copy, modify, and distribute this software for any |
| 4017 | purpose with or without fee is hereby granted, provided that the above |
| 4018 | copyright notice and this permission notice appear in all copies. |
| 4019 | |
| 4020 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4021 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4022 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4023 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4024 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4025 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4026 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4027 | |
| 4028 | ------------------------------------------------------------------- |
| 4029 | |
| 4030 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4031 | Copyright (c) 1996-1999 by Internet Software Consortium |
| 4032 | |
| 4033 | Permission to use, copy, modify, and distribute this software for any |
| 4034 | purpose with or without fee is hereby granted, provided that the above |
| 4035 | copyright notice and this permission notice appear in all copies. |
| 4036 | |
| 4037 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4038 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4039 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4040 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4041 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4042 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4043 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4044 | |
| 4045 | ------------------------------------------------------------------- |
| 4046 | |
| 4047 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4048 | Copyright (c) 1996-1999 by Internet Software Consortium. |
| 4049 | |
| 4050 | Permission to use, copy, modify, and distribute this software for any |
| 4051 | purpose with or without fee is hereby granted, provided that the above |
| 4052 | copyright notice and this permission notice appear in all copies. |
| 4053 | |
| 4054 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4055 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4056 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4057 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4058 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4059 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4060 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4061 | |
| 4062 | ------------------------------------------------------------------- |
| 4063 | |
| 4064 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4065 | Copyright (c) 1997,1999 by Internet Software Consortium. |
| 4066 | |
| 4067 | Permission to use, copy, modify, and distribute this software for any |
| 4068 | purpose with or without fee is hereby granted, provided that the above |
| 4069 | copyright notice and this permission notice appear in all copies. |
| 4070 | |
| 4071 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4072 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4073 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4074 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4075 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4076 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4077 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4078 | |
| 4079 | ------------------------------------------------------------------- |
| 4080 | |
| 4081 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4082 | Copyright (c) 1999 by Internet Software Consortium. |
| 4083 | |
| 4084 | Permission to use, copy, modify, and distribute this software for any |
| 4085 | purpose with or without fee is hereby granted, provided that the above |
| 4086 | copyright notice and this permission notice appear in all copies. |
| 4087 | |
| 4088 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4089 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4090 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4091 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4092 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4093 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4094 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4095 | |
| 4096 | ------------------------------------------------------------------- |
| 4097 | |
| 4098 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 4099 | Portions Copyright (c) 1996-1999 by Internet Software Consortium. |
| 4100 | |
| 4101 | Permission to use, copy, modify, and distribute this software for any |
| 4102 | purpose with or without fee is hereby granted, provided that the above |
| 4103 | copyright notice and this permission notice appear in all copies. |
| 4104 | |
| 4105 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4106 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4107 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4108 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4109 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4110 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4111 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4112 | |
| 4113 | ------------------------------------------------------------------- |
| 4114 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4115 | Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> |
| 4116 | All rights reserved. |
| 4117 | |
| 4118 | Redistribution and use in source and binary forms, with or without |
| 4119 | modification, are permitted provided that the following conditions |
| 4120 | are met: |
| 4121 | 1. Redistributions of source code must retain the above copyright |
| 4122 | notice, this list of conditions and the following disclaimer. |
| 4123 | 2. Redistributions in binary form must reproduce the above copyright |
| 4124 | notice, this list of conditions and the following disclaimer in the |
| 4125 | documentation and/or other materials provided with the distribution. |
| 4126 | |
| 4127 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4128 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4129 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4130 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4131 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4132 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4133 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4134 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4135 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4136 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4137 | SUCH DAMAGE. |
| 4138 | |
| 4139 | ------------------------------------------------------------------- |
| 4140 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4141 | Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG> |
| 4142 | All rights reserved. |
| 4143 | |
| 4144 | Redistribution and use in source and binary forms, with or without |
| 4145 | modification, are permitted provided that the following conditions |
| 4146 | are met: |
| 4147 | 1. Redistributions of source code must retain the above copyright |
| 4148 | notice, this list of conditions and the following disclaimer. |
| 4149 | 2. Redistributions in binary form must reproduce the above copyright |
| 4150 | notice, this list of conditions and the following disclaimer in the |
| 4151 | documentation and/or other materials provided with the distribution. |
| 4152 | |
| 4153 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4154 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4155 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4156 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4157 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4158 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4159 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4160 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4161 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4162 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4163 | SUCH DAMAGE. |
| 4164 | |
| 4165 | ------------------------------------------------------------------- |
| 4166 | |
| 4167 | Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG> |
| 4168 | All rights reserved. |
| 4169 | |
| 4170 | Redistribution and use in source and binary forms, with or without |
| 4171 | modification, are permitted provided that the following conditions |
| 4172 | are met: |
| 4173 | 1. Redistributions of source code must retain the above copyright |
| 4174 | notice, this list of conditions and the following disclaimer. |
| 4175 | 2. Redistributions in binary form must reproduce the above copyright |
| 4176 | notice, this list of conditions and the following disclaimer in the |
| 4177 | documentation and/or other materials provided with the distribution. |
| 4178 | |
| 4179 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4180 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4181 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4182 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4183 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4184 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4185 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4186 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4187 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4188 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4189 | SUCH DAMAGE. |
| 4190 | |
| 4191 | ------------------------------------------------------------------- |
| 4192 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4193 | Copyright (c) 2005 Bruce D. Evans and Steven G. Kargl |
| 4194 | All rights reserved. |
| 4195 | |
| 4196 | Redistribution and use in source and binary forms, with or without |
| 4197 | modification, are permitted provided that the following conditions |
| 4198 | are met: |
| 4199 | 1. Redistributions of source code must retain the above copyright |
| 4200 | notice unmodified, this list of conditions, and the following |
| 4201 | disclaimer. |
| 4202 | 2. Redistributions in binary form must reproduce the above copyright |
| 4203 | notice, this list of conditions and the following disclaimer in the |
| 4204 | documentation and/or other materials provided with the distribution. |
| 4205 | |
| 4206 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4207 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4208 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4209 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4210 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4211 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4212 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4213 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4214 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4215 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4216 | |
| 4217 | ------------------------------------------------------------------- |
| 4218 | |
| 4219 | Copyright (c) 2005 David Schultz <das@FreeBSD.ORG> |
| 4220 | All rights reserved. |
| 4221 | |
| 4222 | Redistribution and use in source and binary forms, with or without |
| 4223 | modification, are permitted provided that the following conditions |
| 4224 | are met: |
| 4225 | 1. Redistributions of source code must retain the above copyright |
| 4226 | notice, this list of conditions and the following disclaimer. |
| 4227 | 2. Redistributions in binary form must reproduce the above copyright |
| 4228 | notice, this list of conditions and the following disclaimer in the |
| 4229 | documentation and/or other materials provided with the distribution. |
| 4230 | |
| 4231 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4232 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4233 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4234 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4235 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4236 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4237 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4238 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4239 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4240 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4241 | SUCH DAMAGE. |
| 4242 | |
| 4243 | ------------------------------------------------------------------- |
| 4244 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4245 | Copyright (c) 2005 Tim J. Robbins. |
| 4246 | All rights reserved. |
| 4247 | |
| 4248 | Redistribution and use in source and binary forms, with or without |
| 4249 | modification, are permitted provided that the following conditions |
| 4250 | are met: |
| 4251 | 1. Redistributions of source code must retain the above copyright |
| 4252 | notice, this list of conditions and the following disclaimer. |
| 4253 | 2. Redistributions in binary form must reproduce the above copyright |
| 4254 | notice, this list of conditions and the following disclaimer in the |
| 4255 | documentation and/or other materials provided with the distribution. |
| 4256 | |
| 4257 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4258 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4259 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4260 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4261 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4262 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4263 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4264 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4265 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4266 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4267 | SUCH DAMAGE. |
| 4268 | |
| 4269 | ------------------------------------------------------------------- |
| 4270 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 4271 | Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC") |
| 4272 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 4273 | |
| 4274 | Permission to use, copy, modify, and distribute this software for any |
| 4275 | purpose with or without fee is hereby granted, provided that the above |
| 4276 | copyright notice and this permission notice appear in all copies. |
| 4277 | |
| 4278 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 4279 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4280 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 4281 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4282 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4283 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 4284 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4285 | |
| 4286 | ------------------------------------------------------------------- |
| 4287 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4288 | Copyright (c) 2005-2008 David Schultz <das@FreeBSD.ORG> |
| 4289 | All rights reserved. |
| 4290 | |
| 4291 | Redistribution and use in source and binary forms, with or without |
| 4292 | modification, are permitted provided that the following conditions |
| 4293 | are met: |
| 4294 | 1. Redistributions of source code must retain the above copyright |
| 4295 | notice, this list of conditions and the following disclaimer. |
| 4296 | 2. Redistributions in binary form must reproduce the above copyright |
| 4297 | notice, this list of conditions and the following disclaimer in the |
| 4298 | documentation and/or other materials provided with the distribution. |
| 4299 | |
| 4300 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4301 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4302 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4303 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4304 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4305 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4306 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4307 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4308 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4309 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4310 | SUCH DAMAGE. |
| 4311 | |
| 4312 | ------------------------------------------------------------------- |
| 4313 | |
| 4314 | Copyright (c) 2005-2011 David Schultz <das@FreeBSD.ORG> |
| 4315 | All rights reserved. |
| 4316 | |
| 4317 | Redistribution and use in source and binary forms, with or without |
| 4318 | modification, are permitted provided that the following conditions |
| 4319 | are met: |
| 4320 | 1. Redistributions of source code must retain the above copyright |
| 4321 | notice, this list of conditions and the following disclaimer. |
| 4322 | 2. Redistributions in binary form must reproduce the above copyright |
| 4323 | notice, this list of conditions and the following disclaimer in the |
| 4324 | documentation and/or other materials provided with the distribution. |
| 4325 | |
| 4326 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4327 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4328 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4329 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4330 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4331 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4332 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4333 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4334 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4335 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4336 | SUCH DAMAGE. |
| 4337 | |
| 4338 | ------------------------------------------------------------------- |
| 4339 | |
| 4340 | Copyright (c) 2007 David Schultz |
| 4341 | All rights reserved. |
| 4342 | |
| 4343 | Redistribution and use in source and binary forms, with or without |
| 4344 | modification, are permitted provided that the following conditions |
| 4345 | are met: |
| 4346 | 1. Redistributions of source code must retain the above copyright |
| 4347 | notice, this list of conditions and the following disclaimer. |
| 4348 | 2. Redistributions in binary form must reproduce the above copyright |
| 4349 | notice, this list of conditions and the following disclaimer in the |
| 4350 | documentation and/or other materials provided with the distribution. |
| 4351 | |
| 4352 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4353 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4354 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4355 | ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4356 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4357 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4358 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4359 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4360 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4361 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4362 | SUCH DAMAGE. |
| 4363 | |
| 4364 | ------------------------------------------------------------------- |
| 4365 | |
| 4366 | Copyright (c) 2007 David Schultz <das@FreeBSD.ORG> |
| 4367 | All rights reserved. |
| 4368 | |
| 4369 | Redistribution and use in source and binary forms, with or without |
| 4370 | modification, are permitted provided that the following conditions |
| 4371 | are met: |
| 4372 | 1. Redistributions of source code must retain the above copyright |
| 4373 | notice, this list of conditions and the following disclaimer. |
| 4374 | 2. Redistributions in binary form must reproduce the above copyright |
| 4375 | notice, this list of conditions and the following disclaimer in the |
| 4376 | documentation and/or other materials provided with the distribution. |
| 4377 | |
| 4378 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4379 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4380 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4381 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4382 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4383 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4384 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4385 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4386 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4387 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4388 | SUCH DAMAGE. |
| 4389 | |
| 4390 | ------------------------------------------------------------------- |
| 4391 | |
| 4392 | Copyright (c) 2007 David Schultz <das@FreeBSD.ORG> |
| 4393 | All rights reserved. |
| 4394 | |
| 4395 | Redistribution and use in source and binary forms, with or without |
| 4396 | modification, are permitted provided that the following conditions |
| 4397 | are met: |
| 4398 | 1. Redistributions of source code must retain the above copyright |
| 4399 | notice, this list of conditions and the following disclaimer. |
| 4400 | 2. Redistributions in binary form must reproduce the above copyright |
| 4401 | notice, this list of conditions and the following disclaimer in the |
| 4402 | documentation and/or other materials provided with the distribution. |
| 4403 | |
| 4404 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4405 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4406 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4407 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4408 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4409 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4410 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4411 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4412 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4413 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4414 | SUCH DAMAGE. |
| 4415 | |
| 4416 | Derived from s_modf.c, which has the following Copyright: |
| 4417 | ==================================================== |
| 4418 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 4419 | |
| 4420 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 4421 | Permission to use, copy, modify, and distribute this |
| 4422 | software is freely granted, provided that this notice |
| 4423 | is preserved. |
| 4424 | |
| 4425 | ------------------------------------------------------------------- |
| 4426 | |
| 4427 | Copyright (c) 2007 Steven G. Kargl |
| 4428 | All rights reserved. |
| 4429 | |
| 4430 | Redistribution and use in source and binary forms, with or without |
| 4431 | modification, are permitted provided that the following conditions |
| 4432 | are met: |
| 4433 | 1. Redistributions of source code must retain the above copyright |
| 4434 | notice unmodified, this list of conditions, and the following |
| 4435 | disclaimer. |
| 4436 | 2. Redistributions in binary form must reproduce the above copyright |
| 4437 | notice, this list of conditions and the following disclaimer in the |
| 4438 | documentation and/or other materials provided with the distribution. |
| 4439 | |
| 4440 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4441 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4442 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4443 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4444 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4445 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4446 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4447 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4448 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4449 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4450 | |
| 4451 | ------------------------------------------------------------------- |
| 4452 | |
| 4453 | Copyright (c) 2007 The NetBSD Foundation, Inc. |
| 4454 | All rights reserved. |
| 4455 | |
| 4456 | This code is derived from software written by Stephen L. Moshier. |
| 4457 | It is redistributed by the NetBSD Foundation by permission of the author. |
| 4458 | |
| 4459 | Redistribution and use in source and binary forms, with or without |
| 4460 | modification, are permitted provided that the following conditions |
| 4461 | are met: |
| 4462 | 1. Redistributions of source code must retain the above copyright |
| 4463 | notice, this list of conditions and the following 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 NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4469 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4470 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4471 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4472 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4473 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4474 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4475 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4476 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4477 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4478 | POSSIBILITY OF SUCH DAMAGE. |
| 4479 | |
| 4480 | ------------------------------------------------------------------- |
| 4481 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 4482 | Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4483 | |
| 4484 | Permission to use, copy, modify, and distribute this software for any |
| 4485 | purpose with or without fee is hereby granted, provided that the above |
| 4486 | copyright notice and this permission notice appear in all copies. |
| 4487 | |
| 4488 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4489 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4490 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4491 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4492 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4493 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4494 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4495 | |
| 4496 | ------------------------------------------------------------------- |
| 4497 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4498 | Copyright (c) 2007-2008 Michael G Schwern |
| 4499 | |
| 4500 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
| 4501 | |
| 4502 | The MIT License: |
| 4503 | |
| 4504 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4505 | of this software and associated documentation files (the "Software"), to deal |
| 4506 | in the Software without restriction, including without limitation the rights |
| 4507 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4508 | copies of the Software, and to permit persons to whom the Software is |
| 4509 | furnished to do so, subject to the following conditions: |
| 4510 | |
| 4511 | The above copyright notice and this permission notice shall be included in |
| 4512 | all copies or substantial portions of the Software. |
| 4513 | |
| 4514 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4515 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4516 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4517 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4518 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4519 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4520 | THE SOFTWARE. |
| 4521 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4522 | ------------------------------------------------------------------- |
| 4523 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4524 | Copyright (c) 2007-2008 Michael G Schwern |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4525 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4526 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4527 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4528 | The MIT License: |
| 4529 | |
| 4530 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4531 | of this software and associated documentation files (the "Software"), to deal |
| 4532 | in the Software without restriction, including without limitation the rights |
| 4533 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 4534 | copies of the Software, and to permit persons to whom the Software is |
| 4535 | furnished to do so, subject to the following conditions: |
| 4536 | |
| 4537 | The above copyright notice and this permission notice shall be included in |
| 4538 | all copies or substantial portions of the Software. |
| 4539 | |
| 4540 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 4541 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 4542 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 4543 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 4544 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 4545 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 4546 | THE SOFTWARE. |
| 4547 | |
| 4548 | Origin: http://code.google.com/p/y2038 |
| 4549 | Modified for Bionic by the Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 4550 | |
| 4551 | ------------------------------------------------------------------- |
| 4552 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4553 | Copyright (c) 2007-2008 David Schultz <das@FreeBSD.ORG> |
| 4554 | All rights reserved. |
| 4555 | |
| 4556 | Redistribution and use in source and binary forms, with or without |
| 4557 | modification, are permitted provided that the following conditions |
| 4558 | are met: |
| 4559 | 1. Redistributions of source code must retain the above copyright |
| 4560 | notice, this list of conditions and the following disclaimer. |
| 4561 | 2. Redistributions in binary form must reproduce the above copyright |
| 4562 | notice, this list of conditions and the following disclaimer in the |
| 4563 | documentation and/or other materials provided with the distribution. |
| 4564 | |
| 4565 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4566 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4567 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4568 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4569 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4570 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4571 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4572 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4573 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4574 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4575 | SUCH DAMAGE. |
| 4576 | |
| 4577 | ------------------------------------------------------------------- |
| 4578 | |
| 4579 | Copyright (c) 2007-2013 Bruce D. Evans |
| 4580 | All rights reserved. |
| 4581 | |
| 4582 | Redistribution and use in source and binary forms, with or without |
| 4583 | modification, are permitted provided that the following conditions |
| 4584 | are met: |
| 4585 | 1. Redistributions of source code must retain the above copyright |
| 4586 | notice unmodified, this list of conditions, and the following |
| 4587 | disclaimer. |
| 4588 | 2. Redistributions in binary form must reproduce the above copyright |
| 4589 | notice, this list of conditions and the following disclaimer in the |
| 4590 | documentation and/or other materials provided with the distribution. |
| 4591 | |
| 4592 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4593 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4594 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4595 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4596 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4597 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4598 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4599 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4600 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4601 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4602 | |
| 4603 | ------------------------------------------------------------------- |
| 4604 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4605 | Copyright (c) 2008 David Schultz <das@FreeBSD.ORG> |
| 4606 | All rights reserved. |
| 4607 | |
| 4608 | Redistribution and use in source and binary forms, with or without |
| 4609 | modification, are permitted provided that the following conditions |
| 4610 | are met: |
| 4611 | 1. Redistributions of source code must retain the above copyright |
| 4612 | notice, this list of conditions and the following disclaimer. |
| 4613 | 2. Redistributions in binary form must reproduce the above copyright |
| 4614 | notice, this list of conditions and the following disclaimer in the |
| 4615 | documentation and/or other materials provided with the distribution. |
| 4616 | |
| 4617 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4618 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4619 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4620 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4621 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4622 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4623 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4624 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4625 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4626 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4627 | SUCH DAMAGE. |
| 4628 | |
| 4629 | ------------------------------------------------------------------- |
| 4630 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4631 | Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> |
| 4632 | |
| 4633 | Permission to use, copy, modify, and distribute this software for any |
| 4634 | purpose with or without fee is hereby granted, provided that the above |
| 4635 | copyright notice and this permission notice appear in all copies. |
| 4636 | |
| 4637 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4638 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4639 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4640 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4641 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4642 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4643 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4644 | |
| 4645 | ------------------------------------------------------------------- |
| 4646 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4647 | Copyright (c) 2008 Todd C. Miller <millert@openbsd.org> |
| 4648 | |
| 4649 | Permission to use, copy, modify, and distribute this software for any |
| 4650 | purpose with or without fee is hereby granted, provided that the above |
| 4651 | copyright notice and this permission notice appear in all copies. |
| 4652 | |
| 4653 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4654 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4655 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4656 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4657 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4658 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4659 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4660 | |
| 4661 | ------------------------------------------------------------------- |
| 4662 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4663 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
| 4664 | |
| 4665 | Permission to use, copy, modify, and distribute this software for any |
| 4666 | purpose with or without fee is hereby granted, provided that the above |
| 4667 | copyright notice and this permission notice appear in all copies. |
| 4668 | |
| 4669 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4670 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4671 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4672 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4673 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4674 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4675 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4676 | |
| 4677 | ------------------------------------------------------------------- |
| 4678 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4679 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4680 | All rights reserved. |
| 4681 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4682 | Copyright (c) 2011 The FreeBSD Foundation |
| 4683 | All rights reserved. |
| 4684 | Portions of this software were developed by David Chisnall |
| 4685 | under sponsorship from the FreeBSD Foundation. |
| 4686 | |
| 4687 | Redistribution and use in source and binary forms, with or without |
| 4688 | modification, are permitted provided that the following conditions |
| 4689 | are met: |
| 4690 | 1. Redistributions of source code must retain the above copyright |
| 4691 | notice, this list of conditions and the following disclaimer. |
| 4692 | 2. Redistributions in binary form must reproduce the above copyright |
| 4693 | notice, this list of conditions and the following disclaimer in the |
| 4694 | documentation and/or other materials provided with the distribution. |
| 4695 | |
| 4696 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4697 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4698 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4699 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4700 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4701 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4702 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4703 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4704 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4705 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4706 | SUCH DAMAGE. |
| 4707 | |
| 4708 | ------------------------------------------------------------------- |
| 4709 | |
| 4710 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 4711 | All rights reserved. |
| 4712 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4713 | Redistribution and use in source and binary forms, with or without |
| 4714 | modification, are permitted provided that the following conditions |
| 4715 | are met: |
| 4716 | 1. Redistributions of source code must retain the above copyright |
| 4717 | notice, this list of conditions and the following disclaimer. |
| 4718 | 2. Redistributions in binary form must reproduce the above copyright |
| 4719 | notice, this list of conditions and the following disclaimer in the |
| 4720 | documentation and/or other materials provided with the distribution. |
| 4721 | |
| 4722 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4723 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4724 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4725 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4726 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4727 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4728 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4729 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4730 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4731 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4732 | SUCH DAMAGE. |
| 4733 | |
| 4734 | ------------------------------------------------------------------- |
| 4735 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 4736 | Copyright (c) 2009 The NetBSD Foundation, Inc. |
| 4737 | |
| 4738 | This code is derived from software contributed to The NetBSD Foundation |
| 4739 | by Roy Marples. |
| 4740 | |
| 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 ``AS IS'' AND ANY EXPRESS OR |
| 4751 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4752 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4753 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4754 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4755 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4756 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4757 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4758 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4759 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4760 | |
| 4761 | ------------------------------------------------------------------- |
| 4762 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4763 | Copyright (c) 2009-2013 Steven G. Kargl |
| 4764 | All rights reserved. |
| 4765 | |
| 4766 | Redistribution and use in source and binary forms, with or without |
| 4767 | modification, are permitted provided that the following conditions |
| 4768 | are met: |
| 4769 | 1. Redistributions of source code must retain the above copyright |
| 4770 | notice unmodified, this list of conditions, and the following |
| 4771 | disclaimer. |
| 4772 | 2. Redistributions in binary form must reproduce the above copyright |
| 4773 | notice, this list of conditions and the following disclaimer in the |
| 4774 | documentation and/or other materials provided with the distribution. |
| 4775 | |
| 4776 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4777 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4778 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4779 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4780 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4781 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4782 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4783 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4784 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4785 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4786 | |
| 4787 | Optimized by Bruce D. Evans. |
| 4788 | |
| 4789 | ------------------------------------------------------------------- |
| 4790 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4791 | Copyright (c) 2010 MIPS Technologies, Inc. |
| 4792 | |
| 4793 | All rights reserved. |
| 4794 | |
| 4795 | Redistribution and use in source and binary forms, with or without |
| 4796 | modification, are permitted provided that the following conditions |
| 4797 | are met: |
| 4798 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4799 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4800 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4801 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4802 | notice, this list of conditions and the following disclaimer |
| 4803 | in the documentation and/or other materials provided with |
| 4804 | the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4805 | * Neither the name of MIPS Technologies Inc. nor the names of its |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4806 | contributors may be used to endorse or promote products derived |
| 4807 | from this software without specific prior written permission. |
| 4808 | |
| 4809 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4810 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4811 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4812 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4813 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4814 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4815 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4816 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4817 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4818 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4819 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4820 | |
| 4821 | ------------------------------------------------------------------- |
| 4822 | |
Elliott Hughes | 882b8af | 2016-05-16 17:35:36 -0700 | [diff] [blame] | 4823 | Copyright (c) 2010 The NetBSD Foundation, Inc. |
| 4824 | All rights reserved. |
| 4825 | |
| 4826 | Redistribution and use in source and binary forms, with or without |
| 4827 | modification, are permitted provided that the following conditions |
| 4828 | are met: |
| 4829 | 1. Redistributions of source code must retain the above copyright |
| 4830 | notice, this list of conditions and the following disclaimer. |
| 4831 | 2. Redistributions in binary form must reproduce the above copyright |
| 4832 | notice, this list of conditions and the following disclaimer in the |
| 4833 | documentation and/or other materials provided with the distribution. |
| 4834 | |
| 4835 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4836 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4837 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4838 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4839 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4840 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4841 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4842 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4843 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4844 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4845 | POSSIBILITY OF SUCH DAMAGE. |
| 4846 | |
| 4847 | ------------------------------------------------------------------- |
| 4848 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4849 | Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4850 | |
| 4851 | Permission to use, copy, modify, and distribute this software for any |
| 4852 | purpose with or without fee is hereby granted, provided that the above |
| 4853 | copyright notice and this permission notice appear in all copies. |
| 4854 | |
| 4855 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4856 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4857 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4858 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4859 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4860 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4861 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4862 | |
| 4863 | ------------------------------------------------------------------- |
| 4864 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4865 | Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4866 | All rights reserved. |
| 4867 | |
| 4868 | Redistribution and use in source and binary forms, with or without |
| 4869 | modification, are permitted provided that the following conditions are met: |
| 4870 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4871 | * Redistributions of source code must retain the above copyright notice, |
| 4872 | * this list of conditions and the following disclaimer. |
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 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4875 | * this list of conditions and the following disclaimer in the documentation |
| 4876 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4877 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4878 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4879 | * may be used to endorse or promote products derived from this software |
| 4880 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4881 | |
| 4882 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4883 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4884 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4885 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4886 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4887 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4888 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4889 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4890 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4891 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4892 | |
| 4893 | ------------------------------------------------------------------- |
| 4894 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4895 | Copyright (c) 2010, Intel Corporation |
| 4896 | All rights reserved. |
| 4897 | |
| 4898 | Redistribution and use in source and binary forms, with or without |
| 4899 | modification, are permitted provided that the following conditions are met: |
| 4900 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4901 | * Redistributions of source code must retain the above copyright notice, |
| 4902 | * this list of conditions and the following disclaimer. |
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 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4905 | * this list of conditions and the following disclaimer in the documentation |
| 4906 | * and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4907 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4908 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4909 | * may be used to endorse or promote products derived from this software |
| 4910 | * without specific prior written permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4911 | |
| 4912 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4913 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4914 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4915 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4916 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4917 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4918 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4919 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4920 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4921 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4922 | |
| 4923 | ------------------------------------------------------------------- |
| 4924 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4925 | Copyright (c) 2011 David Chisnall |
| 4926 | All rights reserved. |
| 4927 | |
| 4928 | Redistribution and use in source and binary forms, with or without |
| 4929 | modification, are permitted provided that the following conditions |
| 4930 | are met: |
| 4931 | 1. Redistributions of source code must retain the above copyright |
| 4932 | notice, this list of conditions and the following disclaimer. |
| 4933 | 2. Redistributions in binary form must reproduce the above copyright |
| 4934 | notice, this list of conditions and the following disclaimer in the |
| 4935 | documentation and/or other materials provided with the distribution. |
| 4936 | |
| 4937 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4938 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4939 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4940 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4941 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4942 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4943 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4944 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4945 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4946 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4947 | SUCH DAMAGE. |
| 4948 | |
| 4949 | ------------------------------------------------------------------- |
| 4950 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 4951 | Copyright (c) 2011 David Schultz |
| 4952 | All rights reserved. |
| 4953 | |
| 4954 | Redistribution and use in source and binary forms, with or without |
| 4955 | modification, are permitted provided that the following conditions |
| 4956 | are met: |
| 4957 | 1. Redistributions of source code must retain the above copyright |
| 4958 | notice unmodified, this list of conditions, and the following |
| 4959 | disclaimer. |
| 4960 | 2. Redistributions in binary form must reproduce the above copyright |
| 4961 | notice, this list of conditions and the following disclaimer in the |
| 4962 | documentation and/or other materials provided with the distribution. |
| 4963 | |
| 4964 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4965 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4966 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4967 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4968 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4969 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4970 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4971 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4972 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4973 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4974 | |
| 4975 | ------------------------------------------------------------------- |
| 4976 | |
| 4977 | Copyright (c) 2011 David Schultz <das@FreeBSD.ORG> |
| 4978 | All rights reserved. |
| 4979 | |
| 4980 | Redistribution and use in source and binary forms, with or without |
| 4981 | modification, are permitted provided that the following conditions |
| 4982 | are met: |
| 4983 | 1. Redistributions of source code must retain the above copyright |
| 4984 | notice, this list of conditions and the following disclaimer. |
| 4985 | 2. Redistributions in binary form must reproduce the above copyright |
| 4986 | notice, this list of conditions and the following disclaimer in the |
| 4987 | documentation and/or other materials provided with the distribution. |
| 4988 | |
| 4989 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4990 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4991 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4992 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4993 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4994 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4995 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4996 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4997 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4998 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4999 | SUCH DAMAGE. |
| 5000 | |
| 5001 | ------------------------------------------------------------------- |
| 5002 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5003 | Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org> |
| 5004 | David Chisnall <theraven@FreeBSD.org> |
| 5005 | All rights reserved. |
| 5006 | |
| 5007 | Redistribution and use in source and binary forms, with or without |
| 5008 | modification, are permitted provided that the following conditions |
| 5009 | are met: |
| 5010 | 1. Redistributions of source code must retain the above copyright |
| 5011 | notice, this list of conditions and the following disclaimer. |
| 5012 | 2. Redistributions in binary form must reproduce the above copyright |
| 5013 | notice, this list of conditions and the following disclaimer in the |
| 5014 | documentation and/or other materials provided with the distribution. |
| 5015 | |
| 5016 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5017 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5018 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5019 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5020 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5021 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5022 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5023 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5024 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5025 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5026 | SUCH DAMAGE. |
| 5027 | |
| 5028 | ------------------------------------------------------------------- |
| 5029 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5030 | Copyright (c) 2011 Intel Corporation |
| 5031 | All rights reserved. |
| 5032 | |
| 5033 | Redistribution and use in source and binary forms, with or without |
| 5034 | modification, are permitted provided that the following conditions are met: |
| 5035 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5036 | * Redistributions of source code must retain the above copyright notice, |
| 5037 | * this list of conditions and the following disclaimer. |
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 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5040 | * this list of conditions and the following disclaimer in the documentation |
| 5041 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5042 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5043 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5044 | * may be used to endorse or promote products derived from this software |
| 5045 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5046 | |
| 5047 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5048 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5049 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5050 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5051 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5052 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5053 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5054 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5055 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5056 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5057 | |
| 5058 | ------------------------------------------------------------------- |
| 5059 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 5060 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 5061 | |
| 5062 | Permission to use, copy, modify, and distribute this software for any |
| 5063 | purpose with or without fee is hereby granted, provided that the above |
| 5064 | copyright notice and this permission notice appear in all copies. |
| 5065 | |
| 5066 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5067 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5068 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5069 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5070 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5071 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5072 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5073 | |
| 5074 | ------------------------------------------------------------------- |
| 5075 | |
| 5076 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 5077 | Copyright (c) 2009 Ted Unangst |
| 5078 | |
| 5079 | Permission to use, copy, modify, and distribute this software for any |
| 5080 | purpose with or without fee is hereby granted, provided that the above |
| 5081 | copyright notice and this permission notice appear in all copies. |
| 5082 | |
| 5083 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5084 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5085 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5086 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5087 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5088 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5089 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5090 | |
| 5091 | ------------------------------------------------------------------- |
| 5092 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5093 | Copyright (c) 2011 The Android Open Source Project |
| 5094 | Copyright (c) 2008 ARM Ltd |
| 5095 | All rights reserved. |
| 5096 | |
| 5097 | Redistribution and use in source and binary forms, with or without |
| 5098 | modification, are permitted provided that the following conditions |
| 5099 | are met: |
| 5100 | 1. Redistributions of source code must retain the above copyright |
| 5101 | notice, this list of conditions and the following disclaimer. |
| 5102 | 2. Redistributions in binary form must reproduce the above copyright |
| 5103 | notice, this list of conditions and the following disclaimer in the |
| 5104 | documentation and/or other materials provided with the distribution. |
| 5105 | 3. The name of the company may not be used to endorse or promote |
| 5106 | products derived from this software without specific prior written |
| 5107 | permission. |
| 5108 | |
| 5109 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5110 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5111 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5112 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5113 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5114 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5115 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5116 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5117 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5118 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5119 | |
| 5120 | ------------------------------------------------------------------- |
| 5121 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5122 | Copyright (c) 2011, 2012, 2013 Intel Corporation |
| 5123 | All rights reserved. |
| 5124 | |
| 5125 | Redistribution and use in source and binary forms, with or without |
| 5126 | modification, are permitted provided that the following conditions are met: |
| 5127 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5128 | * Redistributions of source code must retain the above copyright notice, |
| 5129 | * this list of conditions and the following disclaimer. |
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 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5132 | * this list of conditions and the following disclaimer in the documentation |
| 5133 | * and/or other materials provided with the distribution. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5134 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5135 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5136 | * may be used to endorse or promote products derived from this software |
| 5137 | * without specific prior written permission. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 5138 | |
| 5139 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5140 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5141 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5142 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5143 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5144 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5145 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5146 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5147 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5148 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5149 | |
| 5150 | ------------------------------------------------------------------- |
| 5151 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5152 | Copyright (c) 2011, Intel Corporation |
| 5153 | All rights reserved. |
| 5154 | |
| 5155 | Redistribution and use in source and binary forms, with or without |
| 5156 | modification, are permitted provided that the following conditions are met: |
| 5157 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5158 | * Redistributions of source code must retain the above copyright notice, |
| 5159 | * this list of conditions and the following disclaimer. |
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 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5162 | * this list of conditions and the following disclaimer in the documentation |
| 5163 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5164 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5165 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5166 | * may be used to endorse or promote products derived from this software |
| 5167 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 5168 | |
| 5169 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5170 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5171 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5172 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5173 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5174 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5175 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5176 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5177 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5178 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5179 | |
| 5180 | ------------------------------------------------------------------- |
| 5181 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5182 | Copyright (c) 2011, VMware, Inc. |
| 5183 | All rights reserved. |
| 5184 | |
| 5185 | Redistribution and use in source and binary forms, with or without |
| 5186 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5187 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5188 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5189 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5190 | notice, this list of conditions and the following disclaimer in the |
| 5191 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5192 | * 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] | 5193 | may be used to endorse or promote products derived from this software |
| 5194 | without specific prior written permission. |
| 5195 | |
| 5196 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 5197 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5198 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5199 | ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR |
| 5200 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5201 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5202 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 5203 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5204 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5205 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5206 | |
| 5207 | ------------------------------------------------------------------- |
| 5208 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5209 | Copyright (c) 2012 Stephen Montgomery-Smith <stephen@FreeBSD.ORG> |
| 5210 | All rights reserved. |
| 5211 | |
| 5212 | Redistribution and use in source and binary forms, with or without |
| 5213 | modification, are permitted provided that the following conditions |
| 5214 | are met: |
| 5215 | 1. Redistributions of source code must retain the above copyright |
| 5216 | notice, this list of conditions and the following disclaimer. |
| 5217 | 2. Redistributions in binary form must reproduce the above copyright |
| 5218 | notice, this list of conditions and the following disclaimer in the |
| 5219 | documentation and/or other materials provided with the distribution. |
| 5220 | |
| 5221 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5222 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5223 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5224 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5225 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5226 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5227 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5228 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5229 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5230 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5231 | SUCH DAMAGE. |
| 5232 | |
| 5233 | ------------------------------------------------------------------- |
| 5234 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5235 | Copyright (c) 2012, Linaro Limited |
| 5236 | All rights reserved. |
| 5237 | |
| 5238 | Redistribution and use in source and binary forms, with or without |
| 5239 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5240 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5241 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5242 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5243 | notice, this list of conditions and the following disclaimer in the |
| 5244 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5245 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5246 | names of its contributors may be used to endorse or promote products |
| 5247 | derived from this software without specific prior written permission. |
| 5248 | |
| 5249 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5250 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5251 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5252 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5253 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5254 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5255 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5256 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5257 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5258 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5259 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5260 | |
| 5261 | ------------------------------------------------------------------- |
| 5262 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5263 | Copyright (c) 2012, Linaro Limited |
| 5264 | All rights reserved. |
| 5265 | Copyright (c) 2014, NVIDIA Corporation. All rights reserved. |
| 5266 | |
| 5267 | Redistribution and use in source and binary forms, with or without |
| 5268 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5269 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5270 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5271 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5272 | notice, this list of conditions and the following disclaimer in the |
| 5273 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5274 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5275 | names of its contributors may be used to endorse or promote products |
| 5276 | derived from this software without specific prior written permission. |
| 5277 | |
| 5278 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5279 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5280 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5281 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5282 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5283 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5284 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5285 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5286 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5287 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5288 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5289 | |
| 5290 | ------------------------------------------------------------------- |
| 5291 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5292 | Copyright (c) 2012-2013, Linaro Limited |
| 5293 | All rights reserved. |
| 5294 | |
| 5295 | Redistribution and use in source and binary forms, with or without |
| 5296 | modification, are permitted provided that the following conditions are met: |
| 5297 | * Redistributions of source code must retain the above copyright |
| 5298 | notice, this list of conditions and the following disclaimer. |
| 5299 | * Redistributions in binary form must reproduce the above copyright |
| 5300 | notice, this list of conditions and the following disclaimer in the |
| 5301 | documentation and/or other materials provided with the distribution. |
| 5302 | * Neither the name of the Linaro nor the |
| 5303 | names of its contributors may be used to endorse or promote products |
| 5304 | derived from this software without specific prior written permission. |
| 5305 | |
| 5306 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5307 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5308 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5309 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5310 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5311 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5312 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5313 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5314 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5315 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5316 | |
| 5317 | ------------------------------------------------------------------- |
| 5318 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 5319 | Copyright (c) 2012-2015 |
| 5320 | MIPS Technologies, Inc., California. |
| 5321 | |
| 5322 | Redistribution and use in source and binary forms, with or without |
| 5323 | modification, are permitted provided that the following conditions |
| 5324 | are met: |
| 5325 | 1. Redistributions of source code must retain the above copyright |
| 5326 | notice, this list of conditions and the following disclaimer. |
| 5327 | 2. Redistributions in binary form must reproduce the above copyright |
| 5328 | notice, this list of conditions and the following disclaimer in the |
| 5329 | documentation and/or other materials provided with the distribution. |
| 5330 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 5331 | contributors may be used to endorse or promote products derived from |
| 5332 | this software without specific prior written permission. |
| 5333 | |
| 5334 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 5335 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5336 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5337 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 5338 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5339 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5340 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5341 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5342 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5343 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5344 | SUCH DAMAGE. |
| 5345 | |
| 5346 | ------------------------------------------------------------------- |
| 5347 | |
| 5348 | Copyright (c) 2013 |
| 5349 | MIPS Technologies, Inc., California. |
| 5350 | |
| 5351 | Redistribution and use in source and binary forms, with or without |
| 5352 | modification, are permitted provided that the following conditions |
| 5353 | are met: |
| 5354 | 1. Redistributions of source code must retain the above copyright |
| 5355 | notice, this list of conditions and the following disclaimer. |
| 5356 | 2. Redistributions in binary form must reproduce the above copyright |
| 5357 | notice, this list of conditions and the following disclaimer in the |
| 5358 | documentation and/or other materials provided with the distribution. |
| 5359 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 5360 | contributors may be used to endorse or promote products derived from |
| 5361 | this software without specific prior written permission. |
| 5362 | |
| 5363 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 5364 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5365 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5366 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 5367 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5368 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5369 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5370 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5371 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5372 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5373 | SUCH DAMAGE. |
| 5374 | |
| 5375 | ------------------------------------------------------------------- |
| 5376 | |
Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 5377 | Copyright (c) 2013 ARM Ltd |
| 5378 | All rights reserved. |
| 5379 | |
| 5380 | Redistribution and use in source and binary forms, with or without |
| 5381 | modification, are permitted provided that the following conditions |
| 5382 | are met: |
| 5383 | 1. Redistributions of source code must retain the above copyright |
| 5384 | notice, this list of conditions and the following disclaimer. |
| 5385 | 2. Redistributions in binary form must reproduce the above copyright |
| 5386 | notice, this list of conditions and the following disclaimer in the |
| 5387 | documentation and/or other materials provided with the distribution. |
| 5388 | 3. The name of the company may not be used to endorse or promote |
| 5389 | products derived from this software without specific prior written |
| 5390 | permission. |
| 5391 | |
| 5392 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5393 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5394 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5395 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5396 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5397 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5398 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5399 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5400 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5401 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5402 | |
| 5403 | ------------------------------------------------------------------- |
| 5404 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5405 | Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org> |
| 5406 | |
| 5407 | Permission to use, copy, modify, and distribute this software for any |
| 5408 | purpose with or without fee is hereby granted, provided that the above |
| 5409 | copyright notice and this permission notice appear in all copies. |
| 5410 | |
| 5411 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5412 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5413 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5414 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5415 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5416 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5417 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5418 | |
| 5419 | ------------------------------------------------------------------- |
| 5420 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5421 | Copyright (c) 2013 David Chisnall |
| 5422 | All rights reserved. |
| 5423 | |
| 5424 | Redistribution and use in source and binary forms, with or without |
| 5425 | modification, are permitted provided that the following conditions |
| 5426 | are met: |
| 5427 | 1. Redistributions of source code must retain the above copyright |
| 5428 | notice, this list of conditions and the following disclaimer. |
| 5429 | 2. Redistributions in binary form must reproduce the above copyright |
| 5430 | notice, this list of conditions and the following disclaimer in the |
| 5431 | documentation and/or other materials provided with the distribution. |
| 5432 | |
| 5433 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5434 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5435 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5436 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5437 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5438 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5439 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5440 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5441 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5442 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5443 | SUCH DAMAGE. |
| 5444 | |
| 5445 | ------------------------------------------------------------------- |
| 5446 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5447 | Copyright (c) 2013 The NetBSD Foundation, Inc. |
| 5448 | All rights reserved. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5449 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5450 | This code is derived from software contributed to The NetBSD Foundation |
| 5451 | by Christos Zoulas. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5452 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5453 | Redistribution and use in source and binary forms, with or without |
| 5454 | modification, are permitted provided that the following conditions |
| 5455 | are met: |
| 5456 | 1. Redistributions of source code must retain the above copyright |
| 5457 | notice, this list of conditions and the following disclaimer. |
| 5458 | 2. Redistributions in binary form must reproduce the above copyright |
| 5459 | notice, this list of conditions and the following disclaimer in the |
| 5460 | documentation and/or other materials provided with the distribution. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5461 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 5462 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 5463 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 5464 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 5465 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 5466 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 5467 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 5468 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 5469 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 5470 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 5471 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 5472 | POSSIBILITY OF SUCH DAMAGE. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 5473 | |
| 5474 | ------------------------------------------------------------------- |
| 5475 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5476 | Copyright (c) 2013, Linaro Limited |
| 5477 | All rights reserved. |
| 5478 | |
| 5479 | Redistribution and use in source and binary forms, with or without |
| 5480 | modification, are permitted provided that the following conditions are met: |
| 5481 | * Redistributions of source code must retain the above copyright |
| 5482 | notice, this list of conditions and the following disclaimer. |
| 5483 | * Redistributions in binary form must reproduce the above copyright |
| 5484 | notice, this list of conditions and the following disclaimer in the |
| 5485 | documentation and/or other materials provided with the distribution. |
| 5486 | * Neither the name of the Linaro nor the |
| 5487 | names of its contributors may be used to endorse or promote products |
| 5488 | derived from this software without specific prior written permission. |
| 5489 | |
| 5490 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5491 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5492 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5493 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5494 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5495 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5496 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5497 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5498 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5499 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5500 | |
| 5501 | ------------------------------------------------------------------- |
| 5502 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5503 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 5504 | Johnny Qiu <joqiu@nvidia.com> |
| 5505 | Shu Zhang <chazhang@nvidia.com> |
| 5506 | |
| 5507 | Redistribution and use in source and binary forms, with or without |
| 5508 | modification, are permitted provided that the following conditions are |
| 5509 | met: |
| 5510 | * Redistributions of source code must retain the above copyright |
| 5511 | notice, this list of conditions and the following disclaimer. |
| 5512 | * Redistributions in binary form must reproduce the above |
| 5513 | copyright notice, this list of conditions and the following |
| 5514 | disclaimer in the documentation and/or other materials provided |
| 5515 | with the distribution. |
| 5516 | * Neither the name of The Linux Foundation nor the names of its |
| 5517 | contributors may be used to endorse or promote products derived |
| 5518 | from this software without specific prior written permission. |
| 5519 | |
| 5520 | THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 5521 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5522 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| 5523 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| 5524 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 5525 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 5526 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 5527 | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 5528 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 5529 | OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 5530 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5531 | |
| 5532 | ------------------------------------------------------------------- |
| 5533 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5534 | Copyright (c) 2013-2015, Linaro Limited |
| 5535 | All rights reserved. |
| 5536 | |
| 5537 | Redistribution and use in source and binary forms, with or without |
| 5538 | modification, are permitted provided that the following conditions are met: |
| 5539 | * Redistributions of source code must retain the above copyright |
| 5540 | notice, this list of conditions and the following disclaimer. |
| 5541 | * Redistributions in binary form must reproduce the above copyright |
| 5542 | notice, this list of conditions and the following disclaimer in the |
| 5543 | documentation and/or other materials provided with the distribution. |
| 5544 | * Neither the name of the Linaro nor the |
| 5545 | names of its contributors may be used to endorse or promote products |
| 5546 | derived from this software without specific prior written permission. |
| 5547 | |
| 5548 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5549 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5550 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5551 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5552 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5553 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5554 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5555 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5556 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5557 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5558 | |
| 5559 | ------------------------------------------------------------------- |
| 5560 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 5561 | Copyright (c) 2014 |
| 5562 | Imagination Technologies Limited. |
| 5563 | |
| 5564 | Redistribution and use in source and binary forms, with or without |
| 5565 | modification, are permitted provided that the following conditions |
| 5566 | are met: |
| 5567 | 1. Redistributions of source code must retain the above copyright |
| 5568 | notice, this list of conditions and the following disclaimer. |
| 5569 | 2. Redistributions in binary form must reproduce the above copyright |
| 5570 | notice, this list of conditions and the following disclaimer in the |
| 5571 | documentation and/or other materials provided with the distribution. |
| 5572 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 5573 | contributors may be used to endorse or promote products derived from |
| 5574 | this software without specific prior written permission. |
| 5575 | |
| 5576 | THIS SOFTWARE IS PROVIDED BY IMAGINATION TECHNOLOGIES LIMITED ``AS IS'' AND |
| 5577 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5578 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5579 | ARE DISCLAIMED. IN NO EVENT SHALL IMAGINATION TECHNOLOGIES LIMITED BE LIABLE |
| 5580 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5581 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5582 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5583 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5584 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5585 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5586 | SUCH DAMAGE. |
| 5587 | |
| 5588 | ------------------------------------------------------------------- |
| 5589 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5590 | Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org> |
| 5591 | Copyright (c) 2014 Bob Beck <beck@obtuse.com> |
| 5592 | |
| 5593 | Permission to use, copy, modify, and distribute this software for any |
| 5594 | purpose with or without fee is hereby granted, provided that the above |
| 5595 | copyright notice and this permission notice appear in all copies. |
| 5596 | |
| 5597 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 5598 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 5599 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 5600 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5601 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 5602 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 5603 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 5604 | |
| 5605 | Emulation of getentropy(2) as documented at: |
Josh Gao | 98d655c | 2016-11-10 16:08:20 -0800 | [diff] [blame] | 5606 | http://man.openbsd.org/getentropy.2 |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5607 | |
| 5608 | ------------------------------------------------------------------- |
| 5609 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5610 | Copyright (c) 2014, Intel Corporation |
| 5611 | All rights reserved. |
| 5612 | |
| 5613 | Redistribution and use in source and binary forms, with or without |
| 5614 | modification, are permitted provided that the following conditions are met: |
| 5615 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5616 | * Redistributions of source code must retain the above copyright notice, |
| 5617 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5618 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5619 | * Redistributions in binary form must reproduce the above copyright notice, |
| 5620 | * this list of conditions and the following disclaimer in the documentation |
| 5621 | * and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5622 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5623 | * Neither the name of Intel Corporation nor the names of its contributors |
| 5624 | * may be used to endorse or promote products derived from this software |
| 5625 | * without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 5626 | |
| 5627 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 5628 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5629 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5630 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 5631 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5632 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5633 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 5634 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5635 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5636 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5637 | |
| 5638 | ------------------------------------------------------------------- |
| 5639 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5640 | Copyright (c) 2014, Linaro Limited |
| 5641 | All rights reserved. |
| 5642 | |
| 5643 | Redistribution and use in source and binary forms, with or without |
| 5644 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5645 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5646 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5647 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5648 | notice, this list of conditions and the following disclaimer in the |
| 5649 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5650 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 5651 | names of its contributors may be used to endorse or promote products |
| 5652 | derived from this software without specific prior written permission. |
| 5653 | |
| 5654 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5655 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5656 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5657 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5658 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5659 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5660 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5661 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5662 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5663 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5664 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5665 | |
| 5666 | ------------------------------------------------------------------- |
| 5667 | |
Jake Weinstein | 372f19e | 2016-11-17 16:01:25 -0500 | [diff] [blame] | 5668 | Copyright (c) 2015 ARM Ltd |
| 5669 | All rights reserved. |
| 5670 | |
| 5671 | Redistribution and use in source and binary forms, with or without |
| 5672 | modification, are permitted provided that the following conditions |
| 5673 | are met: |
| 5674 | 1. Redistributions of source code must retain the above copyright |
| 5675 | notice, this list of conditions and the following disclaimer. |
| 5676 | 2. Redistributions in binary form must reproduce the above copyright |
| 5677 | notice, this list of conditions and the following disclaimer in the |
| 5678 | documentation and/or other materials provided with the distribution. |
| 5679 | 3. The name of the company may not be used to endorse or promote |
| 5680 | products derived from this software without specific prior written |
| 5681 | permission. |
| 5682 | |
| 5683 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 5684 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 5685 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5686 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5687 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 5688 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 5689 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 5690 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 5691 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 5692 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5693 | |
| 5694 | ------------------------------------------------------------------- |
| 5695 | |
Elliott Hughes | b4931ce | 2016-02-08 17:00:12 -0800 | [diff] [blame] | 5696 | Copyright (c) 2015 Joerg Sonnenberger <joerg@NetBSD.org>. |
| 5697 | All rights reserved. |
| 5698 | |
| 5699 | Redistribution and use in source and binary forms, with or without |
| 5700 | modification, are permitted provided that the following conditions |
| 5701 | are met: |
| 5702 | |
| 5703 | 1. Redistributions of source code must retain the above copyright |
| 5704 | notice, this list of conditions and the following disclaimer. |
| 5705 | 2. Redistributions in binary form must reproduce the above copyright |
| 5706 | notice, this list of conditions and the following disclaimer in |
| 5707 | the documentation and/or other materials provided with the |
| 5708 | distribution. |
| 5709 | |
| 5710 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5711 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5712 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 5713 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 5714 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5715 | INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 5716 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 5717 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 5718 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 5719 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 5720 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5721 | SUCH DAMAGE. |
| 5722 | |
| 5723 | ------------------------------------------------------------------- |
| 5724 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5725 | Copyright (c)1999 Citrus Project, |
| 5726 | All rights reserved. |
| 5727 | |
| 5728 | Redistribution and use in source and binary forms, with or without |
| 5729 | modification, are permitted provided that the following conditions |
| 5730 | are met: |
| 5731 | 1. Redistributions of source code must retain the above copyright |
| 5732 | notice, this list of conditions and the following disclaimer. |
| 5733 | 2. Redistributions in binary form must reproduce the above copyright |
| 5734 | notice, this list of conditions and the following disclaimer in the |
| 5735 | documentation and/or other materials provided with the distribution. |
| 5736 | |
| 5737 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5738 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5739 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5740 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5741 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5742 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5743 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5744 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5745 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5746 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5747 | SUCH DAMAGE. |
| 5748 | |
| 5749 | ------------------------------------------------------------------- |
| 5750 | |
| 5751 | Copyright (c)2001 Citrus Project, |
| 5752 | All rights reserved. |
| 5753 | |
| 5754 | Redistribution and use in source and binary forms, with or without |
| 5755 | modification, are permitted provided that the following conditions |
| 5756 | are met: |
| 5757 | 1. Redistributions of source code must retain the above copyright |
| 5758 | notice, this list of conditions and the following disclaimer. |
| 5759 | 2. Redistributions in binary form must reproduce the above copyright |
| 5760 | notice, this list of conditions and the following disclaimer in the |
| 5761 | documentation and/or other materials provided with the distribution. |
| 5762 | |
| 5763 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5764 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5765 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5766 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5767 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5768 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5769 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5770 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5771 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5772 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5773 | SUCH DAMAGE. |
| 5774 | |
| 5775 | ------------------------------------------------------------------- |
| 5776 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5777 | Copyright (c)2003 Citrus Project, |
| 5778 | All rights reserved. |
| 5779 | |
| 5780 | Redistribution and use in source and binary forms, with or without |
| 5781 | modification, are permitted provided that the following conditions |
| 5782 | are met: |
| 5783 | 1. Redistributions of source code must retain the above copyright |
| 5784 | notice, this list of conditions and the following disclaimer. |
| 5785 | 2. Redistributions in binary form must reproduce the above copyright |
| 5786 | notice, this list of conditions and the following disclaimer in the |
| 5787 | documentation and/or other materials provided with the distribution. |
| 5788 | |
| 5789 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 5790 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5791 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5792 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 5793 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5794 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5795 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5796 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5797 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5798 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5799 | SUCH DAMAGE. |
| 5800 | |
| 5801 | ------------------------------------------------------------------- |
| 5802 | |
Elliott Hughes | 77a3e28 | 2016-08-08 12:39:56 -0700 | [diff] [blame] | 5803 | Copyright 1989 The Regents of the University of California. |
| 5804 | All rights reserved. |
| 5805 | |
| 5806 | Redistribution and use in source and binary forms, with or without |
| 5807 | modification, are permitted provided that the following conditions |
| 5808 | are met: |
| 5809 | 1. Redistributions of source code must retain the above copyright |
| 5810 | notice, this list of conditions and the following disclaimer. |
| 5811 | 2. Redistributions in binary form must reproduce the above copyright |
| 5812 | notice, this list of conditions and the following disclaimer in the |
| 5813 | documentation and/or other materials provided with the distribution. |
| 5814 | 3. Neither the name of the University nor the names of its contributors |
| 5815 | may be used to endorse or promote products derived from this software |
| 5816 | without specific prior written permission. |
| 5817 | |
| 5818 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND |
| 5819 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 5820 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 5821 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 5822 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 5823 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 5824 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 5825 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5826 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5827 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5828 | |
| 5829 | ------------------------------------------------------------------- |
| 5830 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 5831 | Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
| 5832 | Copyright 2008 Damien Miller <djm@openbsd.org> |
| 5833 | All rights reserved. |
| 5834 | |
| 5835 | Theo de Raadt <deraadt@openbsd.org> came up with the idea of using |
| 5836 | such a mathematical system to generate more random (yet non-repeating) |
| 5837 | ids to solve the resolver/named problem. But Niels designed the |
| 5838 | actual system based on the constraints. |
| 5839 | |
| 5840 | Later modified by Damien Miller to wrap the LCG output in a 15-bit |
| 5841 | permutation generator based on a Luby-Rackoff block cipher. This |
| 5842 | ensures the output is non-repeating and preserves the MSB twiddle |
| 5843 | trick, but makes it more resistant to LCG prediction. |
| 5844 | |
| 5845 | Redistribution and use in source and binary forms, with or without |
| 5846 | modification, are permitted provided that the following conditions |
| 5847 | are met: |
| 5848 | 1. Redistributions of source code must retain the above copyright |
| 5849 | notice, this list of conditions and the following disclaimer. |
| 5850 | 2. Redistributions in binary form must reproduce the above copyright |
| 5851 | notice, this list of conditions and the following disclaimer in the |
| 5852 | documentation and/or other materials provided with the distribution. |
| 5853 | |
| 5854 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 5855 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 5856 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 5857 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 5858 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 5859 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5860 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5861 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5862 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 5863 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5864 | |
| 5865 | ------------------------------------------------------------------- |
| 5866 | |
Dan Albert | c30862f | 2016-10-20 11:45:16 -0700 | [diff] [blame] | 5867 | From: @(#)s_ilogb.c 5.1 93/09/24 |
| 5868 | ==================================================== |
| 5869 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 5870 | |
| 5871 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 5872 | Permission to use, copy, modify, and distribute this |
| 5873 | software is freely granted, provided that this notice |
| 5874 | is preserved. |
| 5875 | |
| 5876 | ------------------------------------------------------------------- |
| 5877 | |
Calin Juravle | c4fbf92 | 2014-03-10 11:23:52 +0000 | [diff] [blame] | 5878 | Portions Copyright (C) 2004, 2005, 2008, 2009 Internet Systems Consortium, Inc. ("ISC") |
| 5879 | Portions Copyright (C) 1996-2003 Internet Software Consortium. |
| 5880 | |
| 5881 | Permission to use, copy, modify, and/or distribute this software for any |
| 5882 | purpose with or without fee is hereby granted, provided that the above |
| 5883 | copyright notice and this permission notice appear in all copies. |
| 5884 | |
| 5885 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 5886 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 5887 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 5888 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 5889 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 5890 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 5891 | PERFORMANCE OF THIS SOFTWARE. |
| 5892 | |
| 5893 | ------------------------------------------------------------------- |
| 5894 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5895 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 5896 | |
| 5897 | Permission to use, copy, modify, and distribute this software for any |
| 5898 | purpose with or without fee is hereby granted, provided that the above |
| 5899 | copyright notice and this permission notice appear in all copies, and that |
| 5900 | the name of Digital Equipment Corporation not be used in advertising or |
| 5901 | publicity pertaining to distribution of the document or software without |
| 5902 | specific, written prior permission. |
| 5903 | |
| 5904 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 5905 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 5906 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 5907 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 5908 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 5909 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 5910 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 5911 | SOFTWARE. |
| 5912 | |
| 5913 | ------------------------------------------------------------------- |
| 5914 | |
| 5915 | Portions Copyright (c) 1995 by International Business Machines, Inc. |
| 5916 | |
| 5917 | International Business Machines, Inc. (hereinafter called IBM) grants |
| 5918 | permission under its copyrights to use, copy, modify, and distribute this |
| 5919 | Software with or without fee, provided that the above copyright notice and |
| 5920 | all paragraphs of this notice appear in all copies, and that the name of IBM |
| 5921 | not be used in connection with the marketing of any product incorporating |
| 5922 | the Software or modifications thereof, without specific, written prior |
| 5923 | permission. |
| 5924 | |
| 5925 | To the extent it has a right to do so, IBM grants an immunity from suit |
| 5926 | under its patents, if any, for the use, sale or manufacture of products to |
| 5927 | the extent that such products are used for performing Domain Name System |
| 5928 | dynamic updates in TCP/IP networks by means of the Software. No immunity is |
| 5929 | granted for any product per se or for any other function of any product. |
| 5930 | |
| 5931 | THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, |
| 5932 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 5933 | PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, |
| 5934 | DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING |
| 5935 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN |
| 5936 | IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| 5937 | |
| 5938 | ------------------------------------------------------------------- |
| 5939 | |
| 5940 | Portions Copyright(C) 1995, Jason Downs. All rights reserved. |
| 5941 | |
| 5942 | Redistribution and use in source and binary forms, with or without |
| 5943 | modification, are permitted provided that the following conditions |
| 5944 | are met: |
| 5945 | 1. Redistributions of source code must retain the above copyright |
| 5946 | notice, this list of conditions and the following disclaimer. |
| 5947 | 2. Redistributions in binary form must reproduce the above copyright |
| 5948 | notice, this list of conditions and the following disclaimer in the |
| 5949 | documentation and/or other materials provided with the distribution. |
| 5950 | |
| 5951 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS |
| 5952 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 5953 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 5954 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, |
| 5955 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 5956 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 5957 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 5958 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 5959 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 5960 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 5961 | SUCH DAMAGE. |
| 5962 | |
| 5963 | ------------------------------------------------------------------- |
| 5964 | |
| 5965 | The author of this software is David M. Gay. |
| 5966 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5967 | Copyright (C) 1998 by Lucent Technologies |
| 5968 | All Rights Reserved |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5969 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5970 | Permission to use, copy, modify, and distribute this software and |
| 5971 | its documentation for any purpose and without fee is hereby |
| 5972 | granted, provided that the above copyright notice appear in all |
| 5973 | copies and that both that the copyright notice and this |
| 5974 | permission notice and warranty disclaimer appear in supporting |
| 5975 | documentation, and that the name of Lucent or any of its entities |
| 5976 | not be used in advertising or publicity pertaining to |
| 5977 | distribution of the software without specific, written prior |
| 5978 | permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5979 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 5980 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5981 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5982 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5983 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5984 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5985 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5986 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5987 | THIS SOFTWARE. |
| 5988 | |
| 5989 | ------------------------------------------------------------------- |
| 5990 | |
| 5991 | The author of this software is David M. Gay. |
| 5992 | |
| 5993 | Copyright (C) 1998, 1999 by Lucent Technologies |
| 5994 | All Rights Reserved |
| 5995 | |
| 5996 | Permission to use, copy, modify, and distribute this software and |
| 5997 | its documentation for any purpose and without fee is hereby |
| 5998 | granted, provided that the above copyright notice appear in all |
| 5999 | copies and that both that the copyright notice and this |
| 6000 | permission notice and warranty disclaimer appear in supporting |
| 6001 | documentation, and that the name of Lucent or any of its entities |
| 6002 | not be used in advertising or publicity pertaining to |
| 6003 | distribution of the software without specific, written prior |
| 6004 | permission. |
| 6005 | |
| 6006 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6007 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6008 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6009 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6010 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6011 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6012 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6013 | THIS SOFTWARE. |
| 6014 | |
| 6015 | ------------------------------------------------------------------- |
| 6016 | |
| 6017 | The author of this software is David M. Gay. |
| 6018 | |
| 6019 | Copyright (C) 1998, 2000 by Lucent Technologies |
| 6020 | All Rights Reserved |
| 6021 | |
| 6022 | Permission to use, copy, modify, and distribute this software and |
| 6023 | its documentation for any purpose and without fee is hereby |
| 6024 | granted, provided that the above copyright notice appear in all |
| 6025 | copies and that both that the copyright notice and this |
| 6026 | permission notice and warranty disclaimer appear in supporting |
| 6027 | documentation, and that the name of Lucent or any of its entities |
| 6028 | not be used in advertising or publicity pertaining to |
| 6029 | distribution of the software without specific, written prior |
| 6030 | permission. |
| 6031 | |
| 6032 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6033 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6034 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6035 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6036 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6037 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6038 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6039 | THIS SOFTWARE. |
| 6040 | |
| 6041 | ------------------------------------------------------------------- |
| 6042 | |
| 6043 | The author of this software is David M. Gay. |
| 6044 | |
| 6045 | Copyright (C) 1998-2000 by Lucent Technologies |
| 6046 | All Rights Reserved |
| 6047 | |
| 6048 | Permission to use, copy, modify, and distribute this software and |
| 6049 | its documentation for any purpose and without fee is hereby |
| 6050 | granted, provided that the above copyright notice appear in all |
| 6051 | copies and that both that the copyright notice and this |
| 6052 | permission notice and warranty disclaimer appear in supporting |
| 6053 | documentation, and that the name of Lucent or any of its entities |
| 6054 | not be used in advertising or publicity pertaining to |
| 6055 | distribution of the software without specific, written prior |
| 6056 | permission. |
| 6057 | |
| 6058 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6059 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6060 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6061 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6062 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6063 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6064 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6065 | THIS SOFTWARE. |
| 6066 | |
| 6067 | ------------------------------------------------------------------- |
| 6068 | |
| 6069 | The author of this software is David M. Gay. |
| 6070 | |
| 6071 | Copyright (C) 1998-2001 by Lucent Technologies |
| 6072 | All Rights Reserved |
| 6073 | |
| 6074 | Permission to use, copy, modify, and distribute this software and |
| 6075 | its documentation for any purpose and without fee is hereby |
| 6076 | granted, provided that the above copyright notice appear in all |
| 6077 | copies and that both that the copyright notice and this |
| 6078 | permission notice and warranty disclaimer appear in supporting |
| 6079 | documentation, and that the name of Lucent or any of its entities |
| 6080 | not be used in advertising or publicity pertaining to |
| 6081 | distribution of the software without specific, written prior |
| 6082 | permission. |
| 6083 | |
| 6084 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6085 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6086 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6087 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6088 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6089 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6090 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6091 | THIS SOFTWARE. |
| 6092 | |
| 6093 | ------------------------------------------------------------------- |
| 6094 | |
| 6095 | The author of this software is David M. Gay. |
| 6096 | |
| 6097 | Copyright (C) 2000 by Lucent Technologies |
| 6098 | All Rights Reserved |
| 6099 | |
| 6100 | Permission to use, copy, modify, and distribute this software and |
| 6101 | its documentation for any purpose and without fee is hereby |
| 6102 | granted, provided that the above copyright notice appear in all |
| 6103 | copies and that both that the copyright notice and this |
| 6104 | permission notice and warranty disclaimer appear in supporting |
| 6105 | documentation, and that the name of Lucent or any of its entities |
| 6106 | not be used in advertising or publicity pertaining to |
| 6107 | distribution of the software without specific, written prior |
| 6108 | permission. |
| 6109 | |
| 6110 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 6111 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 6112 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 6113 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 6114 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 6115 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 6116 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 6117 | THIS SOFTWARE. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 6118 | |
| 6119 | ------------------------------------------------------------------- |
| 6120 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 6121 | memchr - find a character in a memory zone |
| 6122 | |
| 6123 | Copyright (c) 2014, ARM Limited |
| 6124 | All rights Reserved. |
| 6125 | Copyright (c) 2014, Linaro Ltd. |
| 6126 | |
| 6127 | Redistribution and use in source and binary forms, with or without |
| 6128 | modification, are permitted provided that the following conditions are met: |
| 6129 | * Redistributions of source code must retain the above copyright |
| 6130 | notice, this list of conditions and the following disclaimer. |
| 6131 | * Redistributions in binary form must reproduce the above copyright |
| 6132 | notice, this list of conditions and the following disclaimer in the |
| 6133 | documentation and/or other materials provided with the distribution. |
| 6134 | * Neither the name of the company nor the names of its contributors |
| 6135 | may be used to endorse or promote products derived from this |
| 6136 | software without specific prior written permission. |
| 6137 | |
| 6138 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 6139 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 6140 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 6141 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 6142 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 6143 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 6144 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 6145 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 6146 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 6147 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 6148 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 6149 | |
| 6150 | ------------------------------------------------------------------- |
| 6151 | |