1 /* 2 * MIT License 3 * ----------- 4 * 5 * Copyright (c) 2002-2019 Advanced Micro Devices, Inc. 6 * 7 * Permission is hereby granted, free of charge, to any person obtaining a copy 8 * of this Software and associated documentaon files (the "Software"), to deal 9 * in the Software without restriction, including without limitation the rights 10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 * copies of the Software, and to permit persons to whom the Software is 12 * furnished to do so, subject to the following conditions: 13 * 14 * The above copyright notice and this permission notice shall be included in 15 * all copies or substantial portions of the Software. 16 * 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 23 * THE SOFTWARE. 24 * 25 ** 26 ** Defines __two_to_jby64_table table 27 ** Used by exp and expf 28 ** 29 */ 30 31 #include <crtdefs.h> 32 33 const unsigned long long _CRT_ALIGN(16) __two_to_jby64_table[] = 34 { 35 0x3ff0000000000000ull, 36 0x3ff02c9a3e778061ull, 37 0x3ff059b0d3158574ull, 38 0x3ff0874518759bc8ull, 39 0x3ff0b5586cf9890full, 40 0x3ff0e3ec32d3d1a2ull, 41 0x3ff11301d0125b51ull, 42 0x3ff1429aaea92de0ull, 43 0x3ff172b83c7d517bull, 44 0x3ff1a35beb6fcb75ull, 45 0x3ff1d4873168b9aaull, 46 0x3ff2063b88628cd6ull, 47 0x3ff2387a6e756238ull, 48 0x3ff26b4565e27cddull, 49 0x3ff29e9df51fdee1ull, 50 0x3ff2d285a6e4030bull, 51 0x3ff306fe0a31b715ull, 52 0x3ff33c08b26416ffull, 53 0x3ff371a7373aa9cbull, 54 0x3ff3a7db34e59ff7ull, 55 0x3ff3dea64c123422ull, 56 0x3ff4160a21f72e2aull, 57 0x3ff44e086061892dull, 58 0x3ff486a2b5c13cd0ull, 59 0x3ff4bfdad5362a27ull, 60 0x3ff4f9b2769d2ca7ull, 61 0x3ff5342b569d4f82ull, 62 0x3ff56f4736b527daull, 63 0x3ff5ab07dd485429ull, 64 0x3ff5e76f15ad2148ull, 65 0x3ff6247eb03a5585ull, 66 0x3ff6623882552225ull, 67 0x3ff6a09e667f3bcdull, 68 0x3ff6dfb23c651a2full, 69 0x3ff71f75e8ec5f74ull, 70 0x3ff75feb564267c9ull, 71 0x3ff7a11473eb0187ull, 72 0x3ff7e2f336cf4e62ull, 73 0x3ff82589994cce13ull, 74 0x3ff868d99b4492edull, 75 0x3ff8ace5422aa0dbull, 76 0x3ff8f1ae99157736ull, 77 0x3ff93737b0cdc5e5ull, 78 0x3ff97d829fde4e50ull, 79 0x3ff9c49182a3f090ull, 80 0x3ffa0c667b5de565ull, 81 0x3ffa5503b23e255dull, 82 0x3ffa9e6b5579fdbfull, 83 0x3ffae89f995ad3adull, 84 0x3ffb33a2b84f15fbull, 85 0x3ffb7f76f2fb5e47ull, 86 0x3ffbcc1e904bc1d2ull, 87 0x3ffc199bdd85529cull, 88 0x3ffc67f12e57d14bull, 89 0x3ffcb720dcef9069ull, 90 0x3ffd072d4a07897cull, 91 0x3ffd5818dcfba487ull, 92 0x3ffda9e603db3285ull, 93 0x3ffdfc97337b9b5full, 94 0x3ffe502ee78b3ff6ull, 95 0x3ffea4afa2a490daull, 96 0x3ffefa1bee615a27ull, 97 0x3fff50765b6e4540ull, 98 0x3fffa7c1819e90d8ull, 99 }; 100