Lines Matching defs:TBLSIZE
35 #define TBLSIZE (1 << TBLBITS)
38 redux = 0x1.8p52 / TBLSIZE,
49 static const double tbl[TBLSIZE * 2] = {
321 * y = i/TBLSIZE + z - eps[i] for integer i near y * TBLSIZE.
322 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]),
325 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via
328 * exp2t[i] = exp2(i/TBLSIZE + eps[i]), and eps[i] is a small offset such
331 * Note that the range of i is +-TBLSIZE/2, so we actually index the tables
332 * by i0 = i + TBLSIZE/2. For cache efficiency, exp2t[] and eps[] are
369 i0 += TBLSIZE / 2;
371 i0 = (i0 & (TBLSIZE - 1)) << 1;