/freebsd/sys/contrib/openzfs/lib/libspl/include/os/linux/sys/ |
H A D | sysmacros.h | 39 #ifndef ABS 40 #define ABS(a) ((a) < 0 ? -(a) : (a)) macro
|
/freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/ |
H A D | sysmacros.h | 146 #ifndef ABS 147 #define ABS(a) ((a) < 0 ? -(a) : (a)) macro
|
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/ |
H A D | sysmacros.h | 62 #ifndef ABS 63 #define ABS(a) ((a) < 0 ? -(a) : (a)) macro
|
H A D | ccompile.h | 186 #define ABS(a) ((a) < 0 ? -(a) : (a)) macro
|
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
H A D | M68kSchedule.td | 18 let HighLatency = 16; // Long ABS
|
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/ |
H A D | sysmacros.h | 65 #ifndef ABS 66 #define ABS(a) ((a) < 0 ? -(a) : (a)) macro
|
/freebsd/contrib/flex/src/ |
H A D | gen.c | 452 ecgroup[i] = ABS (ecgroup[i]); in mkecstbl() 473 ecgroup[i] = ABS (ecgroup[i]); in genecs() 1282 i, ABS (tecbck[i])); in gentabs() 1284 mkdata (ABS (tecbck[i])); in gentabs() 1285 yymecs_data[i] = ABS (tecbck[i]); in gentabs()
|
H A D | flexdef.h | 107 #ifndef ABS 108 #define ABS(x) ((x) < 0 ? -(x) : (x)) macro
|
H A D | dfa.c | 189 ec = ABS (ecgroup[i]); in dump_transitions() 987 else if (ABS (ecgroup[sym]) == transsym) in symfollowset()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | R600Instructions.td | 58 def ABS : InstFlag <"printAbs">; 105 R600_Reg32:$src0, NEG:$src0_neg, REL:$src0_rel, ABS:$src0_abs, SEL:$src0_sel, 147 R600_Reg32:$src0, NEG:$src0_neg, REL:$src0_rel, ABS:$src0_abs, SEL:$src0_sel, 148 R600_Reg32:$src1, NEG:$src1_neg, REL:$src1_rel, ABS:$src1_abs, SEL:$src1_sel, 1033 R600_TReg32_X:$src0_X, NEG:$src0_neg_X, REL:$src0_rel_X, ABS:$src0_abs_X, SEL:$src0_sel_X, 1034 R600_TReg32_X:$src1_X, NEG:$src1_neg_X, REL:$src1_rel_X, ABS:$src1_abs_X, SEL:$src1_sel_X, 1039 R600_TReg32_Y:$src0_Y, NEG:$src0_neg_Y, REL:$src0_rel_Y, ABS:$src0_abs_Y, SEL:$src0_sel_Y, 1040 R600_TReg32_Y:$src1_Y, NEG:$src1_neg_Y, REL:$src1_rel_Y, ABS:$src1_abs_Y, SEL:$src1_sel_Y, 1045 R600_TReg32_Z:$src0_Z, NEG:$src0_neg_Z, REL:$src0_rel_Z, ABS:$src0_abs_Z, SEL:$src0_sel_Z, 1046 R600_TReg32_Z:$src1_Z, NEG:$src1_neg_Z, REL:$src1_rel_Z, ABS [all...] |
H A D | GCNDPPCombine.cpp | 139 const int64_t Mask = ~(SISrcMods::ABS | SISrcMods::NEG); in isShrinkable() 283 (0LL == (Mod0->getImm() & ~(SISrcMods::ABS | SISrcMods::NEG)))); in createDPPInst() 307 (0LL == (Mod1->getImm() & ~(SISrcMods::ABS | SISrcMods::NEG)))); in createDPPInst() 340 (0LL == (Mod2->getImm() & ~(SISrcMods::ABS | SISrcMods::NEG)))); in createDPPInst()
|
H A D | SIDefines.h | 289 ABS = 1 << 1, // Floating-point absolute modifier enumerator 291 NEG_HI = ABS, // Floating-point negate high packed component modifier.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86TargetTransformInfo.cpp | 3530 { ISD::ABS, MVT::v32i16, { 1, 1, 1, 1 } }, in getIntrinsicInstrCost() 3531 { ISD::ABS, MVT::v64i8, { 1, 1, 1, 1 } }, in getIntrinsicInstrCost() 3611 { ISD::ABS, MVT::v8i64, { 1, 1, 1, 1 } }, in getIntrinsicInstrCost() 3612 { ISD::ABS, MVT::v4i64, { 1, 1, 1, 1 } }, in getIntrinsicInstrCost() 3613 { ISD::ABS, MVT::v2i64, { 1, 1, 1, 1 } }, in getIntrinsicInstrCost() 3614 { ISD::ABS, MVT::v16i32, { 1, 1, 1, 1 } }, in getIntrinsicInstrCost() 3615 { ISD::ABS, MVT::v8i32, { 1, 1, 1, 1 } }, in getIntrinsicInstrCost() 3616 { ISD::ABS, MVT::v32i16, { 2, 7, 4, 4 } }, in getIntrinsicInstrCost() 3617 { ISD::ABS, MVT::v16i16, { 1, 1, 1, 1 } }, in getIntrinsicInstrCost() 3618 { ISD::ABS, MVT::v64i8, { 2, 7, 4, 4 } }, in getIntrinsicInstrCost() [all …]
|
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
H A D | ar9300_reset.c | 5751 #define ABS(x) ((x) >= 0 ? (x) : (-(x))) macro 5866 if ((ABS(magnitude) < ABS(magnitude_max)) || in ar9300_tx_iq_cal_outlier_detection() 5867 (ABS(magnitude) < ABS(magnitude_min))) in ar9300_tx_iq_cal_outlier_detection() 5871 if ((ABS(phase) < ABS(phase_max)) || in ar9300_tx_iq_cal_outlier_detection() 5872 (ABS(phase) < ABS(phase_min))) in ar9300_tx_iq_cal_outlier_detection() 5881 if (ABS(magnitude_max - magnitude_min) > MAX_MAG_DELTA) { in ar9300_tx_iq_cal_outlier_detection() 5882 if (ABS(magnitude_max - magnitude_avg) > in ar9300_tx_iq_cal_outlier_detection() 5883 ABS(magnitude_min - magnitude_avg)) in ar9300_tx_iq_cal_outlier_detection() 5899 if (ABS(phase_max - phase_min) > MAX_PHS_DELTA) { in ar9300_tx_iq_cal_outlier_detection() 5900 if (ABS(phase_max-phase_avg) > ABS(phase_min - phase_avg)) { in ar9300_tx_iq_cal_outlier_detection() [all …]
|
H A D | ar9300_paprd.c | 76 #define ABS(_x, _y) ((int)_x > (int)_y ? (int)_x - (int)_y : (int)_y - (int)_x) in ar9300_paprd_setup_single_table() macro 119 if (ABS(target_power_val_t2[power_tblindex], in ar9300_paprd_setup_single_table() 131 ABS(ahp->paprd_training_power, in ar9300_paprd_setup_single_table() 190 if (ABS(target_power_val_t2[power_tblindex], ahp->paprd_training_power) in ar9300_paprd_setup_single_table() 404 #undef ABS in ar9300_paprd_setup_single_table()
|
/freebsd/sys/contrib/ncsw/inc/ |
H A D | ncsw_ext.h | 167 #define ABS(a) ((a<0)?(a*-1):a) macro
|
/freebsd/sys/dev/sound/pci/ |
H A D | solo.c | 42 #define ABS(x) (((x) < 0)? -(x) : (x)) macro 397 use0 = (ABS(speed - s0) < ABS(speed - s1))? 1 : 0; in ess_calcspeed9()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCDwarf.cpp | 326 MCSymbol *ABS = Context.createTempSymbol(); in forceExpAbs() local 327 OS.emitAssignment(ABS, Expr); in forceExpAbs() 328 return MCSymbolRefExpr::create(ABS, Context); in forceExpAbs() 332 const MCExpr *ABS = forceExpAbs(OS, Value); in emitAbsValue() local 333 OS.emitValue(ABS, Size); in emitAbsValue()
|
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_sugar.c | 117 (void) asprintf(&str, "%%condition_%d", ABS(condid)); in dt_sugar_new_condition_var()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ISDOpcodes.h | 716 ABS, enumerator
|
/freebsd/sys/geom/raid/ |
H A D | tr_raid1.c | 484 #define ABS(x) (((x) >= 0) ? (x) : (-(x))) macro 511 if (ABS(G_RAID_SUBDISK_POS(sd) - bp->bio_offset) < in g_raid_tr_raid1_select_read_disk()
|
/freebsd/sys/contrib/ncsw/Peripherals/QM/ |
H A D | qm_portal_fqr.c | 1045 tmp = ABS((int)(p_CgParams->fqTailDropThreshold - tmpA*(1<<tmpN))); in qm_new_fq() 1102 tmp = ABS((int)(p_CgParams->fqTailDropThreshold - tmpA*(1<<tmpN))); in qm_new_fq() 1426 tmp = ABS((int)(p_WredCurve->maxTh - tmpA*(1<<tmpN))); in CalcWredCurve() 1471 tmp = ABS((int)(slope - tmpA/(1UL<<(tmpN%32)))); in CalcWredCurve() 2449 tmp = ABS((int)(p_CgParams->threshold - tmpA*(1<<tmpN))); in QM_CG_Create() 2709 tmp = ABS((int)(threshold - tmpA*(1<<tmpN))); in QM_CG_ModifyTailDropThreshold()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64SchedKryoDetails.td | 87 (instregex "((S|U)ADDLP|ABS)(v2i32|v4i16|v8i8)(_v.*)?")>; 93 (instregex "((S|U)ADDLP|ABS)(v2i64|v4i32|v8i16|v16i8)(_v.*)?")>; 645 (instregex "F(ABS|NEG)(D|S)r")>; 651 (instregex "F(ABS|NEG)v2f32")>; 657 (instregex "F(ABS|NEG)(v2f64|v4f32)")>; 1824 (instregex "SQ(ABS|NEG)(v1i8|v1i16|v1i32|v1i64)")>; 1830 (instregex "SQ(ABS|NEG)(v8i8|v4i16|v2i32)")>; 1836 (instregex "SQ(ABS|NEG)(v16i8|v8i16|v4i32|v2i64)")>;
|
/freebsd/sys/contrib/edk2/Include/ |
H A D | Base.h | 954 #define ABS(a) \ macro
|
/freebsd/sys/geom/uzip/ |
H A D | g_uzip.c | 72 #ifndef ABS 73 #define ABS(a) ((a) < 0 ? -(a) : (a)) macro
|