Home
last modified time | relevance | path

Searched refs:hxs (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libm/common/C/
H A Dexpm1.c163 double y, hi, lo, c = 0.0L, t, e, hxs, hfx, r1; in expm1() local
229 hxs = x * hfx; in expm1()
230 r1 = one + hxs * (Q1 + hxs * (Q2 + hxs * (Q3 + hxs * (Q4 + hxs * Q5)))); in expm1()
232 e = hxs * ((r1 - t) / (6.0 - x * t)); in expm1()
234 return (x - (x * e - hxs)); in expm1()
237 e -= hxs; in expm1()