Lines Matching refs:res
31 long long res, hi, lo; in __llroundl() local
69 res = hi + lo; in __llroundl()
72 if (__glibc_unlikely (((~(hi ^ lo) & (res ^ hi)) < 0))) in __llroundl()
78 hi = res; in __llroundl()
81 res += 1; in __llroundl()
85 if (xl > 0.0 || (xl == 0.0 && res >= 0)) in __llroundl()
86 res += 1; in __llroundl()
90 res -= 1; in __llroundl()
94 if (xl < 0.0 || (xl == 0.0 && res <= 0)) in __llroundl()
95 res -= 1; in __llroundl()
98 if (__glibc_unlikely (((~(hi ^ (res - hi)) & (res ^ hi)) < 0))) in __llroundl()
101 return res; in __llroundl()