/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/ |
H A D | sinpif.c | 25 # 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 D | sinpi.c | 30 # define Thresh v_u64 (0x07f0000000000000) macro 51 uint64x2_t cmp = vcgeq_u64 (vsubq_u64 (ir, TinyBound), Thresh); in V_NAME_D1()
|
H A D | acoshf.c | 20 #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 D | sinf.c | 34 # define Thresh v_u32 (0x27800000) macro 55 cmp = vcgeq_u32 (vsubq_u32 (ir, TinyBound), Thresh); in V_NAME_F1()
|
H A D | cbrtf.c | 29 #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 D | tan.c | 38 #define Thresh 0x310000000000000 /* RangeVal - TinyBound. */ macro 62 = vcgtq_u64 (vsubq_u64 (iax, v_u64 (TinyBound)), v_u64 (Thresh)); in V_NAME_D1()
|
H A D | sin.c | 34 # define Thresh v_u64 (0x1160000000000000) macro 66 cmp = vcgeq_u64 (vsubq_u64 (ir, TinyBound), Thresh); in V_NAME_D1()
|
H A D | tanf.c | 36 #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 D | powf.c | 14 #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 D | cbrtf.c | 30 #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 D | log2f.c | 33 #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 D | logf.c | 34 #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 D | log2.c | 15 #define Thresh (0x7fe0000000000000) /* Max - Min. */ macro 52 svbool_t special = svcmpge (pg, svsub_x (pg, ix, Min), Thresh); in SV_NAME_D1()
|
H A D | log.c | 15 #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 D | exp10.c | 18 #define Thresh 0x41 /* BigTop - SmallTop. */ macro 69 if (unlikely (abstop - SmallTop >= Thresh)) in exp10()
|
/freebsd/sys/powerpc/powerpc/ |
H A D | support.S | 206 #define Thresh WORD * 8 macro 217 CMPLI rl, Thresh
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 20061 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()
|