Lines Matching refs:hi
31 long long res, hi, lo; in __llroundl() local
54 hi = __LONG_LONG_MAX__; in __llroundl()
59 hi = (long long) xh; in __llroundl()
60 xh -= hi; in __llroundl()
69 res = hi + lo; in __llroundl()
72 if (__glibc_unlikely (((~(hi ^ lo) & (res ^ hi)) < 0))) in __llroundl()
78 hi = res; in __llroundl()
98 if (__glibc_unlikely (((~(hi ^ (res - hi)) & (res ^ hi)) < 0))) in __llroundl()
106 hi = __LONG_LONG_MAX__; in __llroundl()
108 hi = -__LONG_LONG_MAX__ - 1; in __llroundl()
111 hi = 0; in __llroundl()
118 return hi; in __llroundl()