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