Lines Matching refs:xh
30 double xh, xl; in __lroundl() local
33 ldbl_unpack (x, &xh, &xl); in __lroundl()
41 ((__builtin_fabs (xh) <= (double) __LONG_MAX__ + 2), 1) in __lroundl()
44 ((__builtin_fabs (xh) <= -(double) (-__LONG_MAX__ - 1)), 1) in __lroundl()
52 long long llhi = (long long) xh; in __lroundl()
57 xh -= hi; in __lroundl()
59 if (__glibc_unlikely ((xh == -(double) (-__LONG_MAX__ - 1)))) in __lroundl()
69 xh = 1.0; in __lroundl()
73 hi = (long) xh; in __lroundl()
74 xh -= hi; in __lroundl()
77 ldbl_canonicalize (&xh, &xl); in __lroundl()
79 lo = (long) xh; in __lroundl()
90 xh -= lo; in __lroundl()
91 ldbl_canonicalize (&xh, &xl); in __lroundl()
94 if (xh > 0.5) in __lroundl()
98 else if (xh == 0.5) in __lroundl()
103 else if (-xh > 0.5) in __lroundl()
107 else if (-xh == 0.5) in __lroundl()
120 if (xh > 0.0) in __lroundl()
122 else if (xh < 0.0) in __lroundl()