Home
last modified time | relevance | path

Searched refs:Thresh (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Dsinpif.c25 # define Thresh v_u32 (0x1f000000) /* asuint32(0x1p31f) - TinyBound. */ macro
46 uint32x4_t cmp = vcgeq_u32 (vsubq_u32 (ir, TinyBound), Thresh); in V_NAME_F1()
H A Dsinpi.c30 # define Thresh v_u64 (0x07f0000000000000) macro
51 uint64x2_t cmp = vcgeq_u64 (vsubq_u64 (ir, TinyBound), Thresh); in V_NAME_D1()
H A Dacoshf.c20 #define Thresh vdup_n_u16 (0x2000) /* top(asuint(SquareLim) - asuint(1)). */ macro
43 uint16x4_t special = vcge_u16 (vsubhn_u32 (ix, d->one), Thresh); in V_NAME_F1()
H A Dsinf.c34 # define Thresh v_u32 (0x27800000) macro
55 cmp = vcgeq_u32 (vsubq_u32 (ir, TinyBound), Thresh); in V_NAME_F1()
H A Dcbrtf.c29 #define Thresh vdup_n_u16 (0x7f00) /* asuint(INFINITY) - SmallestNormal. */ macro
58 uint16x4_t special = vcge_u16 (vsubhn_u32 (iax, SmallestNormal), Thresh); in V_NAME_F1()
H A Dtan.c38 #define Thresh 0x310000000000000 /* RangeVal - TinyBound. */ macro
62 = vcgtq_u64 (vsubq_u64 (iax, v_u64 (TinyBound)), v_u64 (Thresh)); in V_NAME_D1()
H A Dsin.c34 # define Thresh v_u64 (0x1160000000000000) macro
66 cmp = vcgeq_u64 (vsubq_u64 (ir, TinyBound), Thresh); in V_NAME_D1()
H A Dtanf.c36 #define Thresh v_u32 (0x16000000) /* asuint32(RangeVal) - TinyBound. */ macro
79 uint32x4_t special = vcgeq_u32 (vsubq_u32 (iax, TinyBound), Thresh); in V_NAME_F1()
H A Dpowf.c14 #define Thresh v_u32 (0x7f000000) /* Max - Min. */ macro
152 uint32x4_t cmp = vcgeq_u32 (vsubq_u32 (u, Min), Thresh); in V_NAME_F2()
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/
H A Dcbrtf.c30 #define Thresh 0x7f000000 /* asuint(INFINITY) - SmallestNormal. */ macro
61 svbool_t special = svcmpge (pg, svsub_x (pg, iax, SmallestNormal), Thresh); in SV_NAME_F1()
H A Dlog2f.c33 #define Thresh (0x7f000000) /* asuint32(inf) - 0x00800000. */ macro
57 svbool_t special = svcmpge (pg, svsub_x (pg, u_off, d->lower), Thresh); in SV_NAME_F1()
H A Dlogf.c34 #define Thresh (0x7f000000) /* asuint32(inf) - 0x00800000. */ macro
57 svbool_t cmp = svcmpge (pg, svsub_x (pg, u_off, d->lower), Thresh); in SV_NAME_F1()
H A Dlog2.c15 #define Thresh (0x7fe0000000000000) /* Max - Min. */ macro
52 svbool_t special = svcmpge (pg, svsub_x (pg, ix, Min), Thresh); in SV_NAME_D1()
H A Dlog.c15 #define Thresh (0x7fe0000000000000) /* Max - Min. */ macro
50 svbool_t special = svcmpge (pg, svsub_x (pg, ix, Min), Thresh); in SV_NAME_D1()
/freebsd/contrib/arm-optimized-routines/math/
H A Dexp10.c18 #define Thresh 0x41 /* BigTop - SmallTop. */ macro
69 if (unlikely (abstop - SmallTop >= Thresh)) in exp10()
/freebsd/sys/powerpc/powerpc/
H A Dsupport.S206 #define Thresh WORD * 8 macro
217 CMPLI rl, Thresh
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp20061 APFloat Thresh(APFloat::IEEEsingle(), APInt(32, 0x5f000000)); in FP_TO_INTHelper() local
20066 Status = Thresh.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, in FP_TO_INTHelper()
20069 Status = Thresh.convert(APFloat::x87DoubleExtended(), in FP_TO_INTHelper()
20075 SDValue ThreshVal = DAG.getConstantFP(Thresh, DL, TheVT); in FP_TO_INTHelper()