Lines Matching refs:eps
404 static const float eps[TBLSIZE] = {
547 * y = i/TBLSIZE + z - eps[i] for integer i near y * TBLSIZE.
548 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]),
549 * with |z - eps[i]| <= 2**-8 + 2**-98 for the table used.
551 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via
553 * The values in exp2t[] and eps[] are chosen such that
554 * exp2t[i] = exp2(i/TBLSIZE + eps[i]), and eps[i] is a small offset such
611 /* Compute r = exp2(y) = exp2t[i0] * p(z - eps[i]). */
613 z -= eps[i0];