Home | History | Annotate | Download | only in src

Lines Matching defs:exp2

51 /*	exp2(z + eps)		eps	*/
311 * exp2(x): compute the base 2 exponential of x
319 * Thus we have exp2(x) = 2**k * exp2(y).
323 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]),
326 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via
329 * exp2t[i] = exp2(i/TBLSIZE + eps[i]), and eps[i] is a small offset such
342 exp2(double x)
376 /* Compute r = exp2(y) = exp2t[i0] * p(z - eps[i]). */
396 __weak_reference(exp2, exp2l);