Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libm/ld/ld128/
Ds_exp2l.c31 #define TBLSIZE (1 << TBLBITS) macro
56 redux = 0x1.8p112 / TBLSIZE;
58 static const long double tbl[TBLSIZE] = {
189 static const float eps[TBLSIZE] = {
395 i0 = (u.bits.manl & 0xffffffff) + TBLSIZE / 2; in exp2l()
397 i0 = i0 & (TBLSIZE - 1); in exp2l()
/picolibc-latest/newlib/libm/ld/ld80/
Ds_exp2l.c30 #define TBLSIZE (1 << TBLBITS) macro
43 redux = 0x1.8p63 / TBLSIZE,
51 static const double tbl[TBLSIZE * 2] = {
245 i0 = u.bits.manl + TBLSIZE / 2; in exp2l()
247 i0 = (i0 & (TBLSIZE - 1)) << 1; in exp2l()