Lines Matching refs:xh
30 double xh, xl; in __llroundl() local
33 ldbl_unpack (x, &xh, &xl); in __llroundl()
39 ((__builtin_fabs (xh) <= -(double) (-__LONG_LONG_MAX__ - 1)), 1) in __llroundl()
45 if (__glibc_unlikely ((xh == -(double) (-__LONG_LONG_MAX__ - 1)))) in __llroundl()
55 xh = 1.0; in __llroundl()
59 hi = (long long) xh; in __llroundl()
60 xh -= hi; in __llroundl()
62 ldbl_canonicalize (&xh, &xl); in __llroundl()
64 lo = (long long) xh; in __llroundl()
75 xh -= lo; in __llroundl()
76 ldbl_canonicalize (&xh, &xl); in __llroundl()
79 if (xh > 0.5) in __llroundl()
83 else if (xh == 0.5) in __llroundl()
88 else if (-xh > 0.5) in __llroundl()
92 else if (-xh == 0.5) in __llroundl()
105 if (xh > 0.0) in __llroundl()
107 else if (xh < 0.0) in __llroundl()