Searched defs:B1 (Results 1 - 9 of 9) sorted by relevance
/illumos-gate/usr/src/lib/libmvec/common/vis/ |
H A D | __vexp.S | 49 * exp(r) = 1 + r + r^2*B1 + r^3*B2 + r^4*B3 50 * = 1 + r*(1+r*(B1+r*(B2+r*B3))) 52 * p = r*(1+r*(B1+r*(B2+r*B3))) ! notice, not quite exp(r) 677 ! f52 B1 691 #define B1 %f52 define 721 ldd [%o3+B1OFF],B1 850 ! OLD : p = r * ( 1 + r * ( B1 + r * ( B2 + r * B3) ) ) 851 ! NEW : p = r * [ (1+r*B1) + (r*r) * ( B2 + r * B3) ) ] 876 fmuld %f0,B1,%f6 ! SL1 = r1 * B1 [all...] |
/illumos-gate/usr/src/lib/libm/common/C/ |
H A D | log.c | 121 /* B1 */ -1.25041641589283658575482149899471551179885864258e-0001, 147 #define B1 P[16] macro 203 return (tb[2] + ((B1 * s) * (B2 + s * (B3 + s))) * 216 return (dn1 + (dn + ((B1 * s) * (B2 + s * (B3 + s))) *
|
H A D | log10.c | 111 /* B1 */ -5.4304894950350052960838096752491540286689e-02, 140 #define B1 P[16] macro 199 return (LGH * tb[2] - (LGL * tb[2] - ((B1 * s) * 213 return (dn1 + (dn + ((B1 * s) *
|
H A D | log2.c | 112 /* B1 */ -1.8039695622547469514898963204616532885451e-01, 140 #define B1 P[16] macro 205 return (LGH * tb[2] - (LGL * tb[2] - ((B1 * s) * 221 return (dn + (tb[2] * LN10V + ((B1 * s) *
|
H A D | pow.c | 87 B1 = 9.617966939259755138949202350396200257632e-0001, variable 115 f1 = h * B0_lo + s * (v * (B1 + v * (B2 + v * (B3 + v * B4))));
|
/illumos-gate/usr/src/lib/libm/common/Q/ |
H A D | logl.c | 41 * return f-s*(f-z*(B1+z*(B2+z*(B3+z*(B4+...+z*B9)...)))); 96 B1 = 6.666666666666666666666666666666961498329e-0001L, variable 133 return (f - s * (f - z * (B1 + z * (B2 + z * (B3 +
|
H A D | log1pl.c | 50 * return x-s*(x-z*(B1+z*(B2+z*(B3+z*(B4+...+z*B9)...)))); 131 B1 = 6.666666666666666666666666666666961498329e-0001L, variable 155 return (x - s * (x - z * (B1 + z * (B2 + z * (B3 + z * (B4 +
|
H A D | powl.c | 56 B1 = 6.666666666666666666666666666666666667787e-0001L, variable 88 s * (v * (B1 + v * (B2 + v * (B3 + v * (B4 +
|
/illumos-gate/usr/src/lib/libmvec/common/ |
H A D | __vexp.c | 37 * where p(r) := r*(1+r*(B1+r*(B2+r*B3))). From a table, obtain 353 #define B1 C[5].d macro 370 y##N = x##N * (one + x##N * (B1 + x##N * (B2 + x##N * B3))); \ 494 y0 = x0 * (one + x0 * (B1 + x0 * (B2 + x0 * B3))); 495 y1 = x1 * (one + x1 * (B1 + x1 * (B2 + x1 * B3))); 496 y2 = x2 * (one + x2 * (B1 + x2 * (B2 + x2 * B3))); 497 y3 = x3 * (one + x3 * (B1 + x3 * (B2 + x3 * B3))); 498 y4 = x4 * (one + x4 * (B1 + x4 * (B2 + x4 * B3))); 499 y5 = x5 * (one + x5 * (B1 + x5 * (B2 + x5 * B3)));
|
Completed in 1153 milliseconds