Lines Matching refs:hi
31 long res, hi, lo; in __lroundl() local
54 hi = llhi < 0 ? -__LONG_MAX__ - 1 : __LONG_MAX__; in __lroundl()
56 hi = llhi; in __lroundl()
57 xh -= hi; in __lroundl()
68 hi = __LONG_MAX__; in __lroundl()
73 hi = (long) xh; in __lroundl()
74 xh -= hi; in __lroundl()
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()
113 if (__glibc_unlikely (((~(hi ^ (res - hi)) & (res ^ hi)) < 0))) in __lroundl()
121 hi = __LONG_MAX__; in __lroundl()
123 hi = -__LONG_MAX__ - 1; in __lroundl()
126 hi = 0; in __lroundl()
133 return hi; in __lroundl()