Home | History | Annotate | Download | only in math

Lines Matching refs:asuint64

29   return asuint64 (x) >> 52;
192 if (asuint64 (x) >> 63)
210 ki = asuint64 (kd) >> 16;
215 ki = asuint64 (kd);
268 return 2 * i - 1 >= 2 * asuint64 (INFINITY) - 1;
278 ix = asuint64 (x);
279 iy = asuint64 (y);
293 if (ix == asuint64 (1.0))
295 if (2 * ix > 2 * asuint64 (INFINITY)
296 || 2 * iy > 2 * asuint64 (INFINITY))
298 if (2 * ix == 2 * asuint64 (1.0))
300 if ((2 * ix < 2 * asuint64 (1.0)) == !(iy >> 63))
333 if (ix == asuint64 (1.0))
339 return ix > asuint64 (1.0) ? 1.0 + y : 1.0 - y;
343 return (ix > asuint64 (1.0)) == (topy < 0x800) ? __math_oflow (0)
349 ix = asuint64 (x * 0x1p52);
364 double_t lhi = asdouble (asuint64 (hi) & -1ULL << 27);