Lines Matching full:tblsize
34 #define TBLSIZE (1 << TBLBITS)
39 redux = 0x1.8p23f / TBLSIZE,
45 static const double exp2ft[TBLSIZE] = {
76 * y = i/TBLSIZE + z for integer i near y * TBLSIZE.
77 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z),
78 * with |z| <= 2**-(TBLSIZE+1).
80 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z) via a
119 i0 += TBLSIZE / 2;
121 i0 &= TBLSIZE - 1;