Home
last modified time | relevance | path

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

/openbsd/src/lib/libm/src/
Ds_exp2f.c34 #define TBLSIZE (1 << TBLBITS) macro
38 redux = 0x1.8p23f / TBLSIZE,
46 static const double exp2ft[TBLSIZE] = {
120 i0 += TBLSIZE / 2; in exp2f()
122 i0 &= TBLSIZE - 1; in exp2f()
Ds_exp2.c34 #define TBLSIZE (1 << TBLBITS) macro
38 redux = 0x1.8p52 / TBLSIZE,
47 static const double tbl[TBLSIZE * 2] = {
367 i0 += TBLSIZE / 2; in exp2()
369 i0 = (i0 & (TBLSIZE - 1)) << 1; in exp2()
/openbsd/src/lib/libm/src/ld128/
Ds_exp2l.c35 #define TBLSIZE (1 << TBLBITS) macro
60 redux = 0x1.8p112 / TBLSIZE;
62 static const long double tbl[TBLSIZE] = {
193 static const float eps[TBLSIZE] = {
405 | u.bits.ext_fracl) & 0xffffffff) + TBLSIZE / 2; in exp2l()
407 i0 = i0 & (TBLSIZE - 1); in exp2l()
/openbsd/src/lib/libm/src/ld80/
Ds_exp2l.c35 #define TBLSIZE (1 << TBLBITS) macro
48 redux = 0x1.8p63 / TBLSIZE,
56 static const double tbl[TBLSIZE * 2] = {
254 i0 = u.bits.ext_fracl + TBLSIZE / 2; in exp2l()
256 i0 = (i0 & (TBLSIZE - 1)) << 1; in exp2l()