Home
last modified time | relevance | path

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

/bionic/libm/src/
Ds_exp2f.c34 #define TBLSIZE (1 << TBLBITS) macro
39 redux = 0x1.8p23f / TBLSIZE,
45 static const double exp2ft[TBLSIZE] = {
119 i0 += TBLSIZE / 2; in exp2f()
121 i0 &= TBLSIZE - 1; in exp2f()
Ds_exp2.c34 #define TBLSIZE (1 << TBLBITS) macro
39 redux = 0x1.8p52 / TBLSIZE,
46 static const double tbl[TBLSIZE * 2] = {
366 i0 += TBLSIZE / 2; in exp2()
368 i0 = (i0 & (TBLSIZE - 1)) << 1; in exp2()