Lines Matching full:2
41 * e = 2 e.
43 * An expansion x + .5 x^2 + x^3 R(x) approximates exp(f) - 1
44 * in the basic range [-0.5 ln 2, 0.5 ln 2].
63 /* exp(x) - 1 = x + 0.5 x^2 + x^3 P(x)/Q(x)
64 -.5 ln 2 < x < .5 ln 2
81 /* C1 + C2 = ln 2 */
84 /* ln 2^-65 */
115 /* Express x = ln 2 (k + remainder), remainder not exceeding 1/2. */ in expm1l()
118 /* remainder times ln 2 */ in expm1l()
122 /* Approximate exp(remainder ln 2). */ in expm1l()
139 /* exp(x) = exp(k ln 2) exp(remainder ln 2) = 2^k exp(remainder ln 2). in expm1l()
140 We have qx = exp(remainder ln 2) - 1, so in expm1l()
141 exp(x) - 1 = 2^k (qx + 1) - 1 = 2^k qx + 2^k - 1. */ in expm1l()