Lines Matching refs:xh
33 double xh, xl, hi, lo; in __floorl() local
35 ldbl_unpack (x, &xh, &xl); in __floorl()
38 if (__builtin_expect (xh != 0.0 in __floorl()
39 && __builtin_isless (__builtin_fabs (xh), in __floorl()
42 hi = floor (xh); in __floorl()
43 if (hi != xh) in __floorl()
47 xh = hi; in __floorl()
54 xh = hi; in __floorl()
56 ldbl_canonicalize_int (&xh, &xl); in __floorl()
61 xh += xh; in __floorl()
63 return ldbl_pack (xh, xl); in __floorl()