Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.0/newlib/libm/ld/ld128/
Ds_exp2l.c32 #define TBLSIZE (1 << TBLBITS) macro
57 redux = 0x1.8p112 / TBLSIZE;
59 static const long double tbl[TBLSIZE] = {
190 static const float eps[TBLSIZE] = {
396 i0 = (u.bits.manl & 0xffffffff) + TBLSIZE / 2; in exp2l()
398 i0 = i0 & (TBLSIZE - 1); in exp2l()
/picolibc-3.7.0-3.6.0/newlib/libm/ld/ld80/
Ds_exp2l.c31 #define TBLSIZE (1 << TBLBITS) macro
44 redux = 0x1.8p63 / TBLSIZE,
52 static const double tbl[TBLSIZE * 2] = {
246 i0 = u.bits.manl + TBLSIZE / 2; in exp2l()
248 i0 = (i0 & (TBLSIZE - 1)) << 1; in exp2l()