Searched refs:ABS (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-9.3-release/contrib/binutils/bfd/
H A Dcpu-ia64-opc.c429 #define ABS IA64_OPND_CLASS_ABS macro
510 { ABS, ins_cimmu, ext_cimmu, 0, {{ 5, 20 }}, UDEC, /* CCNT5 */
512 { ABS, ins_cnt, ext_cnt, 0, {{ 2, 27 }}, UDEC, /* CNT2a */
514 { ABS, ins_cnt2b, ext_cnt2b, 0, {{ 2, 27 }}, UDEC, /* CNT2b */
516 { ABS, ins_cnt2c, ext_cnt2c, 0, {{ 2, 30 }}, UDEC, /* CNT2c */
518 { ABS, ins_immu, ext_immu, 0, {{ 5, 14}}, UDEC, /* CNT5 */
520 { ABS, ins_immu, ext_immu, 0, {{ 6, 27}}, UDEC, /* CNT6 */
522 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 20}}, UDEC, /* CPOS6a */
524 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 14}}, UDEC, /* CPOS6b */
526 { ABS, ins_cimm
[all...]
/freebsd-9.3-release/sys/ia64/include/
H A Dasm.h129 * ABS
132 #define ABS(_name_, _value_) \ macro
/freebsd-9.3-release/contrib/llvm/lib/MC/
H A DMCStreamer.cpp73 MCSymbol *ABS = Context.CreateTempSymbol();
74 EmitAssignment(ABS, Expr);
75 return MCSymbolRefExpr::Create(ABS, Context);
136 const MCExpr *ABS = ForceExpAbs(Value); local
137 EmitValue(ABS, Size);
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dsysmacros.h58 #ifndef ABS
59 #define ABS(a) ((a) < 0 ? -(a) : (a)) macro
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dm2-exp.y176 %token SIZE CAP ORD HIGH ABS MIN_FUNC MAX_FUNC FLOAT_FUNC VAL CHR ODD TRUNC
250 exp : ABS '(' exp ')'
794 {"ABS", ABS },
H A Dada-lex.l200 abs { return ABS; }
H A Dm2-exp.c74 ABS = 276, enumerator in enum:yytokentype
122 #define ABS 276 macro
514 "VARNAME", "TYPENAME", "SIZE", "CAP", "ORD", "HIGH", "ABS", "MIN_FUNC",
2287 {"ABS", ABS },
H A Dada-exp.y194 %right STARSTAR ABS NOT
315 exp : ABS exp %prec UNARY
H A Dada-exp.c85 ABS = 287, enumerator in enum:yytokentype
133 #define ABS 287 macro
534 "'/'", "REM", "MOD", "NOT", "ABS", "STARSTAR", "TICK_LENGTH",
/freebsd-9.3-release/usr.bin/lex/
H A Dgen.c242 ecgroup[i] = ABS( ecgroup[i] );
946 i, ABS( tecbck[i] ) );
948 mkdata( ABS( tecbck[i] ) );
H A Dflexdef.h112 #ifndef ABS
113 #define ABS(x) ((x) < 0 ? -(x) : (x)) macro
H A Ddfa.c209 ec = ABS( ecgroup[i] );
998 else if ( ABS( ecgroup[sym] ) == transsym )
H A Dmain.c1050 NUL_ec = ABS( ecgroup[0] );
/freebsd-9.3-release/contrib/gcc/
H A Drtl.def569 DEF_RTL_EXPR(ABS, "abs", "e", RTX_UNARY)
H A Dsimplify-rtx.c640 (OP:SI foo:SI) if OP is NEG or ABS. */
641 if ((GET_CODE (op) == ABS
724 (OP:SF foo:SF) if OP is NEG or ABS. */
725 if ((GET_CODE (op) == ABS
761 case ABS:
764 return simplify_gen_unary (ABS, mode, XEXP (op, 0),
772 /* If operand is something known to be positive, ignore the ABS. */
773 if (GET_CODE (op) == FFS || GET_CODE (op) == ABS
782 /* If operand is known to be only -1 or 0, convert ABS to NEG. */
1006 case ABS
[all...]
H A Dsched-vis.c209 case ABS:
H A Doptabs.c2479 if (code == ABS)
2496 temp = expand_binop (imode, code == ABS ? and_optab : xor_optab,
2515 temp = expand_binop (imode, code == ABS ? and_optab : xor_optab,
2838 temp = expand_absneg_bit (ABS, mode, op0, target);
3139 op0 = simplify_unary_operation (ABS, mode, op0, mode);
5276 abs_optab = init_optab (ABS);
5277 absv_optab = init_optabv (ABS);
H A Dcombine.c4998 return simplify_gen_unary (ABS, mode, true_rtx, mode);
5003 simplify_gen_unary (ABS, mode, true_rtx, mode),
7634 if (code == ABS && rtx_equal_p (XEXP (x, 0), reg) && val == const0_rtx)
10026 /* When X is ABS or is known positive,
10030 && (GET_CODE (XEXP (op0, 0)) == ABS
10079 case ABS:
10080 /* ABS is ignorable inside an equality comparison with zero. */
10207 && GET_CODE (XEXP (op0, 0)) == ABS && sign_bit_comparison_p)
/freebsd-9.3-release/sys/dev/sound/isa/
H A Dess.c48 #define ABS(x) (((x) < 0)? -(x) : (x)) macro
443 use0 = (ABS(speed - s0) < ABS(speed - s1))? 1 : 0;
/freebsd-9.3-release/sys/dev/sound/pci/
H A Dsolo.c43 #define ABS(x) (((x) < 0)? -(x) : (x)) macro
409 use0 = (ABS(speed - s0) < ABS(speed - s1))? 1 : 0;
/freebsd-9.3-release/sys/dev/acpi_support/
H A Dacpi_ibm.c147 #define ABS(x) (((x) < 0)? -(x) : (x)) macro
886 &temp[i])) || ABS(temp[i]) == 128 || temp[i] == 0)
/freebsd-9.3-release/sys/geom/raid/
H A Dtr_raid1.c493 #define ABS(x) (((x) >= 0) ? (x) : (-(x))) macro
520 if (ABS(G_RAID_SUBDISK_POS(sd) - bp->bio_offset) <
H A Dtr_raid1e.c638 #define ABS(x) (((x) >= 0) ? (x) : (-(x))) macro
681 if (ABS(G_RAID_SUBDISK_POS(sd) - offset) <
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Drefclock_parse.c237 #undef ABS macro
238 #define ABS(_X_) (((_X_) < 0) ? -(_X_) : (_X_)) macro
3408 parse->maxunsync = (u_long)ABS(in->fudgetime2);
4467 (long) ABS(antinfo.delta_t) / 10000,
4468 (long) ABS(antinfo.delta_t) % 10000);
/freebsd-9.3-release/lib/libvgl/
H A Dsimple.c40 #define ABS(a) (((a)<0) ? -(a) : (a)) macro

Completed in 666 milliseconds

12