Searched defs:TBLBITS (Results 1 - 3 of 3) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_exp2.c35 #define TBLBITS 8 macro
36 #define TBLSIZE (1 << TBLBITS)
371 k = (i0 >> TBLBITS) << 20;
H A Ds_exp2f.c35 #define TBLBITS 4 macro
36 #define TBLSIZE (1 << TBLBITS)
124 k = (i0 >> TBLBITS) << 20;
/bionic/libm/upstream-freebsd/lib/msun/ld128/
H A Ds_exp2l.c36 #define TBLBITS 7 macro
37 #define TBLSIZE (1 << TBLBITS)
386 * TBLBITS fractional bits (i0). We use bit tricks to extract these
389 * Example: Suppose x is 0xabc.123456p0 and TBLBITS is 8.
399 k = (int)i0 >> TBLBITS;

Completed in 73 milliseconds