Lines Matching refs:res
31 long res, hi, lo; in __lroundl() local
84 res = (long int) ((unsigned long int) hi + (unsigned long int) lo); in __lroundl()
87 if (__glibc_unlikely (((~(hi ^ lo) & (res ^ hi)) < 0))) in __lroundl()
93 hi = res; in __lroundl()
96 res += 1UL; in __lroundl()
100 if (xl > 0.0 || (xl == 0.0 && res >= 0)) in __lroundl()
101 res += 1UL; in __lroundl()
105 res -= 1UL; in __lroundl()
109 if (xl < 0.0 || (xl == 0.0 && res <= 0)) in __lroundl()
110 res -= 1UL; in __lroundl()
113 if (__glibc_unlikely (((~(hi ^ (res - hi)) & (res ^ hi)) < 0))) in __lroundl()
116 return res; in __lroundl()