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 __L_2_by_pi_bits array
27 ** Used in trigonometric argument reduction
28 */
29 
30 #include <crtdefs.h>
31 
32 const char _CRT_ALIGN(16) __L_2_by_pi_bits[] =
33 {
34     224, 241,  27, 193,  12,  88,  33, 116,
35     53, 126, 196, 126, 237, 175, 169,  75,
36     74,  41, 222, 231,  28, 244, 236, 197,
37     151, 175,  31, 235, 158, 212, 181, 168,
38     127, 121, 154, 253,  24,  61, 221,  38,
39     44, 159,  60, 251, 217, 180, 125, 180,
40     41, 104,  45,  70, 188, 188,  63,  96,
41     22, 120, 255,  95, 226, 127, 236, 160,
42     228, 247,  46, 126,  17, 114, 210, 231,
43     76,  13, 230,  88,  71, 230,   4, 249,
44     125, 209, 154, 192, 113, 166,  19,  18,
45     237, 186, 212, 215,   8, 162, 251, 156,
46     166, 196, 114, 172, 119, 248, 115,  72,
47     70,  39, 168, 187,  36,  25, 128,  75,
48     55,   9, 233, 184, 145, 220, 134,  21,
49     239, 122, 175, 142,  69, 249,   7,  65,
50     14, 241, 100,  86, 138, 109,   3, 119,
51     211, 212,  71,  95, 157, 240, 167,  84,
52     16,  57, 185,  13, 230, 139,   2,   0,
53     0,   0,   0,   0,   0,   0
54 };
55 
56