Update copyright notices with scripts/update-copyrights.
[glibc.git] / sysdeps / ieee754 / dbl-64 / usncs.h
blob92a632144a293beb5243823d16ec53a2549d090d
1 /*
2 * IBM Accurate Mathematical Library
3 * Written by International Business Machines Corp.
4 * Copyright (C) 2001-2013 Free Software Foundation, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 /************************************************************************/
21 /* MODULE_NAME: dosincos.h */
22 /* */
23 /* */
24 /* common data and variables definition for BIG or LITTLE ENDIAN */
25 /************************************************************************/
27 #ifndef USNCS_H
28 #define USNCS_H
30 #ifdef BIG_ENDI
31 static const mynumber
33 /**/ NAN = {{0x7ff80000, 0x00000000 }}, /* NaN */
34 /**/ s1 = {{0xBFC55555, 0x55555555 }}, /* -0.16666666666666666 */
35 /**/ s2 = {{0x3F811111, 0x11110ECE }}, /* 0.0083333333333323288 */
36 /**/ s3 = {{0xBF2A01A0, 0x19DB08B8 }}, /* -0.00019841269834414642 */
37 /**/ s4 = {{0x3EC71DE2, 0x7B9A7ED9 }}, /* 2.755729806860771e-06 */
38 /**/ s5 = {{0xBE5ADDFF, 0xC2FCDF59 }}, /* -2.5022014848318398e-08 */
39 /**/ aa = {{0xBFC55580, 0x00000000 }}, /* -0.1666717529296875 */
40 /**/ bb = {{0x3ED55555, 0x55556E24 }}, /* 5.0862630208387126e-06 */
41 /**/ big = {{0x42c80000, 0x00000000 }}, /* 52776558133248 */
42 /**/ hp0 = {{0x3FF921FB, 0x54442D18 }}, /* 1.5707963267948966 */
43 /**/ hp1 = {{0x3C91A626, 0x33145C07 }}, /* 6.123233995736766e-17 */
44 /**/ mp1 = {{0x3FF921FB, 0x58000000 }}, /* 1.5707963407039642 */
45 /**/ mp2 = {{0xBE4DDE97, 0x3C000000 }}, /* -1.3909067564377153e-08 */
46 /**/ mp3 = {{0xBC8CB3B3, 0x99D747F2 }}, /* -4.9789962505147994e-17 */
47 /**/ pp3 = {{0xBC8CB3B3, 0x98000000 }}, /* -4.9789962314799099e-17 */
48 /**/ pp4 = {{0xbacd747f, 0x23e32ed7 }}, /* -1.9034889620193266e-25 */
49 /**/ hpinv = {{0x3FE45F30, 0x6DC9C883 }}, /* 0.63661977236758138 */
50 /**/ toint = {{0x43380000, 0x00000000 }}; /* 6755399441055744 */
52 #else
53 #ifdef LITTLE_ENDI
54 static const mynumber
56 /**/ NAN = {{0x00000000, 0x7ff80000 }},/* NaN */
57 /**/ s1 = {{0x55555555, 0xBFC55555 }},/* -0.16666666666666666 */
58 /**/ s2 = {{0x11110ECE, 0x3F811111 }},/* 0.0083333333333323288 */
59 /**/ s3 = {{0x19DB08B8, 0xBF2A01A0 }},/* -0.00019841269834414642 */
60 /**/ s4 = {{0x7B9A7ED9, 0x3EC71DE2 }},/* 2.755729806860771e-06 */
61 /**/ s5 = {{0xC2FCDF59, 0xBE5ADDFF }},/* -2.5022014848318398e-08 */
62 /**/ aa = {{0x00000000, 0xBFC55580 }},/* -0.1666717529296875 */
63 /**/ bb = {{0x55556E24, 0x3ED55555 }},/* 5.0862630208387126e-06 */
64 /**/ big = {{0x00000000, 0x42c80000 }},/* 52776558133248 */
65 /**/ hp0 = {{0x54442D18, 0x3FF921FB }},/* 1.5707963267948966 */
66 /**/ hp1 = {{0x33145C07, 0x3C91A626 }},/* 6.123233995736766e-17 */
67 /**/ mp1 = {{0x58000000, 0x3FF921FB }},/* 1.5707963407039642 */
68 /**/ mp2 = {{0x3C000000, 0xBE4DDE97 }},/* -1.3909067564377153e-08 */
69 /**/ mp3 = {{0x99D747F2, 0xBC8CB3B3 }},/* -4.9789962505147994e-17 */
70 /**/ pp3 = {{0x98000000, 0xBC8CB3B3 }},/* -4.9789962314799099e-17 */
71 /**/ pp4 = {{0x23e32ed7, 0xbacd747f }},/* -1.9034889620193266e-25 */
72 /**/ hpinv = {{0x6DC9C883, 0x3FE45F30 }},/* 0.63661977236758138 */
73 /**/ toint = {{0x00000000, 0x43380000 }};/* 6755399441055744 */
76 #endif
77 #endif
79 #endif