Searched defs:B2 (Results 1 - 9 of 9) sorted by relevance

/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vexp.S49 * 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)
678 ! f54 B2
692 #define B2 %f54 define
722 ldd [%o3+B2OFF],B2
850 ! OLD : p = r * ( 1 + r * ( B1 + r * ( B2 + r * B3) ) )
851 ! NEW : p = r * [ (1+r*B1) + (r*r) * ( B2 + r * B3) ) ]
870 faddd %f2,B2,%f2 ! SR1 += B2
[all...]
/illumos-gate/usr/src/lib/libm/common/C/
H A Dlog.c122 /* B2 */ 1.87161713283355151891381127914642725337613123482e+0000,
148 #define B2 P[17] macro
203 return (tb[2] + ((B1 * s) * (B2 + s * (B3 + s))) *
216 return (dn1 + (dn + ((B1 * s) * (B2 + s * (B3 + s))) *
H A Dlog10.c112 /* B2 */ 1.87161713283355151891381127914642725337613123482e+0000,
141 #define B2 P[17] macro
200 (B2 + s * (B3 + s))) *
214 (B2 + s * (B3 + s))) *
H A Dlog2.c113 /* B2 */ 1.87161713283355151891381127914642725337613123482e+0000,
141 #define B2 P[17] macro
206 (B2 + s * (B3 + s))) *
222 (B2 + s * (B3 + s))) *
H A Dpow.c88 B2 = 5.770780163585687000782112776448797953382e-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 Dlogl.c41 * return f-s*(f-z*(B1+z*(B2+z*(B3+z*(B4+...+z*B9)...))));
97 B2 = 3.999999999999999999999999990037655042358e-0001L, variable
133 return (f - s * (f - z * (B1 + z * (B2 + z * (B3 +
H A Dlog1pl.c50 * return x-s*(x-z*(B1+z*(B2+z*(B3+z*(B4+...+z*B9)...))));
132 B2 = 3.999999999999999999999999990037655042358e-0001L, variable
155 return (x - s * (x - z * (B1 + z * (B2 + z * (B3 + z * (B4 +
H A Dpowl.c57 B2 = 3.999999999999999999999999999999848524411e-0001L, variable
88 s * (v * (B1 + v * (B2 + v * (B3 + v * (B4 +
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vexp.c37 * where p(r) := r*(1+r*(B1+r*(B2+r*B3))). From a table, obtain
354 #define B2 C[6].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 92 milliseconds