Home
last modified time | relevance | path

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

/external/fdlibm/
Ds_expm1.c136 double y,hi,lo,c,t,e,hxs,hfx,r1; local
185 hfx = 0.5*x;
186 hxs = x*hfx;
188 t = 3.0-r1*hfx;
/external/rust/crates/libm/src/math/
Dexpm1f.rs96 let hfx = 0.5 * x; in expm1f() localVariable
97 let hxs = x * hfx; in expm1f()
99 let t = 3. - r1 * hfx; in expm1f()
Dexpm1.rs95 let hfx = 0.5 * x; in expm1() localVariable
96 let hxs = x * hfx; in expm1()
98 t = 3.0 - r1 * hfx; in expm1()