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