Home
last modified time | relevance | path

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

/freebsd/contrib/arm-optimized-routines/pl/math/
H A Dfinite_pow.h274 uint32_t topx, topy; in __pl_finite_pow() local
279 topy = top12 (y); in __pl_finite_pow()
281 || (topy & 0x7ff) - SmallPowY >= ThresPowY)) in __pl_finite_pow()
334 if ((topy & 0x7ff) - SmallPowY >= ThresPowY) in __pl_finite_pow()
340 if ((topy & 0x7ff) < SmallPowY) in __pl_finite_pow()
343 return (ix > asuint64 (1.0)) == (topy < 0x800) ? __math_oflow (0) in __pl_finite_pow()
346 return (ix > asuint64 (1.0)) == (topy < 0x800) ? INFINITY : 0; in __pl_finite_pow()
/freebsd/contrib/arm-optimized-routines/math/
H A Dpow.c277 uint32_t topx, topy; in pow() local
282 topy = top12 (y); in pow()
284 || (topy & 0x7ff) - 0x3be >= 0x43e - 0x3be)) in pow()
331 if ((topy & 0x7ff) - 0x3be >= 0x43e - 0x3be) in pow()
336 if ((topy & 0x7ff) < 0x3be) in pow()
344 return (ix > asuint64 (1.0)) == (topy < 0x800) ? __math_oflow (0) in pow()