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 | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 88 | ==================================================== |
| 89 | Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
| 90 | |
| 91 | Developed at SunPro, a Sun Microsystems, Inc. business. |
| 92 | Permission to use, copy, modify, and distribute this |
| 93 | software is freely granted, provided that this notice |
| 94 | is preserved. |
| 95 | |
| 96 | ------------------------------------------------------------------- |
| 97 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 98 | Based on the UCB version with the ID appearing below. |
| 99 | This is ANSIish only when "multibyte character == plain character". |
| 100 | |
| 101 | Copyright (c) 1989, 1993 |
| 102 | The Regents of the University of California. All rights reserved. |
| 103 | |
| 104 | Redistribution and use in source and binary forms, with or without |
| 105 | modification, are permitted provided that the following conditions |
| 106 | are met: |
| 107 | 1. Redistributions of source code must retain the above copyright |
| 108 | notice, this list of conditions and the following disclaimer. |
| 109 | 2. Redistributions in binary form must reproduce the above copyright |
| 110 | notice, this list of conditions and the following disclaimer in the |
| 111 | documentation and/or other materials provided with the distribution. |
| 112 | 3. Neither the name of the University nor the names of its contributors |
| 113 | may be used to endorse or promote products derived from this software |
| 114 | without specific prior written permission. |
| 115 | |
| 116 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 117 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 118 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 119 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 120 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 121 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 122 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 123 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 124 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 125 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 126 | SUCH DAMAGE. |
| 127 | |
| 128 | ------------------------------------------------------------------- |
| 129 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 130 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 131 | All rights reserved. |
| 132 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 133 | Redistribution and use in source and binary forms, with or without |
| 134 | modification, are permitted provided that the following conditions |
| 135 | are met: |
| 136 | 1. Redistributions of source code must retain the above copyright |
| 137 | notice, this list of conditions and the following disclaimer. |
| 138 | 2. Redistributions in binary form must reproduce the above copyright |
| 139 | notice, this list of conditions and the following disclaimer in the |
| 140 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 141 | 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] | 142 | may be used to endorse or promote products derived from this software |
| 143 | without specific prior written permission. |
| 144 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 145 | 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] | 146 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 147 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 148 | 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] | 149 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 150 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 151 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 152 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 153 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 154 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 155 | SUCH DAMAGE. |
| 156 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 157 | ------------------------------------------------------------------- |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 158 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 159 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 160 | Copyright (C) 1995-1999, 2001, 2003 Internet Software Consortium. |
| 161 | |
| 162 | Permission to use, copy, modify, and/or distribute this software for any |
| 163 | purpose with or without fee is hereby granted, provided that the above |
| 164 | copyright notice and this permission notice appear in all copies. |
| 165 | |
| 166 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 167 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 168 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 169 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 170 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 171 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 172 | PERFORMANCE OF THIS SOFTWARE. |
| 173 | |
| 174 | ------------------------------------------------------------------- |
| 175 | |
| 176 | Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC") |
| 177 | Copyright (C) 1997-2001 Internet Software Consortium. |
| 178 | |
| 179 | Permission to use, copy, modify, and/or distribute this software for any |
| 180 | purpose with or without fee is hereby granted, provided that the above |
| 181 | copyright notice and this permission notice appear in all copies. |
| 182 | |
| 183 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 184 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 185 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 186 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 187 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 188 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 189 | PERFORMANCE OF THIS SOFTWARE. |
| 190 | |
| 191 | ------------------------------------------------------------------- |
| 192 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 193 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 194 | |
| 195 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 196 | you may not use this file except in compliance with the License. |
| 197 | You may obtain a copy of the License at |
| 198 | |
| 199 | http://www.apache.org/licenses/LICENSE-2.0 |
| 200 | |
| 201 | Unless required by applicable law or agreed to in writing, software |
| 202 | distributed under the License is distributed on an "AS IS" BASIS, |
| 203 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 204 | See the License for the specific language governing permissions and |
| 205 | limitations under the License. |
| 206 | |
| 207 | ------------------------------------------------------------------- |
| 208 | |
| 209 | Copyright (C) 2006 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 210 | All rights reserved. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 211 | |
| 212 | Redistribution and use in source and binary forms, with or without |
| 213 | modification, are permitted provided that the following conditions |
| 214 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 215 | * Redistributions of source code must retain the above copyright |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 216 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 217 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 218 | notice, this list of conditions and the following disclaimer in |
| 219 | the documentation and/or other materials provided with the |
| 220 | distribution. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 221 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 222 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 223 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 224 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 225 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 226 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 227 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 228 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 229 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 230 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 231 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 232 | 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] | 233 | SUCH DAMAGE. |
| 234 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 235 | ------------------------------------------------------------------- |
| 236 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 237 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 238 | |
| 239 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 240 | you may not use this file except in compliance with the License. |
| 241 | You may obtain a copy of the License at |
| 242 | |
| 243 | http://www.apache.org/licenses/LICENSE-2.0 |
| 244 | |
| 245 | Unless required by applicable law or agreed to in writing, software |
| 246 | distributed under the License is distributed on an "AS IS" BASIS, |
| 247 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 248 | See the License for the specific language governing permissions and |
| 249 | limitations under the License. |
| 250 | |
| 251 | ------------------------------------------------------------------- |
| 252 | |
| 253 | Copyright (C) 2008 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 254 | All rights reserved. |
| 255 | |
| 256 | Redistribution and use in source and binary forms, with or without |
| 257 | modification, are permitted provided that the following conditions |
| 258 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 259 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 260 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 261 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 262 | notice, this list of conditions and the following disclaimer in |
| 263 | the documentation and/or other materials provided with the |
| 264 | distribution. |
| 265 | |
| 266 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 267 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 268 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 269 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 270 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 271 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 272 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 273 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 274 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 275 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 276 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 277 | SUCH DAMAGE. |
| 278 | |
| 279 | ------------------------------------------------------------------- |
| 280 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 281 | Copyright (C) 2008 The Android Open Source Project |
| 282 | All rights reserved. |
| 283 | Copyright (c) 2013-2014, NVIDIA Corporation. All rights reserved. |
| 284 | |
| 285 | Redistribution and use in source and binary forms, with or without |
| 286 | modification, are permitted provided that the following conditions |
| 287 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 288 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 289 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 290 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 291 | notice, this list of conditions and the following disclaimer in |
| 292 | the documentation and/or other materials provided with the |
| 293 | distribution. |
| 294 | |
| 295 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 296 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 297 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 298 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 299 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 300 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 301 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 302 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 303 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 304 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 305 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 306 | SUCH DAMAGE. |
| 307 | |
| 308 | ------------------------------------------------------------------- |
| 309 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 310 | Copyright (C) 2009 The Android Open Source Project |
| 311 | All rights reserved. |
| 312 | |
| 313 | Redistribution and use in source and binary forms, with or without |
| 314 | modification, are permitted provided that the following conditions |
| 315 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 316 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 317 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 318 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 319 | notice, this list of conditions and the following disclaimer in |
| 320 | the documentation and/or other materials provided with the |
| 321 | distribution. |
| 322 | |
| 323 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 324 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 325 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 326 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 327 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 328 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 329 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 330 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 331 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 332 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 333 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 334 | SUCH DAMAGE. |
| 335 | |
| 336 | ------------------------------------------------------------------- |
| 337 | |
| 338 | Copyright (C) 2010 The Android Open Source Project |
| 339 | |
| 340 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 341 | you may not use this file except in compliance with the License. |
| 342 | You may obtain a copy of the License at |
| 343 | |
| 344 | http://www.apache.org/licenses/LICENSE-2.0 |
| 345 | |
| 346 | Unless required by applicable law or agreed to in writing, software |
| 347 | distributed under the License is distributed on an "AS IS" BASIS, |
| 348 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 349 | See the License for the specific language governing permissions and |
| 350 | limitations under the License. |
| 351 | |
| 352 | ------------------------------------------------------------------- |
| 353 | |
| 354 | Copyright (C) 2010 The Android Open Source Project |
| 355 | All rights reserved. |
| 356 | |
| 357 | Redistribution and use in source and binary forms, with or without |
| 358 | modification, are permitted provided that the following conditions |
| 359 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 360 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 361 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 362 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 363 | notice, this list of conditions and the following disclaimer in |
| 364 | the documentation and/or other materials provided with the |
| 365 | distribution. |
| 366 | |
| 367 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 368 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 369 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 370 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 371 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 372 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 373 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 374 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 375 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 376 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 377 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 378 | SUCH DAMAGE. |
| 379 | |
| 380 | ------------------------------------------------------------------- |
| 381 | |
| 382 | Copyright (C) 2010 The Android Open Source Project |
| 383 | Copyright (c) 2008 ARM Ltd |
| 384 | All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 385 | |
| 386 | Redistribution and use in source and binary forms, with or without |
| 387 | modification, are permitted provided that the following conditions |
| 388 | are met: |
| 389 | 1. Redistributions of source code must retain the above copyright |
| 390 | notice, this list of conditions and the following disclaimer. |
| 391 | 2. Redistributions in binary form must reproduce the above copyright |
| 392 | notice, this list of conditions and the following disclaimer in the |
| 393 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 394 | 3. The name of the company may not be used to endorse or promote |
| 395 | products derived from this software without specific prior written |
| 396 | permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 397 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 398 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 399 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 400 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 401 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 402 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 403 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 404 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 405 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 406 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 407 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 408 | |
| 409 | Android adaptation and tweak by Jim Huang <jserv@0xlab.org>. |
| 410 | |
| 411 | ------------------------------------------------------------------- |
| 412 | |
| 413 | Copyright (C) 2011 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 414 | All rights reserved. |
| 415 | |
| 416 | Redistribution and use in source and binary forms, with or without |
| 417 | modification, are permitted provided that the following conditions |
| 418 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 419 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 420 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 421 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 422 | notice, this list of conditions and the following disclaimer in |
| 423 | the documentation and/or other materials provided with the |
| 424 | distribution. |
| 425 | |
| 426 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 427 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 428 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 429 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 430 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 431 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 432 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 433 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 434 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 435 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 436 | 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] | 437 | SUCH DAMAGE. |
| 438 | |
| 439 | ------------------------------------------------------------------- |
| 440 | |
| 441 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 442 | |
| 443 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 444 | you may not use this file except in compliance with the License. |
| 445 | You may obtain a copy of the License at |
| 446 | |
| 447 | http://www.apache.org/licenses/LICENSE-2.0 |
| 448 | |
| 449 | Unless required by applicable law or agreed to in writing, software |
| 450 | distributed under the License is distributed on an "AS IS" BASIS, |
| 451 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 452 | See the License for the specific language governing permissions and |
| 453 | limitations under the License. |
| 454 | |
| 455 | ------------------------------------------------------------------- |
| 456 | |
| 457 | Copyright (C) 2012 The Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 458 | All rights reserved. |
| 459 | |
| 460 | Redistribution and use in source and binary forms, with or without |
| 461 | modification, are permitted provided that the following conditions |
| 462 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 463 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 464 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 465 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 466 | notice, this list of conditions and the following disclaimer in |
| 467 | the documentation and/or other materials provided with the |
| 468 | distribution. |
| 469 | |
| 470 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 471 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 472 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 473 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 474 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 475 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 476 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 477 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 478 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 479 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 480 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 481 | SUCH DAMAGE. |
| 482 | |
| 483 | ------------------------------------------------------------------- |
| 484 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 485 | Copyright (C) 2013 The Android Open Source Project |
| 486 | |
| 487 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 488 | you may not use this file except in compliance with the License. |
| 489 | You may obtain a copy of the License at |
| 490 | |
| 491 | http://www.apache.org/licenses/LICENSE-2.0 |
| 492 | |
| 493 | Unless required by applicable law or agreed to in writing, software |
| 494 | distributed under the License is distributed on an "AS IS" BASIS, |
| 495 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 496 | See the License for the specific language governing permissions and |
| 497 | limitations under the License. |
| 498 | |
| 499 | ------------------------------------------------------------------- |
| 500 | |
| 501 | Copyright (C) 2013 The Android Open Source Project |
| 502 | All rights reserved. |
| 503 | |
| 504 | Redistribution and use in source and binary forms, with or without |
| 505 | modification, are permitted provided that the following conditions |
| 506 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 507 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 508 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 509 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 510 | notice, this list of conditions and the following disclaimer in |
| 511 | the documentation and/or other materials provided with the |
| 512 | distribution. |
| 513 | |
| 514 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 515 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 516 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 517 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 518 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 519 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 520 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 521 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 522 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 523 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 524 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 525 | SUCH DAMAGE. |
| 526 | |
| 527 | ------------------------------------------------------------------- |
| 528 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 529 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 530 | All rights reserved. |
| 531 | Copyright (c) 2013-2014 NVIDIA Corporation. All rights reserved. |
| 532 | |
| 533 | Redistribution and use in source and binary forms, with or without |
| 534 | modification, are permitted provided that the following conditions |
| 535 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 536 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 537 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 538 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 539 | notice, this list of conditions and the following disclaimer in |
| 540 | the documentation and/or other materials provided with the |
| 541 | distribution. |
| 542 | |
| 543 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 544 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 545 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 546 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 547 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 548 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 549 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 550 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 551 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 552 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 553 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 554 | SUCH DAMAGE. |
| 555 | |
| 556 | ------------------------------------------------------------------- |
| 557 | |
| 558 | Copyright (C) 2013 The Android Open Source Project |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 559 | Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. |
| 560 | All rights reserved. |
| 561 | |
| 562 | Redistribution and use in source and binary forms, with or without |
| 563 | modification, are permitted provided that the following conditions |
| 564 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 565 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 566 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 567 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 568 | notice, this list of conditions and the following disclaimer in |
| 569 | the documentation and/or other materials provided with the |
| 570 | distribution. |
| 571 | |
| 572 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 573 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 574 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 575 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 576 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 577 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 578 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 579 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 580 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 581 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 582 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 583 | SUCH DAMAGE. |
| 584 | |
| 585 | ------------------------------------------------------------------- |
| 586 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 587 | Copyright (C) 2014 The Android Open Source Project |
| 588 | |
| 589 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 590 | you may not use this file except in compliance with the License. |
| 591 | You may obtain a copy of the License at |
| 592 | |
| 593 | http://www.apache.org/licenses/LICENSE-2.0 |
| 594 | |
| 595 | Unless required by applicable law or agreed to in writing, software |
| 596 | distributed under the License is distributed on an "AS IS" BASIS, |
| 597 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 598 | See the License for the specific language governing permissions and |
| 599 | limitations under the License. |
| 600 | |
| 601 | ------------------------------------------------------------------- |
| 602 | |
| 603 | Copyright (C) 2014 The Android Open Source Project |
| 604 | All rights reserved. |
| 605 | |
| 606 | Redistribution and use in source and binary forms, with or without |
| 607 | modification, are permitted provided that the following conditions |
| 608 | are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 609 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 610 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 611 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 612 | notice, this list of conditions and the following disclaimer in |
| 613 | the documentation and/or other materials provided with the |
| 614 | distribution. |
| 615 | |
| 616 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 617 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 618 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 619 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 620 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 621 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 622 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 623 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 624 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 625 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 626 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 627 | SUCH DAMAGE. |
| 628 | |
| 629 | ------------------------------------------------------------------- |
| 630 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 631 | Copyright (C) 2015 The Android Open Source Project |
| 632 | |
| 633 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 634 | you may not use this file except in compliance with the License. |
| 635 | You may obtain a copy of the License at |
| 636 | |
| 637 | http://www.apache.org/licenses/LICENSE-2.0 |
| 638 | |
| 639 | Unless required by applicable law or agreed to in writing, software |
| 640 | distributed under the License is distributed on an "AS IS" BASIS, |
| 641 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 642 | See the License for the specific language governing permissions and |
| 643 | limitations under the License. |
| 644 | |
| 645 | ------------------------------------------------------------------- |
| 646 | |
| 647 | Copyright (C) 2015 The Android Open Source Project |
| 648 | All rights reserved. |
| 649 | |
| 650 | Redistribution and use in source and binary forms, with or without |
| 651 | modification, are permitted provided that the following conditions |
| 652 | are met: |
| 653 | * Redistributions of source code must retain the above copyright |
| 654 | notice, this list of conditions and the following disclaimer. |
| 655 | * Redistributions in binary form must reproduce the above copyright |
| 656 | notice, this list of conditions and the following disclaimer in |
| 657 | the documentation and/or other materials provided with the |
| 658 | distribution. |
| 659 | |
| 660 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 661 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 662 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 663 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 664 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 665 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 666 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 667 | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 668 | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 669 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 670 | OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 671 | SUCH DAMAGE. |
| 672 | |
| 673 | ------------------------------------------------------------------- |
| 674 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 675 | Copyright (c) 1980, 1983, 1988, 1993 |
| 676 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 677 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 678 | Redistribution and use in source and binary forms, with or without |
| 679 | modification, are permitted provided that the following conditions |
| 680 | are met: |
| 681 | 1. Redistributions of source code must retain the above copyright |
| 682 | notice, this list of conditions and the following disclaimer. |
| 683 | 2. Redistributions in binary form must reproduce the above copyright |
| 684 | notice, this list of conditions and the following disclaimer in the |
| 685 | documentation and/or other materials provided with the distribution. |
| 686 | 3. All advertising materials mentioning features or use of this software |
| 687 | must display the following acknowledgement: |
| 688 | This product includes software developed by the University of |
| 689 | California, Berkeley and its contributors. |
| 690 | 4. Neither the name of the University nor the names of its contributors |
| 691 | may be used to endorse or promote products derived from this software |
| 692 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 693 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 694 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 695 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 696 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 697 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 698 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 699 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 700 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 701 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 702 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 703 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 704 | SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 705 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 706 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 707 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 708 | |
| 709 | Permission to use, copy, modify, and distribute this software for any |
| 710 | purpose with or without fee is hereby granted, provided that the above |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 711 | copyright notice and this permission notice appear in all copies, and that |
| 712 | the name of Digital Equipment Corporation not be used in advertising or |
| 713 | publicity pertaining to distribution of the document or software without |
| 714 | specific, written prior permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 715 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 716 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 717 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 718 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 719 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 720 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 721 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 722 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 723 | SOFTWARE. |
| 724 | |
| 725 | ------------------------------------------------------------------- |
| 726 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 727 | Copyright (c) 1982, 1986, 1993 |
| 728 | The Regents of the University of California. All rights reserved. |
| 729 | |
| 730 | Redistribution and use in source and binary forms, with or without |
| 731 | modification, are permitted provided that the following conditions |
| 732 | are met: |
| 733 | 1. Redistributions of source code must retain the above copyright |
| 734 | notice, this list of conditions and the following disclaimer. |
| 735 | 2. Redistributions in binary form must reproduce the above copyright |
| 736 | notice, this list of conditions and the following disclaimer in the |
| 737 | documentation and/or other materials provided with the distribution. |
| 738 | 3. Neither the name of the University nor the names of its contributors |
| 739 | may be used to endorse or promote products derived from this software |
| 740 | without specific prior written permission. |
| 741 | |
| 742 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 743 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 744 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 745 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 746 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 747 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 748 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 749 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 750 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 751 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 752 | SUCH DAMAGE. |
| 753 | |
| 754 | ------------------------------------------------------------------- |
| 755 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 756 | Copyright (c) 1982, 1986, 1993 |
| 757 | The Regents of the University of California. All rights reserved. |
| 758 | (c) UNIX System Laboratories, Inc. |
| 759 | All or some portions of this file are derived from material licensed |
| 760 | to the University of California by American Telephone and Telegraph |
| 761 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 762 | the permission of UNIX System Laboratories, Inc. |
| 763 | |
| 764 | Redistribution and use in source and binary forms, with or without |
| 765 | modification, are permitted provided that the following conditions |
| 766 | are met: |
| 767 | 1. Redistributions of source code must retain the above copyright |
| 768 | notice, this list of conditions and the following disclaimer. |
| 769 | 2. Redistributions in binary form must reproduce the above copyright |
| 770 | notice, this list of conditions and the following disclaimer in the |
| 771 | documentation and/or other materials provided with the distribution. |
| 772 | 3. Neither the name of the University nor the names of its contributors |
| 773 | may be used to endorse or promote products derived from this software |
| 774 | without specific prior written permission. |
| 775 | |
| 776 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 777 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 778 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 779 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 780 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 781 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 782 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 783 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 784 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 785 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 786 | SUCH DAMAGE. |
| 787 | |
| 788 | ------------------------------------------------------------------- |
| 789 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 790 | Copyright (c) 1983, 1987, 1989 |
| 791 | The Regents of the University of California. All rights reserved. |
| 792 | |
| 793 | Redistribution and use in source and binary forms, with or without |
| 794 | modification, are permitted provided that the following conditions |
| 795 | are met: |
| 796 | 1. Redistributions of source code must retain the above copyright |
| 797 | notice, this list of conditions and the following disclaimer. |
| 798 | 2. Redistributions in binary form must reproduce the above copyright |
| 799 | notice, this list of conditions and the following disclaimer in the |
| 800 | documentation and/or other materials provided with the distribution. |
| 801 | 3. Neither the name of the University nor the names of its contributors |
| 802 | may be used to endorse or promote products derived from this software |
| 803 | without specific prior written permission. |
| 804 | |
| 805 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 806 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 807 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 808 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 809 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 810 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 811 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 812 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 813 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 814 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 815 | SUCH DAMAGE. |
| 816 | |
| 817 | ------------------------------------------------------------------- |
| 818 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 819 | Copyright (c) 1983, 1989 |
| 820 | The Regents of the University of California. All rights reserved. |
| 821 | |
| 822 | Redistribution and use in source and binary forms, with or without |
| 823 | modification, are permitted provided that the following conditions |
| 824 | are met: |
| 825 | 1. Redistributions of source code must retain the above copyright |
| 826 | notice, this list of conditions and the following disclaimer. |
| 827 | 2. Redistributions in binary form must reproduce the above copyright |
| 828 | notice, this list of conditions and the following disclaimer in the |
| 829 | documentation and/or other materials provided with the distribution. |
| 830 | 3. All advertising materials mentioning features or use of this software |
| 831 | must display the following acknowledgement: |
| 832 | This product includes software developed by the University of |
| 833 | California, Berkeley and its contributors. |
| 834 | 4. Neither the name of the University nor the names of its contributors |
| 835 | may be used to endorse or promote products derived from this software |
| 836 | without specific prior written permission. |
| 837 | |
| 838 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 839 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 840 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 841 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 842 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 843 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 844 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 845 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 846 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 847 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 848 | SUCH DAMAGE. |
| 849 | |
| 850 | ------------------------------------------------------------------- |
| 851 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 852 | Copyright (c) 1983, 1989, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 853 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 854 | |
| 855 | Redistribution and use in source and binary forms, with or without |
| 856 | modification, are permitted provided that the following conditions |
| 857 | are met: |
| 858 | 1. Redistributions of source code must retain the above copyright |
| 859 | notice, this list of conditions and the following disclaimer. |
| 860 | 2. Redistributions in binary form must reproduce the above copyright |
| 861 | notice, this list of conditions and the following disclaimer in the |
| 862 | documentation and/or other materials provided with the distribution. |
| 863 | 3. Neither the name of the University nor the names of its contributors |
| 864 | may be used to endorse or promote products derived from this software |
| 865 | without specific prior written permission. |
| 866 | |
| 867 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 868 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 869 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 870 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 871 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 872 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 873 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 874 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 875 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 876 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 877 | SUCH DAMAGE. |
| 878 | |
| 879 | ------------------------------------------------------------------- |
| 880 | |
| 881 | Copyright (c) 1983, 1990, 1993 |
| 882 | The Regents of the University of California. All rights reserved. |
| 883 | |
| 884 | Redistribution and use in source and binary forms, with or without |
| 885 | modification, are permitted provided that the following conditions |
| 886 | are met: |
| 887 | 1. Redistributions of source code must retain the above copyright |
| 888 | notice, this list of conditions and the following disclaimer. |
| 889 | 2. Redistributions in binary form must reproduce the above copyright |
| 890 | notice, this list of conditions and the following disclaimer in the |
| 891 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 892 | 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] | 893 | may be used to endorse or promote products derived from this software |
| 894 | without specific prior written permission. |
| 895 | |
| 896 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 897 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 898 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 899 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 900 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 901 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 902 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 903 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 904 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 905 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 906 | SUCH DAMAGE. |
| 907 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 908 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 909 | |
| 910 | Permission to use, copy, modify, and distribute this software for any |
| 911 | purpose with or without fee is hereby granted, provided that the above |
| 912 | copyright notice and this permission notice appear in all copies, and that |
| 913 | the name of Digital Equipment Corporation not be used in advertising or |
| 914 | publicity pertaining to distribution of the document or software without |
| 915 | specific, written prior permission. |
| 916 | |
| 917 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 918 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 919 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 920 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 921 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 922 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 923 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 924 | SOFTWARE. |
| 925 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 926 | ------------------------------------------------------------------- |
| 927 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 928 | Copyright (c) 1983, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 929 | The Regents of the University of California. All rights reserved. |
| 930 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 931 | Redistribution and use in source and binary forms, with or without |
| 932 | modification, are permitted provided that the following conditions |
| 933 | are met: |
| 934 | 1. Redistributions of source code must retain the above copyright |
| 935 | notice, this list of conditions and the following disclaimer. |
| 936 | 2. Redistributions in binary form must reproduce the above copyright |
| 937 | notice, this list of conditions and the following disclaimer in the |
| 938 | documentation and/or other materials provided with the distribution. |
| 939 | 3. Neither the name of the University nor the names of its contributors |
| 940 | may be used to endorse or promote products derived from this software |
| 941 | without specific prior written permission. |
| 942 | |
| 943 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 944 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 945 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 946 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 947 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 948 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 949 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 950 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 951 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 952 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 953 | SUCH DAMAGE. |
| 954 | |
| 955 | ------------------------------------------------------------------- |
| 956 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 957 | Copyright (c) 1983, 1993 |
| 958 | The Regents of the University of California. All rights reserved. |
| 959 | |
| 960 | Redistribution and use in source and binary forms, with or without |
| 961 | modification, are permitted provided that the following conditions |
| 962 | are met: |
| 963 | 1. Redistributions of source code must retain the above copyright |
| 964 | notice, this list of conditions and the following disclaimer. |
| 965 | 2. Redistributions in binary form must reproduce the above copyright |
| 966 | notice, this list of conditions and the following disclaimer in the |
| 967 | documentation and/or other materials provided with the distribution. |
| 968 | 4. Neither the name of the University nor the names of its contributors |
| 969 | may be used to endorse or promote products derived from this software |
| 970 | without specific prior written permission. |
| 971 | |
| 972 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 973 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 974 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 975 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 976 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 977 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 978 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 979 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 980 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 981 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 982 | SUCH DAMAGE. |
| 983 | |
| 984 | ------------------------------------------------------------------- |
| 985 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 986 | Copyright (c) 1985 |
| 987 | The Regents of the University of California. All rights reserved. |
| 988 | |
| 989 | Redistribution and use in source and binary forms, with or without |
| 990 | modification, are permitted provided that the following conditions |
| 991 | are met: |
| 992 | 1. Redistributions of source code must retain the above copyright |
| 993 | notice, this list of conditions and the following disclaimer. |
| 994 | 2. Redistributions in binary form must reproduce the above copyright |
| 995 | notice, this list of conditions and the following disclaimer in the |
| 996 | documentation and/or other materials provided with the distribution. |
| 997 | 3. All advertising materials mentioning features or use of this software |
| 998 | must display the following acknowledgement: |
| 999 | This product includes software developed by the University of |
| 1000 | California, Berkeley and its contributors. |
| 1001 | 4. Neither the name of the University nor the names of its contributors |
| 1002 | may be used to endorse or promote products derived from this software |
| 1003 | without specific prior written permission. |
| 1004 | |
| 1005 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1006 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1007 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1008 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1009 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1010 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1011 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1012 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1013 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1014 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1015 | SUCH DAMAGE. |
| 1016 | |
| 1017 | ------------------------------------------------------------------- |
| 1018 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1019 | Copyright (c) 1985 Regents of the University of California. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1020 | All rights reserved. |
| 1021 | |
| 1022 | Redistribution and use in source and binary forms, with or without |
| 1023 | modification, are permitted provided that the following conditions |
| 1024 | are met: |
| 1025 | 1. Redistributions of source code must retain the above copyright |
| 1026 | notice, this list of conditions and the following disclaimer. |
| 1027 | 2. Redistributions in binary form must reproduce the above copyright |
| 1028 | notice, this list of conditions and the following disclaimer in the |
| 1029 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1030 | 3. Neither the name of the University nor the names of its contributors |
| 1031 | may be used to endorse or promote products derived from this software |
| 1032 | without specific prior written permission. |
| 1033 | |
| 1034 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1035 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1036 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1037 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1038 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1039 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1040 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1041 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1042 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1043 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1044 | SUCH DAMAGE. |
| 1045 | |
| 1046 | ------------------------------------------------------------------- |
| 1047 | |
| 1048 | Copyright (c) 1985, 1988, 1993 |
| 1049 | The Regents of the University of California. All rights reserved. |
| 1050 | |
| 1051 | Redistribution and use in source and binary forms, with or without |
| 1052 | modification, are permitted provided that the following conditions |
| 1053 | are met: |
| 1054 | 1. Redistributions of source code must retain the above copyright |
| 1055 | notice, this list of conditions and the following disclaimer. |
| 1056 | 2. Redistributions in binary form must reproduce the above copyright |
| 1057 | notice, this list of conditions and the following disclaimer in the |
| 1058 | documentation and/or other materials provided with the distribution. |
| 1059 | 3. Neither the name of the University nor the names of its contributors |
| 1060 | may be used to endorse or promote products derived from this software |
| 1061 | without specific prior written permission. |
| 1062 | |
| 1063 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1064 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1065 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1066 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1067 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1068 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1069 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1070 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1071 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1072 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1073 | SUCH DAMAGE. |
| 1074 | |
| 1075 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 1076 | |
| 1077 | Permission to use, copy, modify, and distribute this software for any |
| 1078 | purpose with or without fee is hereby granted, provided that the above |
| 1079 | copyright notice and this permission notice appear in all copies, and that |
| 1080 | the name of Digital Equipment Corporation not be used in advertising or |
| 1081 | publicity pertaining to distribution of the document or software without |
| 1082 | specific, written prior permission. |
| 1083 | |
| 1084 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 1085 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 1086 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 1087 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 1088 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 1089 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 1090 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 1091 | SOFTWARE. |
| 1092 | |
| 1093 | ------------------------------------------------------------------- |
| 1094 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1095 | Copyright (c) 1985, 1989, 1993 |
| 1096 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1097 | |
| 1098 | Redistribution and use in source and binary forms, with or without |
| 1099 | modification, are permitted provided that the following conditions |
| 1100 | are met: |
| 1101 | 1. Redistributions of source code must retain the above copyright |
| 1102 | notice, this list of conditions and the following disclaimer. |
| 1103 | 2. Redistributions in binary form must reproduce the above copyright |
| 1104 | notice, this list of conditions and the following disclaimer in the |
| 1105 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1106 | 3. All advertising materials mentioning features or use of this software |
| 1107 | must display the following acknowledgement: |
| 1108 | This product includes software developed by the University of |
| 1109 | California, Berkeley and its contributors. |
| 1110 | 4. Neither the name of the University nor the names of its contributors |
| 1111 | may be used to endorse or promote products derived from this software |
| 1112 | without specific prior written permission. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1113 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1114 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1115 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1116 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1117 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1118 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1119 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1120 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1121 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1122 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1123 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1124 | SUCH DAMAGE. |
| 1125 | |
| 1126 | ------------------------------------------------------------------- |
| 1127 | |
| 1128 | Copyright (c) 1985, 1993 |
| 1129 | The Regents of the University of California. All rights reserved. |
| 1130 | |
| 1131 | Redistribution and use in source and binary forms, with or without |
| 1132 | modification, are permitted provided that the following conditions |
| 1133 | are met: |
| 1134 | 1. Redistributions of source code must retain the above copyright |
| 1135 | notice, this list of conditions and the following disclaimer. |
| 1136 | 2. Redistributions in binary form must reproduce the above copyright |
| 1137 | notice, this list of conditions and the following disclaimer in the |
| 1138 | documentation and/or other materials provided with the distribution. |
| 1139 | 3. All advertising materials mentioning features or use of this software |
| 1140 | must display the following acknowledgement: |
| 1141 | This product includes software developed by the University of |
| 1142 | California, Berkeley and its contributors. |
| 1143 | 4. Neither the name of the University nor the names of its contributors |
| 1144 | may be used to endorse or promote products derived from this software |
| 1145 | without specific prior written permission. |
| 1146 | |
| 1147 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1148 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1149 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1150 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1151 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1152 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1153 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1154 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1155 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1156 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1157 | SUCH DAMAGE. |
| 1158 | |
| 1159 | ------------------------------------------------------------------- |
| 1160 | |
| 1161 | Copyright (c) 1985, 1993 |
| 1162 | The Regents of the University of California. All rights reserved. |
| 1163 | |
| 1164 | Redistribution and use in source and binary forms, with or without |
| 1165 | modification, are permitted provided that the following conditions |
| 1166 | are met: |
| 1167 | 1. Redistributions of source code must retain the above copyright |
| 1168 | notice, this list of conditions and the following disclaimer. |
| 1169 | 2. Redistributions in binary form must reproduce the above copyright |
| 1170 | notice, this list of conditions and the following disclaimer in the |
| 1171 | documentation and/or other materials provided with the distribution. |
| 1172 | 3. Neither the name of the University nor the names of its contributors |
| 1173 | may be used to endorse or promote products derived from this software |
| 1174 | without specific prior written permission. |
| 1175 | |
| 1176 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1177 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1178 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1179 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1180 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1181 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1182 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1183 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1184 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1185 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1186 | SUCH DAMAGE. |
| 1187 | |
| 1188 | ------------------------------------------------------------------- |
| 1189 | |
| 1190 | Copyright (c) 1987 Regents of the University of California. |
| 1191 | All rights reserved. |
| 1192 | |
| 1193 | Redistribution and use in source and binary forms, with or without |
| 1194 | modification, are permitted provided that the following conditions |
| 1195 | are met: |
| 1196 | 1. Redistributions of source code must retain the above copyright |
| 1197 | notice, this list of conditions and the following disclaimer. |
| 1198 | 2. Redistributions in binary form must reproduce the above copyright |
| 1199 | notice, this list of conditions and the following disclaimer in the |
| 1200 | documentation and/or other materials provided with the distribution. |
| 1201 | 3. Neither the name of the University nor the names of its contributors |
| 1202 | may be used to endorse or promote products derived from this software |
| 1203 | without specific prior written permission. |
| 1204 | |
| 1205 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1206 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1207 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1208 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1209 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1210 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1211 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1212 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1213 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1214 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1215 | SUCH DAMAGE. |
| 1216 | |
| 1217 | ------------------------------------------------------------------- |
| 1218 | |
| 1219 | Copyright (c) 1987, 1993 |
| 1220 | The Regents of the University of California. All rights reserved. |
| 1221 | |
| 1222 | Redistribution and use in source and binary forms, with or without |
| 1223 | modification, are permitted provided that the following conditions |
| 1224 | are met: |
| 1225 | 1. Redistributions of source code must retain the above copyright |
| 1226 | notice, this list of conditions and the following disclaimer. |
| 1227 | 2. Redistributions in binary form must reproduce the above copyright |
| 1228 | notice, this list of conditions and the following disclaimer in the |
| 1229 | documentation and/or other materials provided with the distribution. |
| 1230 | 3. All advertising materials mentioning features or use of this software |
| 1231 | must display the following acknowledgement: |
| 1232 | This product includes software developed by the University of |
| 1233 | California, Berkeley and its contributors. |
| 1234 | 4. Neither the name of the University nor the names of its contributors |
| 1235 | may be used to endorse or promote products derived from this software |
| 1236 | without specific prior written permission. |
| 1237 | |
| 1238 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1239 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1240 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1241 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1242 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1243 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1244 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1245 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1246 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1247 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1248 | SUCH DAMAGE. |
| 1249 | |
| 1250 | ------------------------------------------------------------------- |
| 1251 | |
| 1252 | Copyright (c) 1987, 1993 |
| 1253 | The Regents of the University of California. All rights reserved. |
| 1254 | |
| 1255 | Redistribution and use in source and binary forms, with or without |
| 1256 | modification, are permitted provided that the following conditions |
| 1257 | are met: |
| 1258 | 1. Redistributions of source code must retain the above copyright |
| 1259 | notice, this list of conditions and the following disclaimer. |
| 1260 | 2. Redistributions in binary form must reproduce the above copyright |
| 1261 | notice, this list of conditions and the following disclaimer in the |
| 1262 | documentation and/or other materials provided with the distribution. |
| 1263 | 3. Neither the name of the University nor the names of its contributors |
| 1264 | may be used to endorse or promote products derived from this software |
| 1265 | without specific prior written permission. |
| 1266 | |
| 1267 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1268 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1269 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1270 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1271 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1272 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1273 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1274 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1275 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1276 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1277 | SUCH DAMAGE. |
| 1278 | |
| 1279 | ------------------------------------------------------------------- |
| 1280 | |
| 1281 | Copyright (c) 1988 Regents of the University of California. |
| 1282 | All rights reserved. |
| 1283 | |
| 1284 | Redistribution and use in source and binary forms, with or without |
| 1285 | modification, are permitted provided that the following conditions |
| 1286 | are met: |
| 1287 | 1. Redistributions of source code must retain the above copyright |
| 1288 | notice, this list of conditions and the following disclaimer. |
| 1289 | 2. Redistributions in binary form must reproduce the above copyright |
| 1290 | notice, this list of conditions and the following disclaimer in the |
| 1291 | documentation and/or other materials provided with the distribution. |
| 1292 | 3. Neither the name of the University nor the names of its contributors |
| 1293 | may be used to endorse or promote products derived from this software |
| 1294 | without specific prior written permission. |
| 1295 | |
| 1296 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1297 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1298 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1299 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1300 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1301 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1302 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1303 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1304 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1305 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1306 | SUCH DAMAGE. |
| 1307 | |
| 1308 | ------------------------------------------------------------------- |
| 1309 | |
| 1310 | Copyright (c) 1988 The Regents of the University of California. |
| 1311 | All rights reserved. |
| 1312 | |
| 1313 | Redistribution and use in source and binary forms, with or without |
| 1314 | modification, are permitted provided that the following conditions |
| 1315 | are met: |
| 1316 | 1. Redistributions of source code must retain the above copyright |
| 1317 | notice, this list of conditions and the following disclaimer. |
| 1318 | 2. Redistributions in binary form must reproduce the above copyright |
| 1319 | notice, this list of conditions and the following disclaimer in the |
| 1320 | documentation and/or other materials provided with the distribution. |
| 1321 | 3. Neither the name of the University nor the names of its contributors |
| 1322 | may be used to endorse or promote products derived from this software |
| 1323 | without specific prior written permission. |
| 1324 | |
| 1325 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1326 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1327 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1328 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1329 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1330 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1331 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1332 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1333 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1334 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1335 | SUCH DAMAGE. |
| 1336 | |
| 1337 | ------------------------------------------------------------------- |
| 1338 | |
| 1339 | Copyright (c) 1988, 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1340 | The Regents of the University of California. All rights reserved. |
| 1341 | |
| 1342 | Redistribution and use in source and binary forms, with or without |
| 1343 | modification, are permitted provided that the following conditions |
| 1344 | are met: |
| 1345 | 1. Redistributions of source code must retain the above copyright |
| 1346 | notice, this list of conditions and the following disclaimer. |
| 1347 | 2. Redistributions in binary form must reproduce the above copyright |
| 1348 | notice, this list of conditions and the following disclaimer in the |
| 1349 | documentation and/or other materials provided with the distribution. |
| 1350 | 3. All advertising materials mentioning features or use of this software |
| 1351 | must display the following acknowledgement: |
| 1352 | This product includes software developed by the University of |
| 1353 | California, Berkeley and its contributors. |
| 1354 | 4. Neither the name of the University nor the names of its contributors |
| 1355 | may be used to endorse or promote products derived from this software |
| 1356 | without specific prior written permission. |
| 1357 | |
| 1358 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1359 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1360 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1361 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1362 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1363 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1364 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1365 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1366 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1367 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1368 | SUCH DAMAGE. |
| 1369 | |
| 1370 | ------------------------------------------------------------------- |
| 1371 | |
| 1372 | Copyright (c) 1988, 1993 |
| 1373 | The Regents of the University of California. All rights reserved. |
| 1374 | |
| 1375 | Redistribution and use in source and binary forms, with or without |
| 1376 | modification, are permitted provided that the following conditions |
| 1377 | are met: |
| 1378 | 1. Redistributions of source code must retain the above copyright |
| 1379 | notice, this list of conditions and the following disclaimer. |
| 1380 | 2. Redistributions in binary form must reproduce the above copyright |
| 1381 | notice, this list of conditions and the following disclaimer in the |
| 1382 | documentation and/or other materials provided with the distribution. |
| 1383 | 3. Neither the name of the University nor the names of its contributors |
| 1384 | may be used to endorse or promote products derived from this software |
| 1385 | without specific prior written permission. |
| 1386 | |
| 1387 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1388 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1389 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1390 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1391 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1392 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1393 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1394 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1395 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1396 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1397 | SUCH DAMAGE. |
| 1398 | |
| 1399 | ------------------------------------------------------------------- |
| 1400 | |
| 1401 | Copyright (c) 1988, 1993 |
| 1402 | The Regents of the University of California. All rights reserved. |
| 1403 | |
| 1404 | This code is derived from software written by Ken Arnold and |
| 1405 | published in UNIX Review, Vol. 6, No. 8. |
| 1406 | |
| 1407 | Redistribution and use in source and binary forms, with or without |
| 1408 | modification, are permitted provided that the following conditions |
| 1409 | are met: |
| 1410 | 1. Redistributions of source code must retain the above copyright |
| 1411 | notice, this list of conditions and the following disclaimer. |
| 1412 | 2. Redistributions in binary form must reproduce the above copyright |
| 1413 | notice, this list of conditions and the following disclaimer in the |
| 1414 | documentation and/or other materials provided with the distribution. |
| 1415 | 3. Neither the name of the University nor the names of its contributors |
| 1416 | may be used to endorse or promote products derived from this software |
| 1417 | without specific prior written permission. |
| 1418 | |
| 1419 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1420 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1421 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1422 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1423 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1424 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1425 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1426 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1427 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1428 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1429 | SUCH DAMAGE. |
| 1430 | |
| 1431 | ------------------------------------------------------------------- |
| 1432 | |
| 1433 | Copyright (c) 1989 The Regents of the University of California. |
| 1434 | All rights reserved. |
| 1435 | |
| 1436 | Redistribution and use in source and binary forms are permitted |
| 1437 | provided that the above copyright notice and this paragraph are |
| 1438 | duplicated in all such forms and that any documentation, |
| 1439 | advertising materials, and other materials related to such |
| 1440 | distribution and use acknowledge that the software was developed |
| 1441 | by the University of California, Berkeley. The name of the |
| 1442 | University may not be used to endorse or promote products derived |
| 1443 | from this software without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 1444 | THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1445 | IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED |
| 1446 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
| 1447 | |
| 1448 | ------------------------------------------------------------------- |
| 1449 | |
| 1450 | Copyright (c) 1989 The Regents of the University of California. |
| 1451 | All rights reserved. |
| 1452 | |
| 1453 | Redistribution and use in source and binary forms, with or without |
| 1454 | modification, are permitted provided that the following conditions |
| 1455 | are met: |
| 1456 | 1. Redistributions of source code must retain the above copyright |
| 1457 | notice, this list of conditions and the following disclaimer. |
| 1458 | 2. Redistributions in binary form must reproduce the above copyright |
| 1459 | notice, this list of conditions and the following disclaimer in the |
| 1460 | documentation and/or other materials provided with the distribution. |
| 1461 | 3. Neither the name of the University nor the names of its contributors |
| 1462 | may be used to endorse or promote products derived from this software |
| 1463 | without specific prior written permission. |
| 1464 | |
| 1465 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1466 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1467 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1468 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1469 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1470 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1471 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1472 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1473 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1474 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1475 | SUCH DAMAGE. |
| 1476 | |
| 1477 | ------------------------------------------------------------------- |
| 1478 | |
| 1479 | Copyright (c) 1989 The Regents of the University of California. |
| 1480 | All rights reserved. |
| 1481 | (c) UNIX System Laboratories, Inc. |
| 1482 | All or some portions of this file are derived from material licensed |
| 1483 | to the University of California by American Telephone and Telegraph |
| 1484 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1485 | the permission of UNIX System Laboratories, Inc. |
| 1486 | |
| 1487 | Redistribution and use in source and binary forms, with or without |
| 1488 | modification, are permitted provided that the following conditions |
| 1489 | are met: |
| 1490 | 1. Redistributions of source code must retain the above copyright |
| 1491 | notice, this list of conditions and the following disclaimer. |
| 1492 | 2. Redistributions in binary form must reproduce the above copyright |
| 1493 | notice, this list of conditions and the following disclaimer in the |
| 1494 | documentation and/or other materials provided with the distribution. |
| 1495 | 3. Neither the name of the University nor the names of its contributors |
| 1496 | may be used to endorse or promote products derived from this software |
| 1497 | without specific prior written permission. |
| 1498 | |
| 1499 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1500 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1501 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1502 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1503 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 1504 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1505 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1506 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1507 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1508 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1509 | SUCH DAMAGE. |
| 1510 | |
| 1511 | ------------------------------------------------------------------- |
| 1512 | |
| 1513 | Copyright (c) 1989, 1993 |
| 1514 | The Regents of the University of California. All rights reserved. |
| 1515 | |
| 1516 | Redistribution and use in source and binary forms, with or without |
| 1517 | modification, are permitted provided that the following conditions |
| 1518 | are met: |
| 1519 | 1. Redistributions of source code must retain the above copyright |
| 1520 | notice, this list of conditions and the following disclaimer. |
| 1521 | 2. Redistributions in binary form must reproduce the above copyright |
| 1522 | notice, this list of conditions and the following disclaimer in the |
| 1523 | documentation and/or other materials provided with the distribution. |
| 1524 | 3. Neither the name of the University nor the names of its contributors |
| 1525 | may be used to endorse or promote products derived from this software |
| 1526 | without specific prior written permission. |
| 1527 | |
| 1528 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1529 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1530 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1531 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1532 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1533 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1534 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1535 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1536 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1537 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1538 | SUCH DAMAGE. |
| 1539 | |
| 1540 | ------------------------------------------------------------------- |
| 1541 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1542 | Copyright (c) 1989, 1993 |
| 1543 | The Regents of the University of California. All rights reserved. |
| 1544 | |
| 1545 | Redistribution and use in source and binary forms, with or without |
| 1546 | modification, are permitted provided that the following conditions |
| 1547 | are met: |
| 1548 | 1. Redistributions of source code must retain the above copyright |
| 1549 | notice, this list of conditions and the following disclaimer. |
| 1550 | 2. Redistributions in binary form must reproduce the above copyright |
| 1551 | notice, this list of conditions and the following disclaimer in the |
| 1552 | documentation and/or other materials provided with the distribution. |
| 1553 | 4. Neither the name of the University nor the names of its contributors |
| 1554 | may be used to endorse or promote products derived from this software |
| 1555 | without specific prior written permission. |
| 1556 | |
| 1557 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1558 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1559 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1560 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1561 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1562 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1563 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1564 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1565 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1566 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1567 | SUCH DAMAGE. |
| 1568 | |
| 1569 | ------------------------------------------------------------------- |
| 1570 | |
| 1571 | Copyright (c) 1989, 1993 |
| 1572 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 1573 | |
| 1574 | This code is derived from software contributed to Berkeley by |
| 1575 | Roger L. Snyder. |
| 1576 | |
| 1577 | Redistribution and use in source and binary forms, with or without |
| 1578 | modification, are permitted provided that the following conditions |
| 1579 | are met: |
| 1580 | 1. Redistributions of source code must retain the above copyright |
| 1581 | notice, this list of conditions and the following disclaimer. |
| 1582 | 2. Redistributions in binary form must reproduce the above copyright |
| 1583 | notice, this list of conditions and the following disclaimer in the |
| 1584 | documentation and/or other materials provided with the distribution. |
| 1585 | 3. Neither the name of the University nor the names of its contributors |
| 1586 | may be used to endorse or promote products derived from this software |
| 1587 | without specific prior written permission. |
| 1588 | |
| 1589 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1590 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1591 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1592 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1593 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1594 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1595 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1596 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1597 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1598 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1599 | SUCH DAMAGE. |
| 1600 | |
| 1601 | ------------------------------------------------------------------- |
| 1602 | |
| 1603 | Copyright (c) 1989, 1993 |
| 1604 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1605 | (c) UNIX System Laboratories, Inc. |
| 1606 | All or some portions of this file are derived from material licensed |
| 1607 | to the University of California by American Telephone and Telegraph |
| 1608 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1609 | the permission of UNIX System Laboratories, Inc. |
| 1610 | |
| 1611 | Redistribution and use in source and binary forms, with or without |
| 1612 | modification, are permitted provided that the following conditions |
| 1613 | are met: |
| 1614 | 1. Redistributions of source code must retain the above copyright |
| 1615 | notice, this list of conditions and the following disclaimer. |
| 1616 | 2. Redistributions in binary form must reproduce the above copyright |
| 1617 | notice, this list of conditions and the following disclaimer in the |
| 1618 | documentation and/or other materials provided with the distribution. |
| 1619 | 3. Neither the name of the University nor the names of its contributors |
| 1620 | may be used to endorse or promote products derived from this software |
| 1621 | without specific prior written permission. |
| 1622 | |
| 1623 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1624 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1625 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1626 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1627 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1628 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1629 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1630 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1631 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1632 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1633 | SUCH DAMAGE. |
| 1634 | |
| 1635 | ------------------------------------------------------------------- |
| 1636 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1637 | Copyright (c) 1989, 1993, 1994 |
| 1638 | The Regents of the University of California. All rights reserved. |
| 1639 | |
| 1640 | Redistribution and use in source and binary forms, with or without |
| 1641 | modification, are permitted provided that the following conditions |
| 1642 | are met: |
| 1643 | 1. Redistributions of source code must retain the above copyright |
| 1644 | notice, this list of conditions and the following disclaimer. |
| 1645 | 2. Redistributions in binary form must reproduce the above copyright |
| 1646 | notice, this list of conditions and the following disclaimer in the |
| 1647 | documentation and/or other materials provided with the distribution. |
| 1648 | 3. Neither the name of the University nor the names of its contributors |
| 1649 | may be used to endorse or promote products derived from this software |
| 1650 | without specific prior written permission. |
| 1651 | |
| 1652 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1653 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1654 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1655 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1656 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1657 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1658 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1659 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1660 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1661 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1662 | SUCH DAMAGE. |
| 1663 | |
| 1664 | ------------------------------------------------------------------- |
| 1665 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1666 | Copyright (c) 1990 The Regents of the University of California. |
| 1667 | All rights reserved. |
| 1668 | |
| 1669 | Redistribution and use in source and binary forms, with or without |
| 1670 | modification, are permitted provided that the following conditions |
| 1671 | are met: |
| 1672 | 1. Redistributions of source code must retain the above copyright |
| 1673 | notice, this list of conditions and the following disclaimer. |
| 1674 | 2. Redistributions in binary form must reproduce the above copyright |
| 1675 | notice, this list of conditions and the following disclaimer in the |
| 1676 | documentation and/or other materials provided with the distribution. |
| 1677 | 3. Neither the name of the University nor the names of its contributors |
| 1678 | may be used to endorse or promote products derived from this software |
| 1679 | without specific prior written permission. |
| 1680 | |
| 1681 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1682 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1683 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1684 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1685 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1686 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1687 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1688 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1689 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1690 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1691 | SUCH DAMAGE. |
| 1692 | |
| 1693 | ------------------------------------------------------------------- |
| 1694 | |
| 1695 | Copyright (c) 1990 The Regents of the University of California. |
| 1696 | All rights reserved. |
| 1697 | |
| 1698 | This code is derived from locore.s. |
| 1699 | |
| 1700 | Redistribution and use in source and binary forms, with or without |
| 1701 | modification, are permitted provided that the following conditions |
| 1702 | are met: |
| 1703 | 1. Redistributions of source code must retain the above copyright |
| 1704 | notice, this list of conditions and the following disclaimer. |
| 1705 | 2. Redistributions in binary form must reproduce the above copyright |
| 1706 | notice, this list of conditions and the following disclaimer in the |
| 1707 | documentation and/or other materials provided with the distribution. |
| 1708 | 3. Neither the name of the University nor the names of its contributors |
| 1709 | may be used to endorse or promote products derived from this software |
| 1710 | without specific prior written permission. |
| 1711 | |
| 1712 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1713 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1714 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1715 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1716 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1717 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1718 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1719 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1720 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1721 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1722 | SUCH DAMAGE. |
| 1723 | |
| 1724 | ------------------------------------------------------------------- |
| 1725 | |
| 1726 | Copyright (c) 1990 The Regents of the University of California. |
| 1727 | All rights reserved. |
| 1728 | |
| 1729 | This code is derived from software contributed to Berkeley by |
| 1730 | Chris Torek. |
| 1731 | |
| 1732 | Redistribution and use in source and binary forms, with or without |
| 1733 | modification, are permitted provided that the following conditions |
| 1734 | are met: |
| 1735 | 1. Redistributions of source code must retain the above copyright |
| 1736 | notice, this list of conditions and the following disclaimer. |
| 1737 | 2. Redistributions in binary form must reproduce the above copyright |
| 1738 | notice, this list of conditions and the following disclaimer in the |
| 1739 | documentation and/or other materials provided with the distribution. |
| 1740 | 3. Neither the name of the University nor the names of its contributors |
| 1741 | may be used to endorse or promote products derived from this software |
| 1742 | without specific prior written permission. |
| 1743 | |
| 1744 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1745 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1746 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1747 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1748 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1749 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1750 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1751 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1752 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1753 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1754 | SUCH DAMAGE. |
| 1755 | |
| 1756 | ------------------------------------------------------------------- |
| 1757 | |
| 1758 | Copyright (c) 1990 The Regents of the University of California. |
| 1759 | All rights reserved. |
| 1760 | |
| 1761 | This code is derived from software contributed to Berkeley by |
| 1762 | William Jolitz. |
| 1763 | |
| 1764 | Redistribution and use in source and binary forms, with or without |
| 1765 | modification, are permitted provided that the following conditions |
| 1766 | are met: |
| 1767 | 1. Redistributions of source code must retain the above copyright |
| 1768 | notice, this list of conditions and the following disclaimer. |
| 1769 | 2. Redistributions in binary form must reproduce the above copyright |
| 1770 | notice, this list of conditions and the following disclaimer in the |
| 1771 | documentation and/or other materials provided with the distribution. |
| 1772 | 3. Neither the name of the University nor the names of its contributors |
| 1773 | may be used to endorse or promote products derived from this software |
| 1774 | without specific prior written permission. |
| 1775 | |
| 1776 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1777 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1778 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1779 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1780 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1781 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1782 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1783 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1784 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1785 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1786 | SUCH DAMAGE. |
| 1787 | |
| 1788 | ------------------------------------------------------------------- |
| 1789 | |
| 1790 | Copyright (c) 1990, 1993 |
| 1791 | The Regents of the University of California. All rights reserved. |
| 1792 | |
| 1793 | Redistribution and use in source and binary forms, with or without |
| 1794 | modification, are permitted provided that the following conditions |
| 1795 | are met: |
| 1796 | 1. Redistributions of source code must retain the above copyright |
| 1797 | notice, this list of conditions and the following disclaimer. |
| 1798 | 2. Redistributions in binary form must reproduce the above copyright |
| 1799 | notice, this list of conditions and the following disclaimer in the |
| 1800 | documentation and/or other materials provided with the distribution. |
| 1801 | 3. Neither the name of the University nor the names of its contributors |
| 1802 | may be used to endorse or promote products derived from this software |
| 1803 | without specific prior written permission. |
| 1804 | |
| 1805 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1806 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1807 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1808 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1809 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1810 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1811 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1812 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1813 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1814 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1815 | SUCH DAMAGE. |
| 1816 | |
| 1817 | ------------------------------------------------------------------- |
| 1818 | |
| 1819 | Copyright (c) 1990, 1993 |
| 1820 | The Regents of the University of California. All rights reserved. |
| 1821 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1822 | This code is derived from software contributed to Berkeley by |
| 1823 | Chris Torek. |
| 1824 | |
| 1825 | Redistribution and use in source and binary forms, with or without |
| 1826 | modification, are permitted provided that the following conditions |
| 1827 | are met: |
| 1828 | 1. Redistributions of source code must retain the above copyright |
| 1829 | notice, this list of conditions and the following disclaimer. |
| 1830 | 2. Redistributions in binary form must reproduce the above copyright |
| 1831 | notice, this list of conditions and the following disclaimer in the |
| 1832 | documentation and/or other materials provided with the distribution. |
| 1833 | 3. Neither the name of the University nor the names of its contributors |
| 1834 | may be used to endorse or promote products derived from this software |
| 1835 | without specific prior written permission. |
| 1836 | |
| 1837 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1838 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1839 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1840 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1841 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1842 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1843 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1844 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1845 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1846 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1847 | SUCH DAMAGE. |
| 1848 | |
| 1849 | ------------------------------------------------------------------- |
| 1850 | |
| 1851 | Copyright (c) 1990, 1993 |
| 1852 | The Regents of the University of California. All rights reserved. |
| 1853 | |
| 1854 | This code is derived from software contributed to Berkeley by |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1855 | Donn Seeley at UUNET Technologies, Inc. |
| 1856 | |
| 1857 | Redistribution and use in source and binary forms, with or without |
| 1858 | modification, are permitted provided that the following conditions |
| 1859 | are met: |
| 1860 | 1. Redistributions of source code must retain the above copyright |
| 1861 | notice, this list of conditions and the following disclaimer. |
| 1862 | 2. Redistributions in binary form must reproduce the above copyright |
| 1863 | notice, this list of conditions and the following disclaimer in the |
| 1864 | documentation and/or other materials provided with the distribution. |
| 1865 | 3. Neither the name of the University nor the names of its contributors |
| 1866 | may be used to endorse or promote products derived from this software |
| 1867 | without specific prior written permission. |
| 1868 | |
| 1869 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1870 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1871 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1872 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1873 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1874 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1875 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1876 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1877 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1878 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1879 | SUCH DAMAGE. |
| 1880 | |
| 1881 | ------------------------------------------------------------------- |
| 1882 | |
| 1883 | Copyright (c) 1990, 1993 |
| 1884 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 1885 | |
| 1886 | This code is derived from software contributed to Berkeley by |
| 1887 | Donn Seeley at UUNET Technologies, Inc. |
| 1888 | |
| 1889 | Redistribution and use in source and binary forms, with or without |
| 1890 | modification, are permitted provided that the following conditions |
| 1891 | are met: |
| 1892 | 1. Redistributions of source code must retain the above copyright |
| 1893 | notice, this list of conditions and the following disclaimer. |
| 1894 | 2. Redistributions in binary form must reproduce the above copyright |
| 1895 | notice, this list of conditions and the following disclaimer in the |
| 1896 | documentation and/or other materials provided with the distribution. |
| 1897 | 4. Neither the name of the University nor the names of its contributors |
| 1898 | may be used to endorse or promote products derived from this software |
| 1899 | without specific prior written permission. |
| 1900 | |
| 1901 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1902 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1903 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1904 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1905 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1906 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1907 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1908 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1909 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1910 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1911 | SUCH DAMAGE. |
| 1912 | |
| 1913 | ------------------------------------------------------------------- |
| 1914 | |
| 1915 | Copyright (c) 1990, 1993 |
| 1916 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 1917 | (c) UNIX System Laboratories, Inc. |
| 1918 | All or some portions of this file are derived from material licensed |
| 1919 | to the University of California by American Telephone and Telegraph |
| 1920 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 1921 | the permission of UNIX System Laboratories, Inc. |
| 1922 | |
| 1923 | Redistribution and use in source and binary forms, with or without |
| 1924 | modification, are permitted provided that the following conditions |
| 1925 | are met: |
| 1926 | 1. Redistributions of source code must retain the above copyright |
| 1927 | notice, this list of conditions and the following disclaimer. |
| 1928 | 2. Redistributions in binary form must reproduce the above copyright |
| 1929 | notice, this list of conditions and the following disclaimer in the |
| 1930 | documentation and/or other materials provided with the distribution. |
| 1931 | 3. Neither the name of the University nor the names of its contributors |
| 1932 | may be used to endorse or promote products derived from this software |
| 1933 | without specific prior written permission. |
| 1934 | |
| 1935 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1936 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1937 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1938 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1939 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1940 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1941 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1942 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1943 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1944 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1945 | SUCH DAMAGE. |
| 1946 | |
| 1947 | ------------------------------------------------------------------- |
| 1948 | |
| 1949 | Copyright (c) 1990, 1993, 1994 |
| 1950 | The Regents of the University of California. All rights reserved. |
| 1951 | |
| 1952 | Redistribution and use in source and binary forms, with or without |
| 1953 | modification, are permitted provided that the following conditions |
| 1954 | are met: |
| 1955 | 1. Redistributions of source code must retain the above copyright |
| 1956 | notice, this list of conditions and the following disclaimer. |
| 1957 | 2. Redistributions in binary form must reproduce the above copyright |
| 1958 | notice, this list of conditions and the following disclaimer in the |
| 1959 | documentation and/or other materials provided with the distribution. |
| 1960 | 3. Neither the name of the University nor the names of its contributors |
| 1961 | may be used to endorse or promote products derived from this software |
| 1962 | without specific prior written permission. |
| 1963 | |
| 1964 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1965 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1966 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1967 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 1968 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 1969 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 1970 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 1971 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 1972 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 1973 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 1974 | SUCH DAMAGE. |
| 1975 | |
| 1976 | ------------------------------------------------------------------- |
| 1977 | |
| 1978 | Copyright (c) 1990, 1993, 1994 |
| 1979 | The Regents of the University of California. All rights reserved. |
| 1980 | |
| 1981 | This code is derived from software contributed to Berkeley by |
| 1982 | Chris Torek. |
| 1983 | |
| 1984 | Redistribution and use in source and binary forms, with or without |
| 1985 | modification, are permitted provided that the following conditions |
| 1986 | are met: |
| 1987 | 1. Redistributions of source code must retain the above copyright |
| 1988 | notice, this list of conditions and the following disclaimer. |
| 1989 | 2. Redistributions in binary form must reproduce the above copyright |
| 1990 | notice, this list of conditions and the following disclaimer in the |
| 1991 | documentation and/or other materials provided with the distribution. |
| 1992 | 3. Neither the name of the University nor the names of its contributors |
| 1993 | may be used to endorse or promote products derived from this software |
| 1994 | without specific prior written permission. |
| 1995 | |
| 1996 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 1997 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 1998 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 1999 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2000 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2001 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2002 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2003 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2004 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2005 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2006 | SUCH DAMAGE. |
| 2007 | |
| 2008 | ------------------------------------------------------------------- |
| 2009 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2010 | Copyright (c) 1991 The Regents of the University of California. |
| 2011 | All rights reserved. |
| 2012 | |
| 2013 | Redistribution and use in source and binary forms, with or without |
| 2014 | modification, are permitted provided that the following conditions |
| 2015 | are met: |
| 2016 | 1. Redistributions of source code must retain the above copyright |
| 2017 | notice, this list of conditions and the following disclaimer. |
| 2018 | 2. Redistributions in binary form must reproduce the above copyright |
| 2019 | notice, this list of conditions and the following disclaimer in the |
| 2020 | documentation and/or other materials provided with the distribution. |
| 2021 | 3. Neither the name of the University nor the names of its contributors |
| 2022 | may be used to endorse or promote products derived from this software |
| 2023 | without specific prior written permission. |
| 2024 | |
| 2025 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2026 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2027 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2028 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2029 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2030 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2031 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2032 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2033 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2034 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2035 | SUCH DAMAGE. |
| 2036 | |
| 2037 | ------------------------------------------------------------------- |
| 2038 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2039 | Copyright (c) 1991, 1993 |
| 2040 | The Regents of the University of California. All rights reserved. |
| 2041 | |
| 2042 | Redistribution and use in source and binary forms, with or without |
| 2043 | modification, are permitted provided that the following conditions |
| 2044 | are met: |
| 2045 | 1. Redistributions of source code must retain the above copyright |
| 2046 | notice, this list of conditions and the following disclaimer. |
| 2047 | 2. Redistributions in binary form must reproduce the above copyright |
| 2048 | notice, this list of conditions and the following disclaimer in the |
| 2049 | documentation and/or other materials provided with the distribution. |
| 2050 | 3. Neither the name of the University nor the names of its contributors |
| 2051 | may be used to endorse or promote products derived from this software |
| 2052 | without specific prior written permission. |
| 2053 | |
| 2054 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2055 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2056 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2057 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2058 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2059 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2060 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2061 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2062 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2063 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2064 | SUCH DAMAGE. |
| 2065 | |
| 2066 | ------------------------------------------------------------------- |
| 2067 | |
| 2068 | Copyright (c) 1991, 1993 |
| 2069 | The Regents of the University of California. All rights reserved. |
| 2070 | |
| 2071 | This code is derived from software contributed to Berkeley by |
| 2072 | Berkeley Software Design, Inc. |
| 2073 | |
| 2074 | Redistribution and use in source and binary forms, with or without |
| 2075 | modification, are permitted provided that the following conditions |
| 2076 | are met: |
| 2077 | 1. Redistributions of source code must retain the above copyright |
| 2078 | notice, this list of conditions and the following disclaimer. |
| 2079 | 2. Redistributions in binary form must reproduce the above copyright |
| 2080 | notice, this list of conditions and the following disclaimer in the |
| 2081 | documentation and/or other materials provided with the distribution. |
| 2082 | 3. Neither the name of the University nor the names of its contributors |
| 2083 | may be used to endorse or promote products derived from this software |
| 2084 | without specific prior written permission. |
| 2085 | |
| 2086 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2087 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2088 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2089 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2090 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2091 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2092 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2093 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2094 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2095 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2096 | SUCH DAMAGE. |
| 2097 | |
| 2098 | ------------------------------------------------------------------- |
| 2099 | |
| 2100 | Copyright (c) 1991, 1993 |
| 2101 | The Regents of the University of California. All rights reserved. |
| 2102 | (c) UNIX System Laboratories, Inc. |
| 2103 | All or some portions of this file are derived from material licensed |
| 2104 | to the University of California by American Telephone and Telegraph |
| 2105 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2106 | the permission of UNIX System Laboratories, Inc. |
| 2107 | |
| 2108 | This code is derived from software contributed to Berkeley by |
| 2109 | Hugh Smith at The University of Guelph. |
| 2110 | |
| 2111 | Redistribution and use in source and binary forms, with or without |
| 2112 | modification, are permitted provided that the following conditions |
| 2113 | are met: |
| 2114 | 1. Redistributions of source code must retain the above copyright |
| 2115 | notice, this list of conditions and the following disclaimer. |
| 2116 | 2. Redistributions in binary form must reproduce the above copyright |
| 2117 | notice, this list of conditions and the following disclaimer in the |
| 2118 | documentation and/or other materials provided with the distribution. |
| 2119 | 3. Neither the name of the University nor the names of its contributors |
| 2120 | may be used to endorse or promote products derived from this software |
| 2121 | without specific prior written permission. |
| 2122 | |
| 2123 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2124 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2125 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2126 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2127 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2128 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2129 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2130 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2131 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2132 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2133 | SUCH DAMAGE. |
| 2134 | |
| 2135 | ------------------------------------------------------------------- |
| 2136 | |
| 2137 | Copyright (c) 1991, 1993, 1995, |
| 2138 | The Regents of the University of California. All rights reserved. |
| 2139 | |
| 2140 | This code is derived from software contributed to Berkeley by |
| 2141 | Havard Eidnes. |
| 2142 | |
| 2143 | Redistribution and use in source and binary forms, with or without |
| 2144 | modification, are permitted provided that the following conditions |
| 2145 | are met: |
| 2146 | 1. Redistributions of source code must retain the above copyright |
| 2147 | notice, this list of conditions and the following disclaimer. |
| 2148 | 2. Redistributions in binary form must reproduce the above copyright |
| 2149 | notice, this list of conditions and the following disclaimer in the |
| 2150 | documentation and/or other materials provided with the distribution. |
| 2151 | 3. Neither the name of the University nor the names of its contributors |
| 2152 | may be used to endorse or promote products derived from this software |
| 2153 | without specific prior written permission. |
| 2154 | |
| 2155 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2156 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2157 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2158 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2159 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2160 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2161 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2162 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2163 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2164 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2165 | SUCH DAMAGE. |
| 2166 | |
| 2167 | ------------------------------------------------------------------- |
| 2168 | |
| 2169 | Copyright (c) 1992 Henry Spencer. |
| 2170 | Copyright (c) 1992, 1993 |
| 2171 | The Regents of the University of California. All rights reserved. |
| 2172 | |
| 2173 | This code is derived from software contributed to Berkeley by |
| 2174 | Henry Spencer of the University of Toronto. |
| 2175 | |
| 2176 | Redistribution and use in source and binary forms, with or without |
| 2177 | modification, are permitted provided that the following conditions |
| 2178 | are met: |
| 2179 | 1. Redistributions of source code must retain the above copyright |
| 2180 | notice, this list of conditions and the following disclaimer. |
| 2181 | 2. Redistributions in binary form must reproduce the above copyright |
| 2182 | notice, this list of conditions and the following disclaimer in the |
| 2183 | documentation and/or other materials provided with the distribution. |
| 2184 | 3. Neither the name of the University nor the names of its contributors |
| 2185 | may be used to endorse or promote products derived from this software |
| 2186 | without specific prior written permission. |
| 2187 | |
| 2188 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2189 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2190 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2191 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2192 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2193 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2194 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2195 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2196 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2197 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2198 | SUCH DAMAGE. |
| 2199 | |
| 2200 | ------------------------------------------------------------------- |
| 2201 | |
| 2202 | Copyright (c) 1992 The Regents of the University of California. |
| 2203 | All rights reserved. |
| 2204 | |
| 2205 | Redistribution and use in source and binary forms, with or without |
| 2206 | modification, are permitted provided that the following conditions |
| 2207 | are met: |
| 2208 | 1. Redistributions of source code must retain the above copyright |
| 2209 | notice, this list of conditions and the following disclaimer. |
| 2210 | 2. Redistributions in binary form must reproduce the above copyright |
| 2211 | notice, this list of conditions and the following disclaimer in the |
| 2212 | documentation and/or other materials provided with the distribution. |
| 2213 | 3. Neither the name of the University nor the names of its contributors |
| 2214 | may be used to endorse or promote products derived from this software |
| 2215 | without specific prior written permission. |
| 2216 | |
| 2217 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2218 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2219 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2220 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2221 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2222 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2223 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2224 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2225 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2226 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2227 | SUCH DAMAGE. |
| 2228 | |
| 2229 | ------------------------------------------------------------------- |
| 2230 | |
| 2231 | Copyright (c) 1992, 1993 |
| 2232 | The Regents of the University of California. All rights reserved. |
| 2233 | |
| 2234 | Redistribution and use in source and binary forms, with or without |
| 2235 | modification, are permitted provided that the following conditions |
| 2236 | are met: |
| 2237 | 1. Redistributions of source code must retain the above copyright |
| 2238 | notice, this list of conditions and the following disclaimer. |
| 2239 | 2. Redistributions in binary form must reproduce the above copyright |
| 2240 | notice, this list of conditions and the following disclaimer in the |
| 2241 | documentation and/or other materials provided with the distribution. |
| 2242 | 3. Neither the name of the University nor the names of its contributors |
| 2243 | may be used to endorse or promote products derived from this software |
| 2244 | without specific prior written permission. |
| 2245 | |
| 2246 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2247 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2248 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2249 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2250 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2251 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2252 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2253 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2254 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2255 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2256 | SUCH DAMAGE. |
| 2257 | |
| 2258 | ------------------------------------------------------------------- |
| 2259 | |
| 2260 | Copyright (c) 1992, 1993 |
| 2261 | The Regents of the University of California. All rights reserved. |
| 2262 | |
| 2263 | This code is derived from software contributed to Berkeley by |
| 2264 | Ralph Campbell. |
| 2265 | |
| 2266 | Redistribution and use in source and binary forms, with or without |
| 2267 | modification, are permitted provided that the following conditions |
| 2268 | are met: |
| 2269 | 1. Redistributions of source code must retain the above copyright |
| 2270 | notice, this list of conditions and the following disclaimer. |
| 2271 | 2. Redistributions in binary form must reproduce the above copyright |
| 2272 | notice, this list of conditions and the following disclaimer in the |
| 2273 | documentation and/or other materials provided with the distribution. |
| 2274 | 3. Neither the name of the University nor the names of its contributors |
| 2275 | may be used to endorse or promote products derived from this software |
| 2276 | without specific prior written permission. |
| 2277 | |
| 2278 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2279 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2280 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2281 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2282 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2283 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2284 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2285 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2286 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2287 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2288 | SUCH DAMAGE. |
| 2289 | |
| 2290 | ------------------------------------------------------------------- |
| 2291 | |
| 2292 | Copyright (c) 1992, 1993 |
| 2293 | The Regents of the University of California. All rights reserved. |
| 2294 | |
| 2295 | This code is derived from software contributed to Berkeley by |
| 2296 | Ralph Campbell. This file is derived from the MIPS RISC |
| 2297 | Architecture book by Gerry Kane. |
| 2298 | |
| 2299 | Redistribution and use in source and binary forms, with or without |
| 2300 | modification, are permitted provided that the following conditions |
| 2301 | are met: |
| 2302 | 1. Redistributions of source code must retain the above copyright |
| 2303 | notice, this list of conditions and the following disclaimer. |
| 2304 | 2. Redistributions in binary form must reproduce the above copyright |
| 2305 | notice, this list of conditions and the following disclaimer in the |
| 2306 | documentation and/or other materials provided with the distribution. |
| 2307 | 3. Neither the name of the University nor the names of its contributors |
| 2308 | may be used to endorse or promote products derived from this software |
| 2309 | without specific prior written permission. |
| 2310 | |
| 2311 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2312 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2313 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2314 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2315 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2316 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2317 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2318 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2319 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2320 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2321 | SUCH DAMAGE. |
| 2322 | |
| 2323 | ------------------------------------------------------------------- |
| 2324 | |
| 2325 | Copyright (c) 1992, 1993 |
| 2326 | The Regents of the University of California. All rights reserved. |
| 2327 | |
| 2328 | This software was developed by the Computer Systems Engineering group |
| 2329 | at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and |
| 2330 | contributed to Berkeley. |
| 2331 | |
| 2332 | All advertising materials mentioning features or use of this software |
| 2333 | must display the following acknowledgement: |
| 2334 | This product includes software developed by the University of |
| 2335 | California, Lawrence Berkeley Laboratory. |
| 2336 | |
| 2337 | Redistribution and use in source and binary forms, with or without |
| 2338 | modification, are permitted provided that the following conditions |
| 2339 | are met: |
| 2340 | 1. Redistributions of source code must retain the above copyright |
| 2341 | notice, this list of conditions and the following disclaimer. |
| 2342 | 2. Redistributions in binary form must reproduce the above copyright |
| 2343 | notice, this list of conditions and the following disclaimer in the |
| 2344 | documentation and/or other materials provided with the distribution. |
| 2345 | 3. All advertising materials mentioning features or use of this software |
| 2346 | must display the following acknowledgement: |
| 2347 | This product includes software developed by the University of |
| 2348 | California, Berkeley and its contributors. |
| 2349 | 4. Neither the name of the University nor the names of its contributors |
| 2350 | may be used to endorse or promote products derived from this software |
| 2351 | without specific prior written permission. |
| 2352 | |
| 2353 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2354 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2355 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2356 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2357 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2358 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2359 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2360 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2361 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2362 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2363 | SUCH DAMAGE. |
| 2364 | |
| 2365 | ------------------------------------------------------------------- |
| 2366 | |
| 2367 | Copyright (c) 1992, 1993 |
| 2368 | The Regents of the University of California. All rights reserved. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2369 | (c) UNIX System Laboratories, Inc. |
| 2370 | All or some portions of this file are derived from material licensed |
| 2371 | to the University of California by American Telephone and Telegraph |
| 2372 | Co. or Unix System Laboratories, Inc. and are reproduced herein with |
| 2373 | the permission of UNIX System Laboratories, Inc. |
| 2374 | |
| 2375 | Redistribution and use in source and binary forms, with or without |
| 2376 | modification, are permitted provided that the following conditions |
| 2377 | are met: |
| 2378 | 1. Redistributions of source code must retain the above copyright |
| 2379 | notice, this list of conditions and the following disclaimer. |
| 2380 | 2. Redistributions in binary form must reproduce the above copyright |
| 2381 | notice, this list of conditions and the following disclaimer in the |
| 2382 | documentation and/or other materials provided with the distribution. |
| 2383 | 3. Neither the name of the University nor the names of its contributors |
| 2384 | may be used to endorse or promote products derived from this software |
| 2385 | without specific prior written permission. |
| 2386 | |
| 2387 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2388 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2389 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2390 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2391 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2392 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2393 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2394 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2395 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2396 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2397 | SUCH DAMAGE. |
| 2398 | |
| 2399 | ------------------------------------------------------------------- |
| 2400 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2401 | Copyright (c) 1992, 1993, 1994 |
| 2402 | The Regents of the University of California. All rights reserved. |
| 2403 | |
| 2404 | This code is derived from software contributed to Berkeley by |
| 2405 | Henry Spencer. |
| 2406 | |
| 2407 | Redistribution and use in source and binary forms, with or without |
| 2408 | modification, are permitted provided that the following conditions |
| 2409 | are met: |
| 2410 | 1. Redistributions of source code must retain the above copyright |
| 2411 | notice, this list of conditions and the following disclaimer. |
| 2412 | 2. Redistributions in binary form must reproduce the above copyright |
| 2413 | notice, this list of conditions and the following disclaimer in the |
| 2414 | documentation and/or other materials provided with the distribution. |
| 2415 | 3. Neither the name of the University nor the names of its contributors |
| 2416 | may be used to endorse or promote products derived from this software |
| 2417 | without specific prior written permission. |
| 2418 | |
| 2419 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2420 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2421 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2422 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2423 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2424 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2425 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2426 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2427 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2428 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2429 | SUCH DAMAGE. |
| 2430 | |
| 2431 | ------------------------------------------------------------------- |
| 2432 | |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 2433 | Copyright (c) 1992, 1993, 1994 Henry Spencer. |
| 2434 | |
| 2435 | This code is derived from software contributed to Berkeley by |
| 2436 | Henry Spencer. |
| 2437 | |
| 2438 | Redistribution and use in source and binary forms, with or without |
| 2439 | modification, are permitted provided that the following conditions |
| 2440 | are met: |
| 2441 | 1. Redistributions of source code must retain the above copyright |
| 2442 | notice, this list of conditions and the following disclaimer. |
| 2443 | 2. Redistributions in binary form must reproduce the above copyright |
| 2444 | notice, this list of conditions and the following disclaimer in the |
| 2445 | documentation and/or other materials provided with the distribution. |
| 2446 | 3. All advertising materials mentioning features or use of this software |
| 2447 | must display the following acknowledgement: |
| 2448 | This product includes software developed by the University of |
| 2449 | California, Berkeley and its contributors. |
| 2450 | 4. Neither the name of the University nor the names of its contributors |
| 2451 | may be used to endorse or promote products derived from this software |
| 2452 | without specific prior written permission. |
| 2453 | |
| 2454 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2455 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2456 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2457 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2458 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2459 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2460 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2461 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2462 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2463 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2464 | SUCH DAMAGE. |
| 2465 | |
| 2466 | ------------------------------------------------------------------- |
| 2467 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2468 | Copyright (c) 1993 |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2469 | The Regents of the University of California. All rights reserved. |
| 2470 | |
| 2471 | Redistribution and use in source and binary forms, with or without |
| 2472 | modification, are permitted provided that the following conditions |
| 2473 | are met: |
| 2474 | 1. Redistributions of source code must retain the above copyright |
| 2475 | notice, this list of conditions and the following disclaimer. |
| 2476 | 2. Redistributions in binary form must reproduce the above copyright |
| 2477 | notice, this list of conditions and the following disclaimer in the |
| 2478 | documentation and/or other materials provided with the distribution. |
| 2479 | 3. Neither the name of the University nor the names of its contributors |
| 2480 | may be used to endorse or promote products derived from this software |
| 2481 | without specific prior written permission. |
| 2482 | |
| 2483 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2484 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2485 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2486 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2487 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2488 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2489 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2490 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2491 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2492 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2493 | SUCH DAMAGE. |
| 2494 | |
| 2495 | ------------------------------------------------------------------- |
| 2496 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2497 | Copyright (c) 1993 Martin Birgmeier |
| 2498 | All rights reserved. |
| 2499 | |
| 2500 | You may redistribute unmodified or modified versions of this source |
| 2501 | code provided that the above copyright notice and this and the |
| 2502 | following conditions are retained. |
| 2503 | |
| 2504 | This software is provided ``as is'', and comes with no warranties |
| 2505 | of any kind. I shall in no event be liable for anything that happens |
| 2506 | to anyone/anything when using this software. |
| 2507 | |
| 2508 | ------------------------------------------------------------------- |
| 2509 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2510 | Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2511 | All rights reserved. |
| 2512 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2513 | Redistribution and use in source and binary forms, with or without |
| 2514 | modification, are permitted provided that the following conditions |
| 2515 | are met: |
| 2516 | 1. Redistributions of source code must retain the above copyright |
| 2517 | notice, this list of conditions and the following disclaimer. |
| 2518 | 2. Redistributions in binary form must reproduce the above copyright |
| 2519 | notice, this list of conditions and the following disclaimer in the |
| 2520 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2521 | 3. The name of the author may not be used to endorse or promote products |
| 2522 | derived from this software without specific prior written permission. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2523 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 2524 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2525 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2526 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2527 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2528 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2529 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2530 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2531 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2532 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2533 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 2534 | |
| 2535 | ------------------------------------------------------------------- |
| 2536 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2537 | Copyright (c) 1996 by Internet Software Consortium. |
| 2538 | |
| 2539 | Permission to use, copy, modify, and distribute this software for any |
| 2540 | purpose with or without fee is hereby granted, provided that the above |
| 2541 | copyright notice and this permission notice appear in all copies. |
| 2542 | |
| 2543 | THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS |
| 2544 | ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES |
| 2545 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE |
| 2546 | CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 2547 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 2548 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 2549 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 2550 | SOFTWARE. |
| 2551 | |
| 2552 | ------------------------------------------------------------------- |
| 2553 | |
| 2554 | Copyright (c) 1996, David Mazieres <dm@uun.org> |
| 2555 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 2556 | Copyright (c) 2013, Markus Friedl <markus@openbsd.org> |
| 2557 | |
| 2558 | Permission to use, copy, modify, and distribute this software for any |
| 2559 | purpose with or without fee is hereby granted, provided that the above |
| 2560 | copyright notice and this permission notice appear in all copies. |
| 2561 | |
| 2562 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2563 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2564 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2565 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2566 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2567 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2568 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2569 | |
| 2570 | ------------------------------------------------------------------- |
| 2571 | |
| 2572 | Copyright (c) 1996-1998, 2008 Theo de Raadt |
| 2573 | Copyright (c) 1997, 2008-2009 Todd C. Miller |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2574 | |
| 2575 | Permission to use, copy, modify, and distribute this software for any |
| 2576 | purpose with or without fee is hereby granted, provided that the above |
| 2577 | copyright notice and this permission notice appear in all copies. |
| 2578 | |
| 2579 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2580 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2581 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2582 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2583 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2584 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2585 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2586 | |
| 2587 | ------------------------------------------------------------------- |
| 2588 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2589 | Copyright (c) 1997 Mark Brinicombe |
| 2590 | Copyright (c) 2010 Android Open Source Project. |
| 2591 | All rights reserved. |
| 2592 | |
| 2593 | Redistribution and use in source and binary forms, with or without |
| 2594 | modification, are permitted provided that the following conditions |
| 2595 | are met: |
| 2596 | 1. Redistributions of source code must retain the above copyright |
| 2597 | notice, this list of conditions and the following disclaimer. |
| 2598 | 2. Redistributions in binary form must reproduce the above copyright |
| 2599 | notice, this list of conditions and the following disclaimer in the |
| 2600 | documentation and/or other materials provided with the distribution. |
| 2601 | 3. All advertising materials mentioning features or use of this software |
| 2602 | must display the following acknowledgement: |
| 2603 | This product includes software developed by Mark Brinicombe |
| 2604 | 4. Neither the name of the University nor the names of its contributors |
| 2605 | may be used to endorse or promote products derived from this software |
| 2606 | without specific prior written permission. |
| 2607 | |
| 2608 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 2609 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2610 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2611 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 2612 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2613 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2614 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2615 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2616 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2617 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2618 | SUCH DAMAGE. |
| 2619 | |
| 2620 | ------------------------------------------------------------------- |
| 2621 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2622 | Copyright (c) 1997 Niklas Hallqvist. All rights reserved. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2623 | |
| 2624 | Redistribution and use in source and binary forms, with or without |
| 2625 | modification, are permitted provided that the following conditions |
| 2626 | are met: |
| 2627 | 1. Redistributions of source code must retain the above copyright |
| 2628 | notice, this list of conditions and the following disclaimer. |
| 2629 | 2. Redistributions in binary form must reproduce the above copyright |
| 2630 | notice, this list of conditions and the following disclaimer in the |
| 2631 | documentation and/or other materials provided with the distribution. |
| 2632 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2633 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 2634 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 2635 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 2636 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 2637 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 2638 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 2639 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 2640 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 2641 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 2642 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2643 | |
| 2644 | ------------------------------------------------------------------- |
| 2645 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2646 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2647 | |
| 2648 | Permission to use, copy, modify, and distribute this software for any |
| 2649 | purpose with or without fee is hereby granted, provided that the above |
| 2650 | copyright notice and this permission notice appear in all copies. |
| 2651 | |
| 2652 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2653 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2654 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2655 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2656 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2657 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2658 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2659 | |
| 2660 | ------------------------------------------------------------------- |
| 2661 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 2662 | Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2663 | All rights reserved. |
| 2664 | |
| 2665 | Redistribution and use in source and binary forms, with or without |
| 2666 | modification, are permitted provided that the following conditions |
| 2667 | are met: |
| 2668 | 1. Redistributions of source code must retain the above copyright |
| 2669 | notice, this list of conditions and the following disclaimer. |
| 2670 | 2. Redistributions in binary form must reproduce the above copyright |
| 2671 | notice, this list of conditions and the following disclaimer in the |
| 2672 | documentation and/or other materials provided with the distribution. |
| 2673 | 3. The name of the author may not be used to endorse or promote products |
| 2674 | derived from this software without specific prior written permission. |
| 2675 | |
| 2676 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 2677 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 2678 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 2679 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 2680 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2681 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2682 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2683 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2684 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2685 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2686 | |
| 2687 | ------------------------------------------------------------------- |
| 2688 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2689 | Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2690 | All rights reserved. |
| 2691 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2692 | This code was contributed to The NetBSD Foundation by Klaus Klein. |
| 2693 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2694 | Redistribution and use in source and binary forms, with or without |
| 2695 | modification, are permitted provided that the following conditions |
| 2696 | are met: |
| 2697 | 1. Redistributions of source code must retain the above copyright |
| 2698 | notice, this list of conditions and the following disclaimer. |
| 2699 | 2. Redistributions in binary form must reproduce the above copyright |
| 2700 | notice, this list of conditions and the following disclaimer in the |
| 2701 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2702 | 3. All advertising materials mentioning features or use of this software |
| 2703 | must display the following acknowledgement: |
| 2704 | This product includes software developed by the NetBSD |
| 2705 | Foundation, Inc. and its contributors. |
| 2706 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2707 | contributors may be used to endorse or promote products derived |
| 2708 | from this software without specific prior written permission. |
| 2709 | |
| 2710 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2711 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2712 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2713 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2714 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2715 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2716 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2717 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2718 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2719 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2720 | POSSIBILITY OF SUCH DAMAGE. |
| 2721 | |
| 2722 | ------------------------------------------------------------------- |
| 2723 | |
| 2724 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 2725 | All rights reserved. |
| 2726 | |
| 2727 | This code is derived from software contributed to The NetBSD Foundation |
| 2728 | by Luke Mewburn. |
| 2729 | |
| 2730 | Redistribution and use in source and binary forms, with or without |
| 2731 | modification, are permitted provided that the following conditions |
| 2732 | are met: |
| 2733 | 1. Redistributions of source code must retain the above copyright |
| 2734 | notice, this list of conditions and the following disclaimer. |
| 2735 | 2. Redistributions in binary form must reproduce the above copyright |
| 2736 | notice, this list of conditions and the following disclaimer in the |
| 2737 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2738 | |
| 2739 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2740 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2741 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2742 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2743 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2744 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2745 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2746 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2747 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2748 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2749 | POSSIBILITY OF SUCH DAMAGE. |
| 2750 | |
| 2751 | ------------------------------------------------------------------- |
| 2752 | |
| 2753 | Copyright (c) 1997, 1998, 1999, 2004 The NetBSD Foundation, Inc. |
| 2754 | All rights reserved. |
| 2755 | |
| 2756 | This code is derived from software contributed to The NetBSD Foundation |
| 2757 | by Luke Mewburn; and by Jason R. Thorpe. |
| 2758 | |
| 2759 | Redistribution and use in source and binary forms, with or without |
| 2760 | modification, are permitted provided that the following conditions |
| 2761 | are met: |
| 2762 | 1. Redistributions of source code must retain the above copyright |
| 2763 | notice, this list of conditions and the following disclaimer. |
| 2764 | 2. Redistributions in binary form must reproduce the above copyright |
| 2765 | notice, this list of conditions and the following disclaimer in the |
| 2766 | documentation and/or other materials provided with the distribution. |
| 2767 | 3. All advertising materials mentioning features or use of this software |
| 2768 | must display the following acknowledgement: |
| 2769 | This product includes software developed by the NetBSD |
| 2770 | Foundation, Inc. and its contributors. |
| 2771 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2772 | contributors may be used to endorse or promote products derived |
| 2773 | from this software without specific prior written permission. |
| 2774 | |
| 2775 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2776 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2777 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2778 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2779 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2780 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2781 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2782 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2783 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2784 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2785 | POSSIBILITY OF SUCH DAMAGE. |
| 2786 | |
| 2787 | ------------------------------------------------------------------- |
| 2788 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2789 | Copyright (c) 1997, 2005 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2790 | |
| 2791 | Permission to use, copy, modify, and distribute this software for any |
| 2792 | purpose with or without fee is hereby granted, provided that the above |
| 2793 | copyright notice and this permission notice appear in all copies. |
| 2794 | |
| 2795 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2796 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2797 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2798 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2799 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2800 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2801 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 2802 | |
| 2803 | ------------------------------------------------------------------- |
| 2804 | |
| 2805 | Copyright (c) 1998 Softweyr LLC. All rights reserved. |
| 2806 | |
| 2807 | strtok_r, from Berkeley strtok |
| 2808 | Oct 13, 1998 by Wes Peters <wes@softweyr.com> |
| 2809 | |
| 2810 | Copyright (c) 1988, 1993 |
| 2811 | The Regents of the University of California. All rights reserved. |
| 2812 | |
| 2813 | Redistribution and use in source and binary forms, with or without |
| 2814 | modification, are permitted provided that the following conditions |
| 2815 | are met: |
| 2816 | 1. Redistributions of source code must retain the above copyright |
| 2817 | notices, this list of conditions and the following disclaimer. |
| 2818 | 2. Redistributions in binary form must reproduce the above copyright |
| 2819 | notices, this list of conditions and the following disclaimer in the |
| 2820 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 2821 | 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] | 2822 | may be used to endorse or promote products derived from this software |
| 2823 | without specific prior written permission. |
| 2824 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2825 | THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND CONTRIBUTORS |
| 2826 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 2827 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 2828 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTWEYR LLC, THE |
| 2829 | REGENTS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 2830 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 2831 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 2832 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 2833 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 2834 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 2835 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2836 | |
| 2837 | ------------------------------------------------------------------- |
| 2838 | |
| 2839 | Copyright (c) 1998 The NetBSD Foundation, Inc. |
| 2840 | All rights reserved. |
| 2841 | |
| 2842 | This code is derived from software contributed to The NetBSD Foundation |
| 2843 | by Klaus Klein. |
| 2844 | |
| 2845 | Redistribution and use in source and binary forms, with or without |
| 2846 | modification, are permitted provided that the following conditions |
| 2847 | are met: |
| 2848 | 1. Redistributions of source code must retain the above copyright |
| 2849 | notice, this list of conditions and the following disclaimer. |
| 2850 | 2. Redistributions in binary form must reproduce the above copyright |
| 2851 | notice, this list of conditions and the following disclaimer in the |
| 2852 | documentation and/or other materials provided with the distribution. |
| 2853 | 3. All advertising materials mentioning features or use of this software |
| 2854 | must display the following acknowledgement: |
| 2855 | This product includes software developed by the NetBSD |
| 2856 | Foundation, Inc. and its contributors. |
| 2857 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2858 | contributors may be used to endorse or promote products derived |
| 2859 | from this software without specific prior written permission. |
| 2860 | |
| 2861 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 2862 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 2863 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 2864 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 2865 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 2866 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 2867 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 2868 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 2869 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 2870 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 2871 | POSSIBILITY OF SUCH DAMAGE. |
| 2872 | |
| 2873 | ------------------------------------------------------------------- |
| 2874 | |
| 2875 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2876 | |
| 2877 | Permission to use, copy, modify, and distribute this software for any |
| 2878 | purpose with or without fee is hereby granted, provided that the above |
| 2879 | copyright notice and this permission notice appear in all copies. |
| 2880 | |
| 2881 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 2882 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 2883 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 2884 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 2885 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 2886 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 2887 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2888 | |
| 2889 | ------------------------------------------------------------------- |
| 2890 | |
| 2891 | Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
| 2892 | All rights reserved. |
| 2893 | |
| 2894 | Redistribution and use in source and binary forms, with or without |
| 2895 | modification, are permitted provided that the following conditions |
| 2896 | are met: |
| 2897 | 1. Redistributions of source code must retain the above copyright |
| 2898 | notice, this list of conditions and the following disclaimer. |
| 2899 | 2. Redistributions in binary form must reproduce the above copyright |
| 2900 | notice, this list of conditions and the following disclaimer in the |
| 2901 | documentation and/or other materials provided with the distribution. |
| 2902 | 3. The name of the author may not be used to endorse or promote products |
| 2903 | derived from this software without specific prior written permission. |
| 2904 | |
| 2905 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 2906 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
| 2907 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 2908 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 2909 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 2910 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 2911 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 2912 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 2913 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 2914 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 2915 | |
| 2916 | ------------------------------------------------------------------- |
| 2917 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2918 | Copyright (c) 1999 |
| 2919 | David E. O'Brien |
| 2920 | Copyright (c) 1988, 1993 |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 2921 | The Regents of the University of California. All rights reserved. |
| 2922 | |
| 2923 | Redistribution and use in source and binary forms, with or without |
| 2924 | modification, are permitted provided that the following conditions |
| 2925 | are met: |
| 2926 | 1. Redistributions of source code must retain the above copyright |
| 2927 | notice, this list of conditions and the following disclaimer. |
| 2928 | 2. Redistributions in binary form must reproduce the above copyright |
| 2929 | notice, this list of conditions and the following disclaimer in the |
| 2930 | documentation and/or other materials provided with the distribution. |
| 2931 | 3. Neither the name of the University nor the names of its contributors |
| 2932 | may be used to endorse or promote products derived from this software |
| 2933 | without specific prior written permission. |
| 2934 | |
| 2935 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 2936 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2937 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2938 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 2939 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2940 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2941 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2942 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2943 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2944 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2945 | SUCH DAMAGE. |
| 2946 | |
| 2947 | ------------------------------------------------------------------- |
| 2948 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 2949 | Copyright (c) 2000 Ben Harris. |
| 2950 | Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
| 2951 | All rights reserved. |
| 2952 | |
| 2953 | Redistribution and use in source and binary forms, with or without |
| 2954 | modification, are permitted provided that the following conditions |
| 2955 | are met: |
| 2956 | 1. Redistributions of source code must retain the above copyright |
| 2957 | notice, this list of conditions and the following disclaimer. |
| 2958 | 2. Redistributions in binary form must reproduce the above copyright |
| 2959 | notice, this list of conditions and the following disclaimer in the |
| 2960 | documentation and/or other materials provided with the distribution. |
| 2961 | 3. Neither the name of the project nor the names of its contributors |
| 2962 | may be used to endorse or promote products derived from this software |
| 2963 | without specific prior written permission. |
| 2964 | |
| 2965 | THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
| 2966 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 2967 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 2968 | ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
| 2969 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 2970 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 2971 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 2972 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 2973 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 2974 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 2975 | SUCH DAMAGE. |
| 2976 | |
| 2977 | ------------------------------------------------------------------- |
| 2978 | |
| 2979 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 2980 | All rights reserved. |
| 2981 | |
| 2982 | This code is derived from software contributed to The NetBSD Foundation |
| 2983 | by Atsushi Onoe. |
| 2984 | |
| 2985 | Redistribution and use in source and binary forms, with or without |
| 2986 | modification, are permitted provided that the following conditions |
| 2987 | are met: |
| 2988 | 1. Redistributions of source code must retain the above copyright |
| 2989 | notice, this list of conditions and the following disclaimer. |
| 2990 | 2. Redistributions in binary form must reproduce the above copyright |
| 2991 | notice, this list of conditions and the following disclaimer in the |
| 2992 | documentation and/or other materials provided with the distribution. |
| 2993 | 3. All advertising materials mentioning features or use of this software |
| 2994 | must display the following acknowledgement: |
| 2995 | This product includes software developed by the NetBSD |
| 2996 | Foundation, Inc. and its contributors. |
| 2997 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 2998 | contributors may be used to endorse or promote products derived |
| 2999 | from this software without specific prior written permission. |
| 3000 | |
| 3001 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3002 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3003 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3004 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3005 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3006 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3007 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3008 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3009 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3010 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3011 | POSSIBILITY OF SUCH DAMAGE. |
| 3012 | |
| 3013 | ------------------------------------------------------------------- |
| 3014 | |
| 3015 | Copyright (c) 2000 The NetBSD Foundation, Inc. |
| 3016 | All rights reserved. |
| 3017 | |
| 3018 | This code is derived from software contributed to The NetBSD Foundation |
| 3019 | by Dieter Baron and Thomas Klausner. |
| 3020 | |
| 3021 | Redistribution and use in source and binary forms, with or without |
| 3022 | modification, are permitted provided that the following conditions |
| 3023 | are met: |
| 3024 | 1. Redistributions of source code must retain the above copyright |
| 3025 | notice, this list of conditions and the following disclaimer. |
| 3026 | 2. Redistributions in binary form must reproduce the above copyright |
| 3027 | notice, this list of conditions and the following disclaimer in the |
| 3028 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3029 | |
| 3030 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3031 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3032 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3033 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3034 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3035 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3036 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3037 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3038 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3039 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3040 | POSSIBILITY OF SUCH DAMAGE. |
| 3041 | |
| 3042 | ------------------------------------------------------------------- |
| 3043 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3044 | Copyright (c) 2001 Mike Barcroft <mike@FreeBSD.org> |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3045 | All rights reserved. |
| 3046 | |
| 3047 | Redistribution and use in source and binary forms, with or without |
| 3048 | modification, are permitted provided that the following conditions |
| 3049 | are met: |
| 3050 | 1. Redistributions of source code must retain the above copyright |
| 3051 | notice, this list of conditions and the following disclaimer. |
| 3052 | 2. Redistributions in binary form must reproduce the above copyright |
| 3053 | notice, this list of conditions and the following disclaimer in the |
| 3054 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3055 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3056 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3057 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3058 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3059 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3060 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3061 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3062 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3063 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3064 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3065 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3066 | SUCH DAMAGE. |
| 3067 | |
| 3068 | ------------------------------------------------------------------- |
| 3069 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 3070 | Copyright (c) 2001 Wasabi Systems, Inc. |
| 3071 | All rights reserved. |
| 3072 | |
| 3073 | Written by Frank van der Linden for Wasabi Systems, Inc. |
| 3074 | |
| 3075 | Redistribution and use in source and binary forms, with or without |
| 3076 | modification, are permitted provided that the following conditions |
| 3077 | are met: |
| 3078 | 1. Redistributions of source code must retain the above copyright |
| 3079 | notice, this list of conditions and the following disclaimer. |
| 3080 | 2. Redistributions in binary form must reproduce the above copyright |
| 3081 | notice, this list of conditions and the following disclaimer in the |
| 3082 | documentation and/or other materials provided with the distribution. |
| 3083 | 3. All advertising materials mentioning features or use of this software |
| 3084 | must display the following acknowledgement: |
| 3085 | This product includes software developed for the NetBSD Project by |
| 3086 | Wasabi Systems, Inc. |
| 3087 | 4. The name of Wasabi Systems, Inc. may not be used to endorse |
| 3088 | or promote products derived from this software without specific prior |
| 3089 | written permission. |
| 3090 | |
| 3091 | THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND |
| 3092 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3093 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3094 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC |
| 3095 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3096 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3097 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3098 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3099 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3100 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3101 | POSSIBILITY OF SUCH DAMAGE. |
| 3102 | |
| 3103 | ------------------------------------------------------------------- |
| 3104 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3105 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3106 | |
| 3107 | Redistribution and use in source and binary forms, with or without |
| 3108 | modification, are permitted provided that the following conditions |
| 3109 | are met: |
| 3110 | 1. Redistributions of source code must retain the above copyright |
| 3111 | notice, this list of conditions and the following disclaimer. |
| 3112 | 2. Redistributions in binary form must reproduce the above copyright |
| 3113 | notice, this list of conditions and the following disclaimer in the |
| 3114 | documentation and/or other materials provided with the distribution. |
| 3115 | |
| 3116 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3117 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3118 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3119 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3120 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3121 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3122 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3123 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3124 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3125 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3126 | SUCH DAMAGE. |
| 3127 | |
| 3128 | ------------------------------------------------------------------- |
| 3129 | |
| 3130 | Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) |
| 3131 | |
| 3132 | Redistribution and use in source and binary forms, with or without |
| 3133 | modification, are permitted provided that the following conditions |
| 3134 | are met: |
| 3135 | 1. Redistributions of source code must retain the above copyright |
| 3136 | notice, this list of conditions and the following disclaimer. |
| 3137 | 2. Redistributions in binary form must reproduce the above copyright |
| 3138 | notice, this list of conditions and the following disclaimer in the |
| 3139 | documentation and/or other materials provided with the distribution. |
| 3140 | 3. Neither the name of Opsycon AB nor the names of its contributors |
| 3141 | may be used to endorse or promote products derived from this software |
| 3142 | without specific prior written permission. |
| 3143 | |
| 3144 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 3145 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 3146 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3147 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 3148 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3149 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3150 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3151 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3152 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3153 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3154 | SUCH DAMAGE. |
| 3155 | |
| 3156 | ------------------------------------------------------------------- |
| 3157 | |
| 3158 | Copyright (c) 2002 Daniel Hartmeier |
| 3159 | All rights reserved. |
| 3160 | |
| 3161 | Redistribution and use in source and binary forms, with or without |
| 3162 | modification, are permitted provided that the following conditions |
| 3163 | are met: |
| 3164 | |
| 3165 | - Redistributions of source code must retain the above copyright |
| 3166 | notice, this list of conditions and the following disclaimer. |
| 3167 | - Redistributions in binary form must reproduce the above |
| 3168 | copyright notice, this list of conditions and the following |
| 3169 | disclaimer in the documentation and/or other materials provided |
| 3170 | with the distribution. |
| 3171 | |
| 3172 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 3173 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3174 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 3175 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 3176 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3177 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 3178 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 3179 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 3180 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3181 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
| 3182 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3183 | POSSIBILITY OF SUCH DAMAGE. |
| 3184 | |
| 3185 | ------------------------------------------------------------------- |
| 3186 | |
| 3187 | Copyright (c) 2002 Marc Espie. |
| 3188 | |
| 3189 | Redistribution and use in source and binary forms, with or without |
| 3190 | modification, are permitted provided that the following conditions |
| 3191 | are met: |
| 3192 | 1. Redistributions of source code must retain the above copyright |
| 3193 | notice, this list of conditions and the following disclaimer. |
| 3194 | 2. Redistributions in binary form must reproduce the above copyright |
| 3195 | notice, this list of conditions and the following disclaimer in the |
| 3196 | documentation and/or other materials provided with the distribution. |
| 3197 | |
| 3198 | THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS |
| 3199 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 3200 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 3201 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBSD |
| 3202 | PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 3203 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 3204 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3205 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3206 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3207 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 3208 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3209 | |
| 3210 | ------------------------------------------------------------------- |
| 3211 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3212 | Copyright (c) 2002 The NetBSD Foundation, Inc. |
| 3213 | All rights reserved. |
| 3214 | |
| 3215 | This code is derived from software contributed to The NetBSD Foundation |
| 3216 | by Christos Zoulas. |
| 3217 | |
| 3218 | Redistribution and use in source and binary forms, with or without |
| 3219 | modification, are permitted provided that the following conditions |
| 3220 | are met: |
| 3221 | 1. Redistributions of source code must retain the above copyright |
| 3222 | notice, this list of conditions and the following disclaimer. |
| 3223 | 2. Redistributions in binary form must reproduce the above copyright |
| 3224 | notice, this list of conditions and the following disclaimer in the |
| 3225 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3226 | |
| 3227 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3228 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3229 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3230 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3231 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3232 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3233 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3234 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3235 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3236 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3237 | POSSIBILITY OF SUCH DAMAGE. |
| 3238 | |
| 3239 | ------------------------------------------------------------------- |
| 3240 | |
| 3241 | Copyright (c) 2002 Tim J. Robbins |
| 3242 | All rights reserved. |
| 3243 | |
| 3244 | Redistribution and use in source and binary forms, with or without |
| 3245 | modification, are permitted provided that the following conditions |
| 3246 | are met: |
| 3247 | 1. Redistributions of source code must retain the above copyright |
| 3248 | notice, this list of conditions and the following disclaimer. |
| 3249 | 2. Redistributions in binary form must reproduce the above copyright |
| 3250 | notice, this list of conditions and the following disclaimer in the |
| 3251 | documentation and/or other materials provided with the distribution. |
| 3252 | |
| 3253 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3254 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3255 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3256 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3257 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3258 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3259 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3260 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3261 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3262 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3263 | SUCH DAMAGE. |
| 3264 | |
| 3265 | ------------------------------------------------------------------- |
| 3266 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3267 | Copyright (c) 2002 Tim J. Robbins. |
| 3268 | All rights reserved. |
| 3269 | |
| 3270 | Redistribution and use in source and binary forms, with or without |
| 3271 | modification, are permitted provided that the following conditions |
| 3272 | are met: |
| 3273 | 1. Redistributions of source code must retain the above copyright |
| 3274 | notice, this list of conditions and the following disclaimer. |
| 3275 | 2. Redistributions in binary form must reproduce the above copyright |
| 3276 | notice, this list of conditions and the following disclaimer in the |
| 3277 | documentation and/or other materials provided with the distribution. |
| 3278 | |
| 3279 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3280 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3281 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3282 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3283 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3284 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3285 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3286 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3287 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3288 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3289 | SUCH DAMAGE. |
| 3290 | |
| 3291 | ------------------------------------------------------------------- |
| 3292 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3293 | Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3294 | |
| 3295 | Permission to use, copy, modify, and distribute this software for any |
| 3296 | purpose with or without fee is hereby granted, provided that the above |
| 3297 | copyright notice and this permission notice appear in all copies. |
| 3298 | |
| 3299 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3300 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3301 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3302 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3303 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3304 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3305 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3306 | |
| 3307 | Sponsored in part by the Defense Advanced Research Projects |
| 3308 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3309 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3310 | |
| 3311 | ------------------------------------------------------------------- |
| 3312 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 3313 | Copyright (c) 2002, 2003 Tim J. Robbins. |
| 3314 | All rights reserved. |
| 3315 | |
| 3316 | Redistribution and use in source and binary forms, with or without |
| 3317 | modification, are permitted provided that the following conditions |
| 3318 | are met: |
| 3319 | 1. Redistributions of source code must retain the above copyright |
| 3320 | notice, this list of conditions and the following disclaimer. |
| 3321 | 2. Redistributions in binary form must reproduce the above copyright |
| 3322 | notice, this list of conditions and the following disclaimer in the |
| 3323 | documentation and/or other materials provided with the distribution. |
| 3324 | |
| 3325 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3326 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3327 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3328 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3329 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3330 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3331 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3332 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3333 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3334 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3335 | SUCH DAMAGE. |
| 3336 | |
| 3337 | ------------------------------------------------------------------- |
| 3338 | |
| 3339 | Copyright (c) 2002-2004 Tim J. Robbins |
| 3340 | All rights reserved. |
| 3341 | |
| 3342 | Redistribution and use in source and binary forms, with or without |
| 3343 | modification, are permitted provided that the following conditions |
| 3344 | are met: |
| 3345 | 1. Redistributions of source code must retain the above copyright |
| 3346 | notice, this list of conditions and the following disclaimer. |
| 3347 | 2. Redistributions in binary form must reproduce the above copyright |
| 3348 | notice, this list of conditions and the following disclaimer in the |
| 3349 | documentation and/or other materials provided with the distribution. |
| 3350 | |
| 3351 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3352 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3353 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3354 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3355 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3356 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3357 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3358 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3359 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3360 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3361 | SUCH DAMAGE. |
| 3362 | |
| 3363 | ------------------------------------------------------------------- |
| 3364 | |
| 3365 | Copyright (c) 2002-2004 Tim J. Robbins. |
| 3366 | All rights reserved. |
| 3367 | |
| 3368 | Redistribution and use in source and binary forms, with or without |
| 3369 | modification, are permitted provided that the following conditions |
| 3370 | are met: |
| 3371 | 1. Redistributions of source code must retain the above copyright |
| 3372 | notice, this list of conditions and the following disclaimer. |
| 3373 | 2. Redistributions in binary form must reproduce the above copyright |
| 3374 | notice, this list of conditions and the following disclaimer in the |
| 3375 | documentation and/or other materials provided with the distribution. |
| 3376 | |
| 3377 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3378 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3379 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3380 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3381 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3382 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3383 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3384 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3385 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3386 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3387 | SUCH DAMAGE. |
| 3388 | |
| 3389 | ------------------------------------------------------------------- |
| 3390 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3391 | Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
| 3392 | |
| 3393 | Redistribution and use in source and binary forms, with or without |
| 3394 | modification, are permitted provided that the following conditions |
| 3395 | are met: |
| 3396 | 1. Redistributions of source code must retain the above copyright |
| 3397 | notice, this list of conditions and the following disclaimer. |
| 3398 | 2. Redistributions in binary form must reproduce the above copyright |
| 3399 | notice, this list of conditions and the following disclaimer in the |
| 3400 | documentation and/or other materials provided with the distribution. |
| 3401 | 3. The names of the authors may not be used to endorse or promote |
| 3402 | products derived from this software without specific prior written |
| 3403 | permission. |
| 3404 | |
| 3405 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3406 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3407 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3408 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3409 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3410 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3411 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3412 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3413 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3414 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3415 | SUCH DAMAGE. |
| 3416 | |
| 3417 | ------------------------------------------------------------------- |
| 3418 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3419 | Copyright (c) 2003 David Schultz <das@FreeBSD.ORG> |
| 3420 | All rights reserved. |
| 3421 | |
| 3422 | Redistribution and use in source and binary forms, with or without |
| 3423 | modification, are permitted provided that the following conditions |
| 3424 | are met: |
| 3425 | 1. Redistributions of source code must retain the above copyright |
| 3426 | notice, this list of conditions and the following disclaimer. |
| 3427 | 2. Redistributions in binary form must reproduce the above copyright |
| 3428 | notice, this list of conditions and the following disclaimer in the |
| 3429 | documentation and/or other materials provided with the distribution. |
| 3430 | |
| 3431 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3432 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3433 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3434 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3435 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3436 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3437 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3438 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3439 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3440 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3441 | SUCH DAMAGE. |
| 3442 | |
| 3443 | ------------------------------------------------------------------- |
| 3444 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3445 | Copyright (c) 2003 Networks Associates Technology, Inc. |
| 3446 | All rights reserved. |
| 3447 | |
| 3448 | Portions of this software were developed for the FreeBSD Project by |
| 3449 | Jacques A. Vidrine, Safeport Network Services, and Network |
| 3450 | Associates Laboratories, the Security Research Division of Network |
| 3451 | Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 |
| 3452 | ("CBOSS"), as part of the DARPA CHATS research program. |
| 3453 | |
| 3454 | Redistribution and use in source and binary forms, with or without |
| 3455 | modification, are permitted provided that the following conditions |
| 3456 | are met: |
| 3457 | 1. Redistributions of source code must retain the above copyright |
| 3458 | notice, this list of conditions and the following disclaimer. |
| 3459 | 2. Redistributions in binary form must reproduce the above copyright |
| 3460 | notice, this list of conditions and the following disclaimer in the |
| 3461 | documentation and/or other materials provided with the distribution. |
| 3462 | |
| 3463 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3464 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3465 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3466 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3467 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3468 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3469 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3470 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3471 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3472 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3473 | SUCH DAMAGE. |
| 3474 | |
| 3475 | ------------------------------------------------------------------- |
| 3476 | |
Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 3477 | Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3478 | |
| 3479 | Permission to use, copy, modify, and distribute this software for any |
| 3480 | purpose with or without fee is hereby granted, provided that the above |
| 3481 | copyright notice and this permission notice appear in all copies. |
| 3482 | |
| 3483 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3484 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3485 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3486 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3487 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3488 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3489 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3490 | |
| 3491 | Sponsored in part by the Defense Advanced Research Projects |
| 3492 | Agency (DARPA) and Air Force Research Laboratory, Air Force |
| 3493 | Materiel Command, USAF, under agreement number F39502-99-1-0512. |
| 3494 | |
| 3495 | ------------------------------------------------------------------- |
| 3496 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3497 | Copyright (c) 2004 The NetBSD Foundation, Inc. |
| 3498 | All rights reserved. |
| 3499 | |
| 3500 | This code is derived from software contributed to The NetBSD Foundation |
| 3501 | by Christos Zoulas. |
| 3502 | |
| 3503 | Redistribution and use in source and binary forms, with or without |
| 3504 | modification, are permitted provided that the following conditions |
| 3505 | are met: |
| 3506 | 1. Redistributions of source code must retain the above copyright |
| 3507 | notice, this list of conditions and the following disclaimer. |
| 3508 | 2. Redistributions in binary form must reproduce the above copyright |
| 3509 | notice, this list of conditions and the following disclaimer in the |
| 3510 | documentation and/or other materials provided with the distribution. |
| 3511 | 3. All advertising materials mentioning features or use of this software |
| 3512 | must display the following acknowledgement: |
| 3513 | This product includes software developed by the NetBSD |
| 3514 | Foundation, Inc. and its contributors. |
| 3515 | 4. Neither the name of The NetBSD Foundation nor the names of its |
| 3516 | contributors may be used to endorse or promote products derived |
| 3517 | from this software without specific prior written permission. |
| 3518 | |
| 3519 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 3520 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 3521 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 3522 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 3523 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 3524 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 3525 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 3526 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 3527 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 3528 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 3529 | POSSIBILITY OF SUCH DAMAGE. |
| 3530 | |
| 3531 | ------------------------------------------------------------------- |
| 3532 | |
| 3533 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3534 | Copyright (c) 1995,1999 by Internet Software Consortium. |
| 3535 | |
| 3536 | Permission to use, copy, modify, and distribute this software for any |
| 3537 | purpose with or without fee is hereby granted, provided that the above |
| 3538 | copyright notice and this permission notice appear in all copies. |
| 3539 | |
| 3540 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3541 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3542 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3543 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3544 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3545 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3546 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3547 | |
| 3548 | ------------------------------------------------------------------- |
| 3549 | |
| 3550 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3551 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 3552 | |
| 3553 | Permission to use, copy, modify, and distribute this software for any |
| 3554 | purpose with or without fee is hereby granted, provided that the above |
| 3555 | copyright notice and this permission notice appear in all copies. |
| 3556 | |
| 3557 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3558 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3559 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3560 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3561 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3562 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3563 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3564 | |
| 3565 | ------------------------------------------------------------------- |
| 3566 | |
| 3567 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3568 | Copyright (c) 1995-1999 by Internet Software Consortium. |
| 3569 | |
| 3570 | Permission to use, copy, modify, and distribute this software for any |
| 3571 | purpose with or without fee is hereby granted, provided that the above |
| 3572 | copyright notice and this permission notice appear in all copies. |
| 3573 | |
| 3574 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3575 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3576 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3577 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3578 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3579 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3580 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3581 | |
| 3582 | ------------------------------------------------------------------- |
| 3583 | |
| 3584 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3585 | Copyright (c) 1996,1999 by Internet Software Consortium. |
| 3586 | |
| 3587 | Permission to use, copy, modify, and distribute this software for any |
| 3588 | purpose with or without fee is hereby granted, provided that the above |
| 3589 | copyright notice and this permission notice appear in all copies. |
| 3590 | |
| 3591 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3592 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3593 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3594 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3595 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3596 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3597 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3598 | |
| 3599 | ------------------------------------------------------------------- |
| 3600 | |
| 3601 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3602 | Copyright (c) 1996-1999 by Internet Software Consortium |
| 3603 | |
| 3604 | Permission to use, copy, modify, and distribute this software for any |
| 3605 | purpose with or without fee is hereby granted, provided that the above |
| 3606 | copyright notice and this permission notice appear in all copies. |
| 3607 | |
| 3608 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3609 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3610 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3611 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3612 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3613 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3614 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3615 | |
| 3616 | ------------------------------------------------------------------- |
| 3617 | |
| 3618 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3619 | Copyright (c) 1996-1999 by Internet Software Consortium. |
| 3620 | |
| 3621 | Permission to use, copy, modify, and distribute this software for any |
| 3622 | purpose with or without fee is hereby granted, provided that the above |
| 3623 | copyright notice and this permission notice appear in all copies. |
| 3624 | |
| 3625 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3626 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3627 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3628 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3629 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3630 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3631 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3632 | |
| 3633 | ------------------------------------------------------------------- |
| 3634 | |
| 3635 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3636 | Copyright (c) 1997,1999 by Internet Software Consortium. |
| 3637 | |
| 3638 | Permission to use, copy, modify, and distribute this software for any |
| 3639 | purpose with or without fee is hereby granted, provided that the above |
| 3640 | copyright notice and this permission notice appear in all copies. |
| 3641 | |
| 3642 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3643 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3644 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3645 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3646 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3647 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3648 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3649 | |
| 3650 | ------------------------------------------------------------------- |
| 3651 | |
| 3652 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3653 | Copyright (c) 1999 by Internet Software Consortium. |
| 3654 | |
| 3655 | Permission to use, copy, modify, and distribute this software for any |
| 3656 | purpose with or without fee is hereby granted, provided that the above |
| 3657 | copyright notice and this permission notice appear in all copies. |
| 3658 | |
| 3659 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3660 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3661 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3662 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3663 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3664 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3665 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3666 | |
| 3667 | ------------------------------------------------------------------- |
| 3668 | |
| 3669 | Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") |
| 3670 | Portions Copyright (c) 1996-1999 by Internet Software Consortium. |
| 3671 | |
| 3672 | Permission to use, copy, modify, and distribute this software for any |
| 3673 | purpose with or without fee is hereby granted, provided that the above |
| 3674 | copyright notice and this permission notice appear in all copies. |
| 3675 | |
| 3676 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3677 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3678 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3679 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3680 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3681 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3682 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3683 | |
| 3684 | ------------------------------------------------------------------- |
| 3685 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 3686 | Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> |
| 3687 | All rights reserved. |
| 3688 | |
| 3689 | Redistribution and use in source and binary forms, with or without |
| 3690 | modification, are permitted provided that the following conditions |
| 3691 | are met: |
| 3692 | 1. Redistributions of source code must retain the above copyright |
| 3693 | notice, this list of conditions and the following disclaimer. |
| 3694 | 2. Redistributions in binary form must reproduce the above copyright |
| 3695 | notice, this list of conditions and the following disclaimer in the |
| 3696 | documentation and/or other materials provided with the distribution. |
| 3697 | |
| 3698 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3699 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3700 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3701 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3702 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3703 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3704 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3705 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3706 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3707 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3708 | SUCH DAMAGE. |
| 3709 | |
| 3710 | ------------------------------------------------------------------- |
| 3711 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3712 | Copyright (c) 2005 Tim J. Robbins. |
| 3713 | All rights reserved. |
| 3714 | |
| 3715 | Redistribution and use in source and binary forms, with or without |
| 3716 | modification, are permitted provided that the following conditions |
| 3717 | are met: |
| 3718 | 1. Redistributions of source code must retain the above copyright |
| 3719 | notice, this list of conditions and the following disclaimer. |
| 3720 | 2. Redistributions in binary form must reproduce the above copyright |
| 3721 | notice, this list of conditions and the following disclaimer in the |
| 3722 | documentation and/or other materials provided with the distribution. |
| 3723 | |
| 3724 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3725 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3726 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3727 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3728 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3729 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3730 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3731 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3732 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3733 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3734 | SUCH DAMAGE. |
| 3735 | |
| 3736 | ------------------------------------------------------------------- |
| 3737 | |
Elliott Hughes | 448080d | 2013-01-29 16:25:06 -0800 | [diff] [blame] | 3738 | Copyright (c) 2005 by Internet Systems Consortium, Inc. ("ISC") |
| 3739 | Copyright (c) 1995-1999 by Internet Software Consortium |
| 3740 | |
| 3741 | Permission to use, copy, modify, and distribute this software for any |
| 3742 | purpose with or without fee is hereby granted, provided that the above |
| 3743 | copyright notice and this permission notice appear in all copies. |
| 3744 | |
| 3745 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES |
| 3746 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3747 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR |
| 3748 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3749 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3750 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 3751 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3752 | |
| 3753 | ------------------------------------------------------------------- |
| 3754 | |
Elliott Hughes | 7e54c76 | 2015-05-12 10:09:01 -0700 | [diff] [blame] | 3755 | Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> |
| 3756 | |
| 3757 | Permission to use, copy, modify, and distribute this software for any |
| 3758 | purpose with or without fee is hereby granted, provided that the above |
| 3759 | copyright notice and this permission notice appear in all copies. |
| 3760 | |
| 3761 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3762 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3763 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3764 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3765 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3766 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3767 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3768 | |
| 3769 | ------------------------------------------------------------------- |
| 3770 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3771 | Copyright (c) 2007-2008 Michael G Schwern |
| 3772 | |
| 3773 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
| 3774 | |
| 3775 | The MIT License: |
| 3776 | |
| 3777 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 3778 | of this software and associated documentation files (the "Software"), to deal |
| 3779 | in the Software without restriction, including without limitation the rights |
| 3780 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 3781 | copies of the Software, and to permit persons to whom the Software is |
| 3782 | furnished to do so, subject to the following conditions: |
| 3783 | |
| 3784 | The above copyright notice and this permission notice shall be included in |
| 3785 | all copies or substantial portions of the Software. |
| 3786 | |
| 3787 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 3788 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 3789 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 3790 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 3791 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 3792 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 3793 | THE SOFTWARE. |
| 3794 | |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3795 | ------------------------------------------------------------------- |
| 3796 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3797 | Copyright (c) 2007-2008 Michael G Schwern |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3798 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3799 | This software originally derived from Paul Sheer's pivotal_gmtime_r.c. |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3800 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3801 | The MIT License: |
| 3802 | |
| 3803 | Permission is hereby granted, free of charge, to any person obtaining a copy |
| 3804 | of this software and associated documentation files (the "Software"), to deal |
| 3805 | in the Software without restriction, including without limitation the rights |
| 3806 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 3807 | copies of the Software, and to permit persons to whom the Software is |
| 3808 | furnished to do so, subject to the following conditions: |
| 3809 | |
| 3810 | The above copyright notice and this permission notice shall be included in |
| 3811 | all copies or substantial portions of the Software. |
| 3812 | |
| 3813 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 3814 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 3815 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 3816 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 3817 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 3818 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 3819 | THE SOFTWARE. |
| 3820 | |
| 3821 | Origin: http://code.google.com/p/y2038 |
| 3822 | Modified for Bionic by the Android Open Source Project |
Elliott Hughes | 387d4b7 | 2012-08-09 15:17:46 -0700 | [diff] [blame] | 3823 | |
| 3824 | ------------------------------------------------------------------- |
| 3825 | |
| 3826 | Copyright (c) 2008 Android Open Source Project (query id randomization) |
| 3827 | Copyright (c) 1985, 1993 |
| 3828 | The Regents of the University of California. All rights reserved. |
| 3829 | |
| 3830 | Redistribution and use in source and binary forms, with or without |
| 3831 | modification, are permitted provided that the following conditions |
| 3832 | are met: |
| 3833 | 1. Redistributions of source code must retain the above copyright |
| 3834 | notice, this list of conditions and the following disclaimer. |
| 3835 | 2. Redistributions in binary form must reproduce the above copyright |
| 3836 | notice, this list of conditions and the following disclaimer in the |
| 3837 | documentation and/or other materials provided with the distribution. |
| 3838 | 3. All advertising materials mentioning features or use of this software |
| 3839 | must display the following acknowledgement: |
| 3840 | This product includes software developed by the University of |
| 3841 | California, Berkeley and its contributors. |
| 3842 | 4. Neither the name of the University nor the names of its contributors |
| 3843 | may be used to endorse or promote products derived from this software |
| 3844 | without specific prior written permission. |
| 3845 | |
| 3846 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 3847 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3848 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3849 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 3850 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3851 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3852 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3853 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3854 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3855 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3856 | SUCH DAMAGE. |
| 3857 | |
| 3858 | ------------------------------------------------------------------- |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 3859 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 3860 | Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> |
| 3861 | |
| 3862 | Permission to use, copy, modify, and distribute this software for any |
| 3863 | purpose with or without fee is hereby granted, provided that the above |
| 3864 | copyright notice and this permission notice appear in all copies. |
| 3865 | |
| 3866 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3867 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3868 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3869 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3870 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3871 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3872 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3873 | |
| 3874 | ------------------------------------------------------------------- |
| 3875 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3876 | Copyright (c) 2008 Todd C. Miller <millert@openbsd.org> |
| 3877 | |
| 3878 | Permission to use, copy, modify, and distribute this software for any |
| 3879 | purpose with or without fee is hereby granted, provided that the above |
| 3880 | copyright notice and this permission notice appear in all copies. |
| 3881 | |
| 3882 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3883 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3884 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3885 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3886 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3887 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3888 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3889 | |
| 3890 | ------------------------------------------------------------------- |
| 3891 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 3892 | Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
| 3893 | |
| 3894 | Permission to use, copy, modify, and distribute this software for any |
| 3895 | purpose with or without fee is hereby granted, provided that the above |
| 3896 | copyright notice and this permission notice appear in all copies. |
| 3897 | |
| 3898 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 3899 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 3900 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 3901 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 3902 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 3903 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 3904 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 3905 | |
| 3906 | ------------------------------------------------------------------- |
| 3907 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3908 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 3909 | All rights reserved. |
| 3910 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 3911 | Copyright (c) 2011 The FreeBSD Foundation |
| 3912 | All rights reserved. |
| 3913 | Portions of this software were developed by David Chisnall |
| 3914 | under sponsorship from the FreeBSD Foundation. |
| 3915 | |
| 3916 | Redistribution and use in source and binary forms, with or without |
| 3917 | modification, are permitted provided that the following conditions |
| 3918 | are met: |
| 3919 | 1. Redistributions of source code must retain the above copyright |
| 3920 | notice, this list of conditions and the following disclaimer. |
| 3921 | 2. Redistributions in binary form must reproduce the above copyright |
| 3922 | notice, this list of conditions and the following disclaimer in the |
| 3923 | documentation and/or other materials provided with the distribution. |
| 3924 | |
| 3925 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3926 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3927 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3928 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3929 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3930 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3931 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3932 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3933 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3934 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3935 | SUCH DAMAGE. |
| 3936 | |
| 3937 | ------------------------------------------------------------------- |
| 3938 | |
| 3939 | Copyright (c) 2009 David Schultz <das@FreeBSD.org> |
| 3940 | All rights reserved. |
| 3941 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3942 | Redistribution and use in source and binary forms, with or without |
| 3943 | modification, are permitted provided that the following conditions |
| 3944 | are met: |
| 3945 | 1. Redistributions of source code must retain the above copyright |
| 3946 | notice, this list of conditions and the following disclaimer. |
| 3947 | 2. Redistributions in binary form must reproduce the above copyright |
| 3948 | notice, this list of conditions and the following disclaimer in the |
| 3949 | documentation and/or other materials provided with the distribution. |
| 3950 | |
| 3951 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 3952 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 3953 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 3954 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 3955 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 3956 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 3957 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 3958 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 3959 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 3960 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 3961 | SUCH DAMAGE. |
| 3962 | |
| 3963 | ------------------------------------------------------------------- |
| 3964 | |
Irina Tirdea | eac9eb4 | 2012-09-08 09:28:30 +0300 | [diff] [blame] | 3965 | Copyright (c) 2009 The NetBSD Foundation, Inc. |
| 3966 | |
| 3967 | This code is derived from software contributed to The NetBSD Foundation |
| 3968 | by Roy Marples. |
| 3969 | |
| 3970 | Redistribution and use in source and binary forms, with or without |
| 3971 | modification, are permitted provided that the following conditions |
| 3972 | are met: |
| 3973 | 1. Redistributions of source code must retain the above copyright |
| 3974 | notice, this list of conditions and the following disclaimer. |
| 3975 | 2. Redistributions in binary form must reproduce the above copyright |
| 3976 | notice, this list of conditions and the following disclaimer in the |
| 3977 | documentation and/or other materials provided with the distribution. |
| 3978 | |
| 3979 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 3980 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 3981 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 3982 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 3983 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 3984 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 3985 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 3986 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 3987 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 3988 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 3989 | |
| 3990 | ------------------------------------------------------------------- |
| 3991 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 3992 | Copyright (c) 2010 MIPS Technologies, Inc. |
| 3993 | |
| 3994 | All rights reserved. |
| 3995 | |
| 3996 | Redistribution and use in source and binary forms, with or without |
| 3997 | modification, are permitted provided that the following conditions |
| 3998 | are met: |
| 3999 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4000 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4001 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4002 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4003 | notice, this list of conditions and the following disclaimer |
| 4004 | in the documentation and/or other materials provided with |
| 4005 | the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4006 | * Neither the name of MIPS Technologies Inc. nor the names of its |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4007 | contributors may be used to endorse or promote products derived |
| 4008 | from this software without specific prior written permission. |
| 4009 | |
| 4010 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4011 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4012 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4013 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4014 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4015 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4016 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4017 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4018 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4019 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4020 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4021 | |
| 4022 | ------------------------------------------------------------------- |
| 4023 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4024 | Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> |
| 4025 | |
| 4026 | Permission to use, copy, modify, and distribute this software for any |
| 4027 | purpose with or without fee is hereby granted, provided that the above |
| 4028 | copyright notice and this permission notice appear in all copies. |
| 4029 | |
| 4030 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4031 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4032 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4033 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4034 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4035 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4036 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4037 | |
| 4038 | ------------------------------------------------------------------- |
| 4039 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4040 | Copyright (c) 2010, 2011, 2012, 2013 Intel Corporation |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4041 | All rights reserved. |
| 4042 | |
| 4043 | Redistribution and use in source and binary forms, with or without |
| 4044 | modification, are permitted provided that the following conditions are met: |
| 4045 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4046 | * Redistributions of source code must retain the above copyright notice, |
| 4047 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4048 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4049 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4050 | * this list of conditions and the following disclaimer in the documentation |
| 4051 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4052 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4053 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4054 | * may be used to endorse or promote products derived from this software |
| 4055 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4056 | |
| 4057 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4058 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4059 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4060 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4061 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4062 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4063 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4064 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4065 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4066 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4067 | |
| 4068 | ------------------------------------------------------------------- |
| 4069 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4070 | Copyright (c) 2010, Intel Corporation |
| 4071 | All rights reserved. |
| 4072 | |
| 4073 | Redistribution and use in source and binary forms, with or without |
| 4074 | modification, are permitted provided that the following conditions are met: |
| 4075 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4076 | * Redistributions of source code must retain the above copyright notice, |
| 4077 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4078 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4079 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4080 | * this list of conditions and the following disclaimer in the documentation |
| 4081 | * and/or other materials provided with the distribution. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4082 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4083 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4084 | * may be used to endorse or promote products derived from this software |
| 4085 | * without specific prior written permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4086 | |
| 4087 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4088 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4089 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4090 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4091 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4092 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4093 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4094 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4095 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4096 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4097 | |
| 4098 | ------------------------------------------------------------------- |
| 4099 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4100 | Copyright (c) 2011 David Chisnall |
| 4101 | All rights reserved. |
| 4102 | |
| 4103 | Redistribution and use in source and binary forms, with or without |
| 4104 | modification, are permitted provided that the following conditions |
| 4105 | are met: |
| 4106 | 1. Redistributions of source code must retain the above copyright |
| 4107 | notice, this list of conditions and the following disclaimer. |
| 4108 | 2. Redistributions in binary form must reproduce the above copyright |
| 4109 | notice, this list of conditions and the following disclaimer in the |
| 4110 | documentation and/or other materials provided with the distribution. |
| 4111 | |
| 4112 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4113 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4114 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4115 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4116 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4117 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4118 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4119 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4120 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4121 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4122 | SUCH DAMAGE. |
| 4123 | |
| 4124 | ------------------------------------------------------------------- |
| 4125 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4126 | Copyright (c) 2011 Ed Schouten <ed@FreeBSD.org> |
| 4127 | David Chisnall <theraven@FreeBSD.org> |
| 4128 | All rights reserved. |
| 4129 | |
| 4130 | Redistribution and use in source and binary forms, with or without |
| 4131 | modification, are permitted provided that the following conditions |
| 4132 | are met: |
| 4133 | 1. Redistributions of source code must retain the above copyright |
| 4134 | notice, this list of conditions and the following disclaimer. |
| 4135 | 2. Redistributions in binary form must reproduce the above copyright |
| 4136 | notice, this list of conditions and the following disclaimer in the |
| 4137 | documentation and/or other materials provided with the distribution. |
| 4138 | |
| 4139 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4140 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4141 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4142 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4143 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4144 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4145 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4146 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4147 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4148 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4149 | SUCH DAMAGE. |
| 4150 | |
| 4151 | ------------------------------------------------------------------- |
| 4152 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4153 | Copyright (c) 2011 Intel Corporation |
| 4154 | All rights reserved. |
| 4155 | |
| 4156 | Redistribution and use in source and binary forms, with or without |
| 4157 | modification, are permitted provided that the following conditions are met: |
| 4158 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4159 | * Redistributions of source code must retain the above copyright notice, |
| 4160 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4161 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4162 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4163 | * this list of conditions and the following disclaimer in the documentation |
| 4164 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4165 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4166 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4167 | * may be used to endorse or promote products derived from this software |
| 4168 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4169 | |
| 4170 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4171 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4172 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4173 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4174 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4175 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4176 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4177 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4178 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4179 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4180 | |
| 4181 | ------------------------------------------------------------------- |
| 4182 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 4183 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 4184 | |
| 4185 | Permission to use, copy, modify, and distribute this software for any |
| 4186 | purpose with or without fee is hereby granted, provided that the above |
| 4187 | copyright notice and this permission notice appear in all copies. |
| 4188 | |
| 4189 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4190 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4191 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4192 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4193 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4194 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4195 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4196 | |
| 4197 | ------------------------------------------------------------------- |
| 4198 | |
| 4199 | Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org> |
| 4200 | Copyright (c) 2009 Ted Unangst |
| 4201 | |
| 4202 | Permission to use, copy, modify, and distribute this software for any |
| 4203 | purpose with or without fee is hereby granted, provided that the above |
| 4204 | copyright notice and this permission notice appear in all copies. |
| 4205 | |
| 4206 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4207 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4208 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4209 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4210 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4211 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4212 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4213 | |
| 4214 | ------------------------------------------------------------------- |
| 4215 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4216 | Copyright (c) 2011 The Android Open Source Project |
| 4217 | Copyright (c) 2008 ARM Ltd |
| 4218 | All rights reserved. |
| 4219 | |
| 4220 | Redistribution and use in source and binary forms, with or without |
| 4221 | modification, are permitted provided that the following conditions |
| 4222 | are met: |
| 4223 | 1. Redistributions of source code must retain the above copyright |
| 4224 | notice, this list of conditions and the following disclaimer. |
| 4225 | 2. Redistributions in binary form must reproduce the above copyright |
| 4226 | notice, this list of conditions and the following disclaimer in the |
| 4227 | documentation and/or other materials provided with the distribution. |
| 4228 | 3. The name of the company may not be used to endorse or promote |
| 4229 | products derived from this software without specific prior written |
| 4230 | permission. |
| 4231 | |
| 4232 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 4233 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 4234 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4235 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4236 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 4237 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 4238 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 4239 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 4240 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4241 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4242 | |
| 4243 | ------------------------------------------------------------------- |
| 4244 | |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4245 | Copyright (c) 2011, 2012, 2013 Intel Corporation |
| 4246 | All rights reserved. |
| 4247 | |
| 4248 | Redistribution and use in source and binary forms, with or without |
| 4249 | modification, are permitted provided that the following conditions are met: |
| 4250 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4251 | * Redistributions of source code must retain the above copyright notice, |
| 4252 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4253 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4254 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4255 | * this list of conditions and the following disclaimer in the documentation |
| 4256 | * and/or other materials provided with the distribution. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4257 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4258 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4259 | * may be used to endorse or promote products derived from this software |
| 4260 | * without specific prior written permission. |
Elliott Hughes | 54a7494 | 2014-01-03 16:40:37 -0800 | [diff] [blame] | 4261 | |
| 4262 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4263 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4264 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4265 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4266 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4267 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4268 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4269 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4270 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4271 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4272 | |
| 4273 | ------------------------------------------------------------------- |
| 4274 | |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4275 | Copyright (c) 2011, Intel Corporation |
| 4276 | All rights reserved. |
| 4277 | |
| 4278 | Redistribution and use in source and binary forms, with or without |
| 4279 | modification, are permitted provided that the following conditions are met: |
| 4280 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4281 | * Redistributions of source code must retain the above copyright notice, |
| 4282 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4283 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4284 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4285 | * this list of conditions and the following disclaimer in the documentation |
| 4286 | * and/or other materials provided with the distribution. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4287 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4288 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4289 | * may be used to endorse or promote products derived from this software |
| 4290 | * without specific prior written permission. |
Elliott Hughes | 2815b1d | 2013-06-12 16:00:41 -0700 | [diff] [blame] | 4291 | |
| 4292 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4293 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4294 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4295 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4296 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4297 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4298 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4299 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4300 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4301 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4302 | |
| 4303 | ------------------------------------------------------------------- |
| 4304 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4305 | Copyright (c) 2011, VMware, Inc. |
| 4306 | All rights reserved. |
| 4307 | |
| 4308 | Redistribution and use in source and binary forms, with or without |
| 4309 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4310 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4311 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4312 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4313 | notice, this list of conditions and the following disclaimer in the |
| 4314 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4315 | * 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] | 4316 | may be used to endorse or promote products derived from this software |
| 4317 | without specific prior written permission. |
| 4318 | |
| 4319 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 4320 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4321 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4322 | ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR |
| 4323 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4324 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4325 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 4326 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4327 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4328 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4329 | |
| 4330 | ------------------------------------------------------------------- |
| 4331 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4332 | Copyright (c) 2012, Linaro Limited |
| 4333 | All rights reserved. |
| 4334 | |
| 4335 | Redistribution and use in source and binary forms, with or without |
| 4336 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4337 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4338 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4339 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4340 | notice, this list of conditions and the following disclaimer in the |
| 4341 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4342 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4343 | names of its contributors may be used to endorse or promote products |
| 4344 | derived from this software without specific prior written permission. |
| 4345 | |
| 4346 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4347 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4348 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4349 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4350 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4351 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4352 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4353 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4354 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4355 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4356 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4357 | |
| 4358 | ------------------------------------------------------------------- |
| 4359 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4360 | Copyright (c) 2012, Linaro Limited |
| 4361 | All rights reserved. |
| 4362 | Copyright (c) 2014, NVIDIA Corporation. All rights reserved. |
| 4363 | |
| 4364 | Redistribution and use in source and binary forms, with or without |
| 4365 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4366 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4367 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4368 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4369 | notice, this list of conditions and the following disclaimer in the |
| 4370 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4371 | * Neither the name of the Linaro nor the |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4372 | names of its contributors may be used to endorse or promote products |
| 4373 | derived from this software without specific prior written permission. |
| 4374 | |
| 4375 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4376 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4377 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4378 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4379 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4380 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4381 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4382 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4383 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4384 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4385 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4386 | |
| 4387 | ------------------------------------------------------------------- |
| 4388 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 4389 | Copyright (c) 2012-2015 |
| 4390 | MIPS Technologies, Inc., California. |
| 4391 | |
| 4392 | Redistribution and use in source and binary forms, with or without |
| 4393 | modification, are permitted provided that the following conditions |
| 4394 | are met: |
| 4395 | 1. Redistributions of source code must retain the above copyright |
| 4396 | notice, this list of conditions and the following disclaimer. |
| 4397 | 2. Redistributions in binary form must reproduce the above copyright |
| 4398 | notice, this list of conditions and the following disclaimer in the |
| 4399 | documentation and/or other materials provided with the distribution. |
| 4400 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 4401 | contributors may be used to endorse or promote products derived from |
| 4402 | this software without specific prior written permission. |
| 4403 | |
| 4404 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 4405 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4406 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4407 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 4408 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4409 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4410 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4411 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4412 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4413 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4414 | SUCH DAMAGE. |
| 4415 | |
| 4416 | ------------------------------------------------------------------- |
| 4417 | |
| 4418 | Copyright (c) 2013 |
| 4419 | MIPS Technologies, Inc., California. |
| 4420 | |
| 4421 | Redistribution and use in source and binary forms, with or without |
| 4422 | modification, are permitted provided that the following conditions |
| 4423 | are met: |
| 4424 | 1. Redistributions of source code must retain the above copyright |
| 4425 | notice, this list of conditions and the following disclaimer. |
| 4426 | 2. Redistributions in binary form must reproduce the above copyright |
| 4427 | notice, this list of conditions and the following disclaimer in the |
| 4428 | documentation and/or other materials provided with the distribution. |
| 4429 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 4430 | contributors may be used to endorse or promote products derived from |
| 4431 | this software without specific prior written permission. |
| 4432 | |
| 4433 | THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND |
| 4434 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4435 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4436 | ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE |
| 4437 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4438 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4439 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4440 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4441 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4442 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4443 | SUCH DAMAGE. |
| 4444 | |
| 4445 | ------------------------------------------------------------------- |
| 4446 | |
Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 4447 | Copyright (c) 2013 ARM Ltd |
| 4448 | All rights reserved. |
| 4449 | |
| 4450 | Redistribution and use in source and binary forms, with or without |
| 4451 | modification, are permitted provided that the following conditions |
| 4452 | are met: |
| 4453 | 1. Redistributions of source code must retain the above copyright |
| 4454 | notice, this list of conditions and the following disclaimer. |
| 4455 | 2. Redistributions in binary form must reproduce the above copyright |
| 4456 | notice, this list of conditions and the following disclaimer in the |
| 4457 | documentation and/or other materials provided with the distribution. |
| 4458 | 3. The name of the company may not be used to endorse or promote |
| 4459 | products derived from this software without specific prior written |
| 4460 | permission. |
| 4461 | |
| 4462 | THIS SOFTWARE IS PROVIDED BY ARM LTD ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 4463 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 4464 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4465 | IN NO EVENT SHALL ARM LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4466 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED |
| 4467 | TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 4468 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 4469 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 4470 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4471 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4472 | |
| 4473 | ------------------------------------------------------------------- |
| 4474 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4475 | Copyright (c) 2013 Antoine Jacoutot <ajacoutot@openbsd.org> |
| 4476 | |
| 4477 | Permission to use, copy, modify, and distribute this software for any |
| 4478 | purpose with or without fee is hereby granted, provided that the above |
| 4479 | copyright notice and this permission notice appear in all copies. |
| 4480 | |
| 4481 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4482 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4483 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4484 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4485 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4486 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4487 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4488 | |
| 4489 | ------------------------------------------------------------------- |
| 4490 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4491 | Copyright (c) 2013 The NetBSD Foundation, Inc. |
| 4492 | All rights reserved. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4493 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4494 | This code is derived from software contributed to The NetBSD Foundation |
| 4495 | by Christos Zoulas. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4496 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4497 | Redistribution and use in source and binary forms, with or without |
| 4498 | modification, are permitted provided that the following conditions |
| 4499 | are met: |
| 4500 | 1. Redistributions of source code must retain the above copyright |
| 4501 | notice, this list of conditions and the following disclaimer. |
| 4502 | 2. Redistributions in binary form must reproduce the above copyright |
| 4503 | notice, this list of conditions and the following disclaimer in the |
| 4504 | documentation and/or other materials provided with the distribution. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4505 | |
Elliott Hughes | 6b2b585 | 2014-12-18 16:27:30 -0800 | [diff] [blame] | 4506 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS |
| 4507 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
| 4508 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 4509 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS |
| 4510 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 4511 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 4512 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 4513 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 4514 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 4515 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 4516 | POSSIBILITY OF SUCH DAMAGE. |
Will Newton | 2753e12 | 2013-07-03 09:44:30 +0100 | [diff] [blame] | 4517 | |
| 4518 | ------------------------------------------------------------------- |
| 4519 | |
Elliott Hughes | 44ead71 | 2015-08-28 20:23:52 -0700 | [diff] [blame] | 4520 | Copyright (c) 2014 |
| 4521 | Imagination Technologies Limited. |
| 4522 | |
| 4523 | Redistribution and use in source and binary forms, with or without |
| 4524 | modification, are permitted provided that the following conditions |
| 4525 | are met: |
| 4526 | 1. Redistributions of source code must retain the above copyright |
| 4527 | notice, this list of conditions and the following disclaimer. |
| 4528 | 2. Redistributions in binary form must reproduce the above copyright |
| 4529 | notice, this list of conditions and the following disclaimer in the |
| 4530 | documentation and/or other materials provided with the distribution. |
| 4531 | 3. Neither the name of the MIPS Technologies, Inc., nor the names of its |
| 4532 | contributors may be used to endorse or promote products derived from |
| 4533 | this software without specific prior written permission. |
| 4534 | |
| 4535 | THIS SOFTWARE IS PROVIDED BY IMAGINATION TECHNOLOGIES LIMITED ``AS IS'' AND |
| 4536 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4537 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4538 | ARE DISCLAIMED. IN NO EVENT SHALL IMAGINATION TECHNOLOGIES LIMITED BE LIABLE |
| 4539 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4540 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4541 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4542 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4543 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4544 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4545 | SUCH DAMAGE. |
| 4546 | |
| 4547 | ------------------------------------------------------------------- |
| 4548 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4549 | Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org> |
| 4550 | Copyright (c) 2014 Bob Beck <beck@obtuse.com> |
| 4551 | |
| 4552 | Permission to use, copy, modify, and distribute this software for any |
| 4553 | purpose with or without fee is hereby granted, provided that the above |
| 4554 | copyright notice and this permission notice appear in all copies. |
| 4555 | |
| 4556 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 4557 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 4558 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 4559 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4560 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 4561 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 4562 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 4563 | |
| 4564 | Emulation of getentropy(2) as documented at: |
| 4565 | http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man2/getentropy.2 |
| 4566 | |
| 4567 | ------------------------------------------------------------------- |
| 4568 | |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4569 | Copyright (c) 2014, Intel Corporation |
| 4570 | All rights reserved. |
| 4571 | |
| 4572 | Redistribution and use in source and binary forms, with or without |
| 4573 | modification, are permitted provided that the following conditions are met: |
| 4574 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4575 | * Redistributions of source code must retain the above copyright notice, |
| 4576 | * this list of conditions and the following disclaimer. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4577 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4578 | * Redistributions in binary form must reproduce the above copyright notice, |
| 4579 | * this list of conditions and the following disclaimer in the documentation |
| 4580 | * and/or other materials provided with the distribution. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4581 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4582 | * Neither the name of Intel Corporation nor the names of its contributors |
| 4583 | * may be used to endorse or promote products derived from this software |
| 4584 | * without specific prior written permission. |
Elliott Hughes | 1558138 | 2014-07-07 15:42:06 -0700 | [diff] [blame] | 4585 | |
| 4586 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 4587 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4588 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4589 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR |
| 4590 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4591 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 4592 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 4593 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4594 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 4595 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4596 | |
| 4597 | ------------------------------------------------------------------- |
| 4598 | |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4599 | Copyright (c) 2014, Linaro Limited |
| 4600 | All rights reserved. |
| 4601 | |
| 4602 | Redistribution and use in source and binary forms, with or without |
| 4603 | modification, are permitted provided that the following conditions are met: |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4604 | * Redistributions of source code must retain the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4605 | notice, this list of conditions and the following disclaimer. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4606 | * Redistributions in binary form must reproduce the above copyright |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4607 | notice, this list of conditions and the following disclaimer in the |
| 4608 | documentation and/or other materials provided with the distribution. |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 4609 | * Neither the name of the Linaro nor the |
Elliott Hughes | 4e54b11 | 2014-03-06 15:06:11 -0800 | [diff] [blame] | 4610 | names of its contributors may be used to endorse or promote products |
| 4611 | derived from this software without specific prior written permission. |
| 4612 | |
| 4613 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 4614 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 4615 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 4616 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 4617 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 4618 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 4619 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4620 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4621 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4622 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 4623 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4624 | |
| 4625 | ------------------------------------------------------------------- |
| 4626 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4627 | Copyright (c)1999 Citrus Project, |
| 4628 | All rights reserved. |
| 4629 | |
| 4630 | Redistribution and use in source and binary forms, with or without |
| 4631 | modification, are permitted provided that the following conditions |
| 4632 | are met: |
| 4633 | 1. Redistributions of source code must retain the above copyright |
| 4634 | notice, this list of conditions and the following disclaimer. |
| 4635 | 2. Redistributions in binary form must reproduce the above copyright |
| 4636 | notice, this list of conditions and the following disclaimer in the |
| 4637 | documentation and/or other materials provided with the distribution. |
| 4638 | |
| 4639 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4640 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4641 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4642 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4643 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4644 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4645 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4646 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4647 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4648 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4649 | SUCH DAMAGE. |
| 4650 | |
| 4651 | ------------------------------------------------------------------- |
| 4652 | |
Elliott Hughes | bfa582d | 2014-05-05 14:58:17 -0700 | [diff] [blame] | 4653 | Copyright (c)1999, 2000, 2001 Citrus Project, |
| 4654 | All rights reserved. |
| 4655 | |
| 4656 | Redistribution and use in source and binary forms, with or without |
| 4657 | modification, are permitted provided that the following conditions |
| 4658 | are met: |
| 4659 | 1. Redistributions of source code must retain the above copyright |
| 4660 | notice, this list of conditions and the following disclaimer. |
| 4661 | 2. Redistributions in binary form must reproduce the above copyright |
| 4662 | notice, this list of conditions and the following disclaimer in the |
| 4663 | documentation and/or other materials provided with the distribution. |
| 4664 | |
| 4665 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4666 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4667 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4668 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4669 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4670 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4671 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4672 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4673 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4674 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4675 | SUCH DAMAGE. |
| 4676 | |
| 4677 | ------------------------------------------------------------------- |
| 4678 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4679 | Copyright (c)2001 Citrus Project, |
| 4680 | All rights reserved. |
| 4681 | |
| 4682 | Redistribution and use in source and binary forms, with or without |
| 4683 | modification, are permitted provided that the following conditions |
| 4684 | are met: |
| 4685 | 1. Redistributions of source code must retain the above copyright |
| 4686 | notice, this list of conditions and the following disclaimer. |
| 4687 | 2. Redistributions in binary form must reproduce the above copyright |
| 4688 | notice, this list of conditions and the following disclaimer in the |
| 4689 | documentation and/or other materials provided with the distribution. |
| 4690 | |
| 4691 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4692 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4693 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4694 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4695 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4696 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4697 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4698 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4699 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4700 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4701 | SUCH DAMAGE. |
| 4702 | |
| 4703 | ------------------------------------------------------------------- |
| 4704 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4705 | Copyright (c)2003 Citrus Project, |
| 4706 | All rights reserved. |
| 4707 | |
| 4708 | Redistribution and use in source and binary forms, with or without |
| 4709 | modification, are permitted provided that the following conditions |
| 4710 | are met: |
| 4711 | 1. Redistributions of source code must retain the above copyright |
| 4712 | notice, this list of conditions and the following disclaimer. |
| 4713 | 2. Redistributions in binary form must reproduce the above copyright |
| 4714 | notice, this list of conditions and the following disclaimer in the |
| 4715 | documentation and/or other materials provided with the distribution. |
| 4716 | |
| 4717 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 4718 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4719 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4720 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 4721 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4722 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4723 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4724 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4725 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4726 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4727 | SUCH DAMAGE. |
| 4728 | |
| 4729 | ------------------------------------------------------------------- |
| 4730 | |
Elliott Hughes | 5c2264a | 2014-09-13 09:42:41 -0700 | [diff] [blame] | 4731 | Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
| 4732 | Copyright 2008 Damien Miller <djm@openbsd.org> |
| 4733 | All rights reserved. |
| 4734 | |
| 4735 | Theo de Raadt <deraadt@openbsd.org> came up with the idea of using |
| 4736 | such a mathematical system to generate more random (yet non-repeating) |
| 4737 | ids to solve the resolver/named problem. But Niels designed the |
| 4738 | actual system based on the constraints. |
| 4739 | |
| 4740 | Later modified by Damien Miller to wrap the LCG output in a 15-bit |
| 4741 | permutation generator based on a Luby-Rackoff block cipher. This |
| 4742 | ensures the output is non-repeating and preserves the MSB twiddle |
| 4743 | trick, but makes it more resistant to LCG prediction. |
| 4744 | |
| 4745 | Redistribution and use in source and binary forms, with or without |
| 4746 | modification, are permitted provided that the following conditions |
| 4747 | are met: |
| 4748 | 1. Redistributions of source code must retain the above copyright |
| 4749 | notice, this list of conditions and the following disclaimer. |
| 4750 | 2. Redistributions in binary form must reproduce the above copyright |
| 4751 | notice, this list of conditions and the following disclaimer in the |
| 4752 | documentation and/or other materials provided with the distribution. |
| 4753 | |
| 4754 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 4755 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 4756 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 4757 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 4758 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 4759 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 4760 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 4761 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 4762 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 4763 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 4764 | |
| 4765 | ------------------------------------------------------------------- |
| 4766 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4767 | Copyright 2008 Android Open Source Project (source port randomization) |
| 4768 | Copyright (c) 1985, 1989, 1993 |
| 4769 | The Regents of the University of California. All rights reserved. |
| 4770 | |
| 4771 | Redistribution and use in source and binary forms, with or without |
| 4772 | modification, are permitted provided that the following conditions |
| 4773 | are met: |
| 4774 | 1. Redistributions of source code must retain the above copyright |
| 4775 | notice, this list of conditions and the following disclaimer. |
| 4776 | 2. Redistributions in binary form must reproduce the above copyright |
| 4777 | notice, this list of conditions and the following disclaimer in the |
| 4778 | documentation and/or other materials provided with the distribution. |
| 4779 | 3. All advertising materials mentioning features or use of this software |
| 4780 | must display the following acknowledgement: |
| 4781 | This product includes software developed by the University of |
| 4782 | California, Berkeley and its contributors. |
| 4783 | 4. Neither the name of the University nor the names of its contributors |
| 4784 | may be used to endorse or promote products derived from this software |
| 4785 | without specific prior written permission. |
| 4786 | |
| 4787 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 4788 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 4789 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 4790 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 4791 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 4792 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 4793 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 4794 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4795 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4796 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4797 | SUCH DAMAGE. |
| 4798 | |
| 4799 | ------------------------------------------------------------------- |
| 4800 | |
Calin Juravle | c4fbf92 | 2014-03-10 11:23:52 +0000 | [diff] [blame] | 4801 | Portions Copyright (C) 2004, 2005, 2008, 2009 Internet Systems Consortium, Inc. ("ISC") |
| 4802 | Portions Copyright (C) 1996-2003 Internet Software Consortium. |
| 4803 | |
| 4804 | Permission to use, copy, modify, and/or distribute this software for any |
| 4805 | purpose with or without fee is hereby granted, provided that the above |
| 4806 | copyright notice and this permission notice appear in all copies. |
| 4807 | |
| 4808 | THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH |
| 4809 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 4810 | AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, |
| 4811 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM |
| 4812 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE |
| 4813 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 4814 | PERFORMANCE OF THIS SOFTWARE. |
| 4815 | |
| 4816 | ------------------------------------------------------------------- |
| 4817 | |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4818 | Portions Copyright (c) 1993 by Digital Equipment Corporation. |
| 4819 | |
| 4820 | Permission to use, copy, modify, and distribute this software for any |
| 4821 | purpose with or without fee is hereby granted, provided that the above |
| 4822 | copyright notice and this permission notice appear in all copies, and that |
| 4823 | the name of Digital Equipment Corporation not be used in advertising or |
| 4824 | publicity pertaining to distribution of the document or software without |
| 4825 | specific, written prior permission. |
| 4826 | |
| 4827 | THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL |
| 4828 | WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES |
| 4829 | OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT |
| 4830 | CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 4831 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 4832 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 4833 | ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS |
| 4834 | SOFTWARE. |
| 4835 | |
| 4836 | ------------------------------------------------------------------- |
| 4837 | |
| 4838 | Portions Copyright (c) 1995 by International Business Machines, Inc. |
| 4839 | |
| 4840 | International Business Machines, Inc. (hereinafter called IBM) grants |
| 4841 | permission under its copyrights to use, copy, modify, and distribute this |
| 4842 | Software with or without fee, provided that the above copyright notice and |
| 4843 | all paragraphs of this notice appear in all copies, and that the name of IBM |
| 4844 | not be used in connection with the marketing of any product incorporating |
| 4845 | the Software or modifications thereof, without specific, written prior |
| 4846 | permission. |
| 4847 | |
| 4848 | To the extent it has a right to do so, IBM grants an immunity from suit |
| 4849 | under its patents, if any, for the use, sale or manufacture of products to |
| 4850 | the extent that such products are used for performing Domain Name System |
| 4851 | dynamic updates in TCP/IP networks by means of the Software. No immunity is |
| 4852 | granted for any product per se or for any other function of any product. |
| 4853 | |
| 4854 | THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, |
| 4855 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
| 4856 | PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, |
| 4857 | DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING |
| 4858 | OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN |
| 4859 | IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| 4860 | |
| 4861 | ------------------------------------------------------------------- |
| 4862 | |
| 4863 | Portions Copyright(C) 1995, Jason Downs. All rights reserved. |
| 4864 | |
| 4865 | Redistribution and use in source and binary forms, with or without |
| 4866 | modification, are permitted provided that the following conditions |
| 4867 | are met: |
| 4868 | 1. Redistributions of source code must retain the above copyright |
| 4869 | notice, this list of conditions and the following disclaimer. |
| 4870 | 2. Redistributions in binary form must reproduce the above copyright |
| 4871 | notice, this list of conditions and the following disclaimer in the |
| 4872 | documentation and/or other materials provided with the distribution. |
| 4873 | |
| 4874 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS |
| 4875 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 4876 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 4877 | DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, |
| 4878 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 4879 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 4880 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 4881 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 4882 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 4883 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 4884 | SUCH DAMAGE. |
| 4885 | |
| 4886 | ------------------------------------------------------------------- |
| 4887 | |
| 4888 | The author of this software is David M. Gay. |
| 4889 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4890 | Copyright (C) 1998 by Lucent Technologies |
| 4891 | All Rights Reserved |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4892 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4893 | Permission to use, copy, modify, and distribute this software and |
| 4894 | its documentation for any purpose and without fee is hereby |
| 4895 | granted, provided that the above copyright notice appear in all |
| 4896 | copies and that both that the copyright notice and this |
| 4897 | permission notice and warranty disclaimer appear in supporting |
| 4898 | documentation, and that the name of Lucent or any of its entities |
| 4899 | not be used in advertising or publicity pertaining to |
| 4900 | distribution of the software without specific, written prior |
| 4901 | permission. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 4902 | |
Elliott Hughes | acbe322 | 2014-04-16 17:01:12 -0700 | [diff] [blame] | 4903 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 4904 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 4905 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 4906 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4907 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 4908 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 4909 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 4910 | THIS SOFTWARE. |
| 4911 | |
| 4912 | ------------------------------------------------------------------- |
| 4913 | |
| 4914 | The author of this software is David M. Gay. |
| 4915 | |
| 4916 | Copyright (C) 1998, 1999 by Lucent Technologies |
| 4917 | All Rights Reserved |
| 4918 | |
| 4919 | Permission to use, copy, modify, and distribute this software and |
| 4920 | its documentation for any purpose and without fee is hereby |
| 4921 | granted, provided that the above copyright notice appear in all |
| 4922 | copies and that both that the copyright notice and this |
| 4923 | permission notice and warranty disclaimer appear in supporting |
| 4924 | documentation, and that the name of Lucent or any of its entities |
| 4925 | not be used in advertising or publicity pertaining to |
| 4926 | distribution of the software without specific, written prior |
| 4927 | permission. |
| 4928 | |
| 4929 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 4930 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 4931 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 4932 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4933 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 4934 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 4935 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 4936 | THIS SOFTWARE. |
| 4937 | |
| 4938 | ------------------------------------------------------------------- |
| 4939 | |
| 4940 | The author of this software is David M. Gay. |
| 4941 | |
| 4942 | Copyright (C) 1998, 2000 by Lucent Technologies |
| 4943 | All Rights Reserved |
| 4944 | |
| 4945 | Permission to use, copy, modify, and distribute this software and |
| 4946 | its documentation for any purpose and without fee is hereby |
| 4947 | granted, provided that the above copyright notice appear in all |
| 4948 | copies and that both that the copyright notice and this |
| 4949 | permission notice and warranty disclaimer appear in supporting |
| 4950 | documentation, and that the name of Lucent or any of its entities |
| 4951 | not be used in advertising or publicity pertaining to |
| 4952 | distribution of the software without specific, written prior |
| 4953 | permission. |
| 4954 | |
| 4955 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 4956 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 4957 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 4958 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4959 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 4960 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 4961 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 4962 | THIS SOFTWARE. |
| 4963 | |
| 4964 | ------------------------------------------------------------------- |
| 4965 | |
| 4966 | The author of this software is David M. Gay. |
| 4967 | |
| 4968 | Copyright (C) 1998-2000 by Lucent Technologies |
| 4969 | All Rights Reserved |
| 4970 | |
| 4971 | Permission to use, copy, modify, and distribute this software and |
| 4972 | its documentation for any purpose and without fee is hereby |
| 4973 | granted, provided that the above copyright notice appear in all |
| 4974 | copies and that both that the copyright notice and this |
| 4975 | permission notice and warranty disclaimer appear in supporting |
| 4976 | documentation, and that the name of Lucent or any of its entities |
| 4977 | not be used in advertising or publicity pertaining to |
| 4978 | distribution of the software without specific, written prior |
| 4979 | permission. |
| 4980 | |
| 4981 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 4982 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 4983 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 4984 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 4985 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 4986 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 4987 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 4988 | THIS SOFTWARE. |
| 4989 | |
| 4990 | ------------------------------------------------------------------- |
| 4991 | |
| 4992 | The author of this software is David M. Gay. |
| 4993 | |
| 4994 | Copyright (C) 1998-2001 by Lucent Technologies |
| 4995 | All Rights Reserved |
| 4996 | |
| 4997 | Permission to use, copy, modify, and distribute this software and |
| 4998 | its documentation for any purpose and without fee is hereby |
| 4999 | granted, provided that the above copyright notice appear in all |
| 5000 | copies and that both that the copyright notice and this |
| 5001 | permission notice and warranty disclaimer appear in supporting |
| 5002 | documentation, and that the name of Lucent or any of its entities |
| 5003 | not be used in advertising or publicity pertaining to |
| 5004 | distribution of the software without specific, written prior |
| 5005 | permission. |
| 5006 | |
| 5007 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5008 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5009 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5010 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5011 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5012 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5013 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5014 | THIS SOFTWARE. |
| 5015 | |
| 5016 | ------------------------------------------------------------------- |
| 5017 | |
| 5018 | The author of this software is David M. Gay. |
| 5019 | |
| 5020 | Copyright (C) 2000 by Lucent Technologies |
| 5021 | All Rights Reserved |
| 5022 | |
| 5023 | Permission to use, copy, modify, and distribute this software and |
| 5024 | its documentation for any purpose and without fee is hereby |
| 5025 | granted, provided that the above copyright notice appear in all |
| 5026 | copies and that both that the copyright notice and this |
| 5027 | permission notice and warranty disclaimer appear in supporting |
| 5028 | documentation, and that the name of Lucent or any of its entities |
| 5029 | not be used in advertising or publicity pertaining to |
| 5030 | distribution of the software without specific, written prior |
| 5031 | permission. |
| 5032 | |
| 5033 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 5034 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 5035 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 5036 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 5037 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 5038 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 5039 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 5040 | THIS SOFTWARE. |
Elliott Hughes | 261e223 | 2012-08-14 15:04:05 -0700 | [diff] [blame] | 5041 | |
| 5042 | ------------------------------------------------------------------- |
| 5043 | |
Elliott Hughes | 3758a24 | 2014-07-22 21:24:47 -0700 | [diff] [blame] | 5044 | memchr - find a character in a memory zone |
| 5045 | |
| 5046 | Copyright (c) 2014, ARM Limited |
| 5047 | All rights Reserved. |
| 5048 | Copyright (c) 2014, Linaro Ltd. |
| 5049 | |
| 5050 | Redistribution and use in source and binary forms, with or without |
| 5051 | modification, are permitted provided that the following conditions are met: |
| 5052 | * Redistributions of source code must retain the above copyright |
| 5053 | notice, this list of conditions and the following disclaimer. |
| 5054 | * Redistributions in binary form must reproduce the above copyright |
| 5055 | notice, this list of conditions and the following disclaimer in the |
| 5056 | documentation and/or other materials provided with the distribution. |
| 5057 | * Neither the name of the company nor the names of its contributors |
| 5058 | may be used to endorse or promote products derived from this |
| 5059 | software without specific prior written permission. |
| 5060 | |
| 5061 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 5062 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 5063 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 5064 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 5065 | HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 5066 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 5067 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 5068 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 5069 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 5070 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 5071 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 5072 | |
| 5073 | ------------------------------------------------------------------- |
| 5074 | |