Lines Matching refs:iy
235 static inline int checkint(uint64_t iy)
237 int e = iy >> 52 & 0x7ff;
242 if (iy & ((1ULL << (0x3ff + 52 - e)) - 1))
244 if (iy & (1ULL << (0x3ff + 52 - e)))
258 uint64_t ix, iy;
262 iy = asuint64(y);
271 if (predict_false(zeroinfnan(iy))) {
272 if (2 * iy == 0)
277 2 * iy > 2 * asuint64(INFINITY))
281 if ((2 * ix < 2 * asuint64(1.0)) == !(iy >> 63))
287 if (ix >> 63 && checkint(iy) == 1)
291 return iy >> 63 ? fp_barrier(1 / x2) : x2;
296 int yint = checkint(iy);
335 double_t yhi = asdouble(iy & -1ULL << 27);