Lines Matching defs:TBLSIZE
40 #define TBLSIZE (1 << TBLBITS)
44 redux = 0x1.8p23f / TBLSIZE,
52 static const double exp2ft[TBLSIZE] = {
83 * y = i/TBLSIZE + z for integer i near y * TBLSIZE.
84 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z),
85 * with |z| <= 2**-(TBLSIZE+1).
87 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z) via a
120 i0 += TBLSIZE / 2;
122 i0 &= TBLSIZE - 1;