Lines Matching refs:i0
332 * by i0 = i + TBLSIZE/2. For cache efficiency, exp2t[] and eps[] are
344 uint32_t hx, ix, lx, i0;
366 /* Reduce x, computing z, i0, and k. */
368 GET_LOW_WORD(i0, t);
369 i0 += TBLSIZE / 2;
370 k = (i0 >> TBLBITS) << 20;
371 i0 = (i0 & (TBLSIZE - 1)) << 1;
375 /* Compute r = exp2(y) = exp2t[i0] * p(z - eps[i]). */
376 t = tbl[i0]; /* exp2t[i0] */
377 z -= tbl[i0 + 1]; /* eps[i0] */