Home
last modified time | relevance | path

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

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_exp2f.c36 #define TBLSIZE (1 << TBLBITS) macro
40 redux = 0x1.8p23f / TBLSIZE,
48 static const double exp2ft[TBLSIZE] = {
122 i0 += TBLSIZE / 2; in exp2f()
124 i0 &= TBLSIZE - 1; in exp2f()
Ds_exp2.c36 #define TBLSIZE (1 << TBLBITS) macro
40 redux = 0x1.8p52 / TBLSIZE,
49 static const double tbl[TBLSIZE * 2] = {
369 i0 += TBLSIZE / 2; in exp2()
371 i0 = (i0 & (TBLSIZE - 1)) << 1; in exp2()