Searched refs:xsmall (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/ |
H A D | powf.c | 284 svbool_t xsmall = svaclt (yint_or_xpos, x, d->small_bound); in SV_NAME_F2() local 285 if (unlikely (svptest_any (yint_or_xpos, xsmall))) in SV_NAME_F2() 288 svuint32_t vix_norm = svreinterpret_u32 (svmul_x (xsmall, x, Norm)); in SV_NAME_F2() 289 vix_norm = svand_x (xsmall, vix_norm, 0x7fffffff); in SV_NAME_F2() 290 vix_norm = svsub_x (xsmall, vix_norm, d->subnormal_bias); in SV_NAME_F2() 291 vix = svsel (xsmall, vix_norm, vix); in SV_NAME_F2()
|
H A D | pow.c | 403 svbool_t xsmall = svaclt (yint_or_xpos, x, SmallBoundX); in SV_NAME_D2() local 404 if (unlikely (svptest_any (yint_or_xpos, xsmall))) in SV_NAME_D2() 408 svbool_t topx_is_null = svcmpeq (xsmall, vtopx, 0); in SV_NAME_D2() 410 svuint64_t vix_norm = svreinterpret_u64 (svmul_m (xsmall, x, 0x1p52)); in SV_NAME_D2() 411 vix_norm = svand_m (xsmall, vix_norm, 0x7fffffffffffffff); in SV_NAME_D2() 412 vix_norm = svsub_m (xsmall, vix_norm, 52ULL << 52); in SV_NAME_D2()
|