Searched defs:B3 (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)
679 ! f56 B3
693 #define B3 %f56 define
723 ldd [%o3+B3OFF],B3
850 ! OLD : p = r * ( 1 + r * ( B1 + r * ( B2 + r * B3) ) )
851 ! NEW : p = r * [ (1+r*B1) + (r*r) * ( B2 + r * B3) ) ]
855 fmuld %f0,B3,%f2 ! SR1 = r1 * B3
[all...]
/illumos-gate/usr/src/lib/libm/common/C/
H A Dlog.c123 /* B3 */ -1.89082956295731507978530316904652863740921020508e+0000,
149 #define B3 P[18] macro
203 return (tb[2] + ((B1 * s) * (B2 + s * (B3 + s))) *
216 return (dn1 + (dn + ((B1 * s) * (B2 + s * (B3 + s))) *
H A Dlog10.c113 /* B3 */ -1.89082956295731507978530316904652863740921020508e+0000,
142 #define B3 P[18] macro
200 (B2 + s * (B3 + s))) *
214 (B2 + s * (B3 + s))) *
H A Dlog2.c114 /* B3 */ -1.89082956295731507978530316904652863740921020508e+0000,
142 #define B3 P[18] macro
206 (B2 + s * (B3 + s))) *
222 (B2 + s * (B3 + s))) *
H A Dpow.c89 B3 = 4.121985488948771523290174512461778354953e-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)...))));
98 B3 = 2.857142857142857142857273426428347457918e-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)...))));
133 B3 = 2.857142857142857142857273426428347457918e-0001L, variable
155 return (x - s * (x - z * (B1 + z * (B2 + z * (B3 + z * (B4 +
H A Dpowl.c58 B3 = 2.857142857142857142857142865084581075070e-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
355 #define B3 C[7].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 62 milliseconds