Searched refs:TBLBITS (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/lib/msun/src/
H A Ds_exp2f.c35 #define TBLBITS 4 macro
36 #define TBLSIZE (1 << TBLBITS)
124 k = (i0 >> TBLBITS) << 20;
H A Ds_exp2.c35 #define TBLBITS 8 macro
36 #define TBLSIZE (1 << TBLBITS)
371 k = (i0 >> TBLBITS) << 20;
/freebsd-11-stable/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;
/freebsd-11-stable/lib/msun/ld80/
H A Ds_exp2l.c41 #define TBLBITS 7 macro
42 #define TBLSIZE (1 << TBLBITS)
210 * with |z| <= 2**-(TBLBITS+1).
248 * TBLBITS fractional bits (i0). We use bit tricks to extract these
251 * Example: Suppose x is 0xabc.123456p0 and TBLBITS is 8.
261 k = (int)i0 >> TBLBITS;

Completed in 201 milliseconds