Home
last modified time | relevance | path

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

/src/contrib/arm-optimized-routines/math/aarch64/sve/
H A Dpowf.c284 svbool_t xsmall = svaclt (yint_or_xpos, x, d->small_bound); in pow() local
285 if (unlikely (svptest_any (yint_or_xpos, xsmall))) in pow()
288 svuint32_t vix_norm = svreinterpret_u32 (svmul_x (xsmall, x, Norm)); in pow()
289 vix_norm = svand_x (xsmall, vix_norm, 0x7fffffff); in pow()
290 vix_norm = svsub_x (xsmall, vix_norm, d->subnormal_bias); in pow()
291 vix = svsel (xsmall, vix_norm, vix); in pow()
H A Dpow.c403 svbool_t xsmall = svaclt (yint_or_xpos, x, SmallBoundX); in pow() local
404 if (unlikely (svptest_any (yint_or_xpos, xsmall))) in pow()
408 svbool_t topx_is_null = svcmpeq (xsmall, vtopx, 0); in pow()
410 svuint64_t vix_norm = svreinterpret_u64 (svmul_m (xsmall, x, 0x1p52)); in pow()
411 vix_norm = svand_m (xsmall, vix_norm, 0x7fffffffffffffff); in pow()
412 vix_norm = svsub_m (xsmall, vix_norm, 52ULL << 52); in pow()