Home
last modified time | relevance | path

Searched refs:topy (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Dfinite_pow.h274 uint32_t topx, topy; in pow_scalar_special_case() local
279 topy = top12 (y); in pow_scalar_special_case()
281 || (topy & 0x7ff) - SmallPowY >= ThresPowY)) in pow_scalar_special_case()
332 if ((topy & 0x7ff) - SmallPowY >= ThresPowY) in pow_scalar_special_case()
338 if ((topy & 0x7ff) < SmallPowY) 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()
/freebsd/contrib/arm-optimized-routines/math/
H A Dpow.c278 uint32_t topx, topy; in pow() local
283 topy = top12 (y); in pow()
285 || (topy & 0x7ff) - 0x3be >= 0x43e - 0x3be)) in pow()
332 if ((topy & 0x7ff) - 0x3be >= 0x43e - 0x3be) in pow()
337 if ((topy & 0x7ff) < 0x3be) in pow()
345 return (ix > asuint64 (1.0)) == (topy < 0x800) ? __math_oflow (0) in pow()