Home
last modified time | relevance | path

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

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_exp2f.c38 #define TBLSIZE (1 << TBLBITS) macro
41 redux = 0x1.8p23f / TBLSIZE,
51 static const double exp2ft[TBLSIZE] = {
125 i0 += TBLSIZE / 2; in exp2f()
127 i0 &= TBLSIZE - 1; in exp2f()
Ds_exp2.c38 #define TBLSIZE (1 << TBLBITS) macro
41 redux = 0x1.8p52 / TBLSIZE,
52 static const double tbl[TBLSIZE * 2] = {
372 i0 += TBLSIZE / 2; in exp2()
374 i0 = (i0 & (TBLSIZE - 1)) << 1; in exp2()
/bionic/libm/upstream-freebsd/lib/msun/ld128/
Ds_exp2l.c39 #define TBLSIZE (1 << TBLBITS) macro
61 redux = 0x1.8p112 / TBLSIZE;
63 static const long double tbl[TBLSIZE] = {
194 static const float eps[TBLSIZE] = {
400 i0 = (u.bits.manl & 0xffffffff) + TBLSIZE / 2; in exp2l()
402 i0 = i0 & (TBLSIZE - 1); in exp2l()