Lines Matching refs:asuint64
41 return asuint64 (x) >> 52; in top12()
162 return asuint64 (x) >> 63 ? __math_uflow (sign_bias) in exp_inline()
165 double res_uoflow = asuint64 (x) >> 63 ? 0.0 : INFINITY; in exp_inline()
213 return asuint64 (x) >> 63 ? __math_uflow (0) : __math_oflow (0); in exp_nosignbias()
215 return asuint64 (x) >> 63 ? 0.0 : INFINITY; in exp_nosignbias()
266 return 2 * i - 1 >= 2 * asuint64 (INFINITY) - 1; in zeroinfnan()
276 ix = asuint64 (x); in pow_scalar_special_case()
277 iy = asuint64 (y); in pow_scalar_special_case()
291 if (ix == asuint64 (1.0)) in pow_scalar_special_case()
293 if (2 * ix > 2 * asuint64 (INFINITY) in pow_scalar_special_case()
294 || 2 * iy > 2 * asuint64 (INFINITY)) in pow_scalar_special_case()
296 if (2 * ix == 2 * asuint64 (1.0)) in pow_scalar_special_case()
298 if ((2 * ix < 2 * asuint64 (1.0)) == !(iy >> 63)) in pow_scalar_special_case()
335 if (ix == asuint64 (1.0)) in pow_scalar_special_case()
341 return (ix > asuint64 (1.0)) == (topy < 0x800) ? __math_oflow (0) in pow_scalar_special_case()
344 return (ix > asuint64 (1.0)) == (topy < 0x800) ? INFINITY : 0; in pow_scalar_special_case()
350 ix = asuint64 (x * 0x1p52); in pow_scalar_special_case()