/* * IBM Accurate Mathematical Library * Copyright (C) 2001-2022 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, see <https://www.gnu.org/licenses/>. */ /************************************************************************/ /* MODULE_NAME: branred.h */ /* */ /* */ /* common data and variables definition for BIG or LITTLE ENDIAN */ /************************************************************************/ #ifndef BRANRED_H #define BRANRED_H #include "dla.h" #ifdef BIG_ENDI static const mynumber /**/ t576 = {{0x63f00000, 0x00000000}}, /* 2 ^ 576 */ /**/ tm600 = {{0x1a700000, 0x00000000}}, /* 2 ^- 600 */ /**/ tm24 = {{0x3e700000, 0x00000000}}, /* 2 ^- 24 */ /**/ big = {{0x43380000, 0x00000000}}, /* 6755399441055744 */ /**/ big1 = {{0x43580000, 0x00000000}}, /* 27021597764222976 */ /**/ hp0 = {{0x3FF921FB, 0x54442D18}} ,/* 1.5707963267948966 */ /**/ hp1 = {{0x3C91A626, 0x33145C07}} ,/* 6.123233995736766e-17 */ /**/ mp1 = {{0x3FF921FB, 0x58000000}}, /* 1.5707963407039642 */ /**/ mp2 = {{0xBE4DDE97, 0x40000000}}; /*-1.3909067675399456e-08 */ #else #ifdef LITTLE_ENDI static const mynumber /**/ t576 = …, /* 2 ^ 576 */ /**/ tm600 = …, /* 2 ^- 600 */ /**/ tm24 = …, /* 2 ^- 24 */ /**/ big = …, /* 6755399441055744 */ /**/ big1 = …, /* 27021597764222976 */ /**/ hp0 = …, /* 1.5707963267948966 */ /**/ hp1 = …, /* 6.123233995736766e-17 */ /**/ mp1 = …, /* 1.5707963407039642 */ /**/ mp2 = …; /*-1.3909067675399456e-08 */ #endif #endif static const double toverp[75] = …; static const double split = …; /* 2^27 + 1 */ #endif