Lines Matching refs:xh
27 double xh, xl, hi; in __roundevenl() local
29 ldbl_unpack (x, &xh, &xl); in __roundevenl()
31 if (xh != 0 && isfinite (xh)) in __roundevenl()
33 hi = __roundeven (xh); in __roundevenl()
34 if (hi != xh) in __roundevenl()
40 double diff = hi - xh; in __roundevenl()
44 xh = hi - 1; in __roundevenl()
46 xh = hi + 1; in __roundevenl()
48 xh = hi; in __roundevenl()
51 xh = hi; in __roundevenl()
61 xh = hi; in __roundevenl()
62 ldbl_canonicalize_int (&xh, &xl); in __roundevenl()
67 xh += xh; in __roundevenl()
69 return ldbl_pack (xh, xl); in __roundevenl()