Home
last modified time | relevance | path

Searched refs:TBLSIZE (Results 1 – 4 of 4) sorted by relevance

/freebsd/lib/msun/ld128/
H A Ds_exp2l.c36 #define TBLSIZE (1 << TBLBITS) macro
58 redux = 0x1.8p112 / TBLSIZE;
60 static const long double tbl[TBLSIZE] = {
191 static const float eps[TBLSIZE] = {
397 i0 = (u.bits.manl & 0xffffffff) + TBLSIZE / 2; in exp2l()
399 i0 = i0 & (TBLSIZE - 1); in exp2l()
/freebsd/lib/msun/src/
H A Ds_exp2f.c35 #define TBLSIZE (1 << TBLBITS) macro
38 redux = 0x1.8p23f / TBLSIZE,
48 static const double exp2ft[TBLSIZE] = {
79 * y = i/TBLSIZE + z for integer i near y * TBLSIZE.
80 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z),
81 * with |z| <= 2**-(TBLSIZE+1).
83 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z) via a
122 i0 += TBLSIZE / 2; in exp2f()
124 i0 &= TBLSIZE in exp2f()
[all...]
H A Ds_exp2.c35 #define TBLSIZE (1 << TBLBITS) macro
38 redux = 0x1.8p52 / TBLSIZE,
49 static const double tbl[TBLSIZE * 2] = {
321 * y = i/TBLSIZE + z - eps[i] for integer i near y * TBLSIZE.
322 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]),
325 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via
328 * exp2t[i] = exp2(i/TBLSIZE + eps[i]), and eps[i] is a small offset such
331 * Note that the range of i is +-TBLSIZE/2, so we actually index the tables
332 * by i0 = i + TBLSIZE/
[all...]
/freebsd/lib/msun/ld80/
H A Ds_exp2l.c41 #define TBLSIZE (1 << TBLBITS) macro
53 redux = 0x1.8p63 / TBLSIZE,
64 static const double tbl[TBLSIZE * 2] = {
259 i0 = u.bits.manl + TBLSIZE / 2; in exp2l()
261 i0 = (i0 & (TBLSIZE - 1)) << 1; in exp2l()