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