Searched refs:xh (Results 1 - 4 of 4) sorted by relevance

/fuchsia/zircon/third_party/ulib/musl/src/math/
H A Dhypot.c12 double_t xh, xl, xc; local
15 xh = x - xc + xc;
16 xl = x - xh;
18 *lo = xh * xh - *hi + 2 * xh * xl + xl * xl;
54 /* xh*xh must not overflow and xl*xl must not underflow in sq */
H A Dhypotl.c15 long double xh, xl, xc; local
17 xh = x - xc + xc;
18 xl = x - xh;
20 *lo = xh * xh - *hi + 2 * xh * xl + xl * xl;
/fuchsia/zircon/third_party/ulib/musl/src/math/x86_64/
H A Dexpl.S55 # xh = x - c*x + c*x
56 # xl = x - xh
67 # fpu stack: 2^hi x hi xh xl yh
68 # lo = hi - xh*yh + xl*yh
78 # fpu stack: 2^hi x lo xh xl yl
79 # lo += xh*yl + xl*yl
/fuchsia/zircon/third_party/ulib/musl/third_party/math/
H A Dfma.c18 long double cx, xh, xl, cy, yh, yl; local
21 xh = (x - cx) + cx;
22 xl = x - xh;
27 *lo = (xh * yh - *hi) + xh * yl + xl * yh + xl * yl;

Completed in 29 milliseconds