Searched refs:binop (Results 1 - 10 of 10) sorted by relevance

/freebsd-9.3-release/contrib/gdb/gdb/
H A Ddwarf2expr.c560 enum exp_opcode binop;
575 binop = BINOP_BITWISE_AND;
578 binop = BINOP_DIV;
580 binop = BINOP_SUB;
583 binop = BINOP_MOD;
586 binop = BINOP_MUL;
589 binop = BINOP_BITWISE_IOR;
592 binop = BINOP_ADD;
595 binop = BINOP_LSH;
598 binop
559 enum exp_opcode binop; local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp73 const BinaryOperator * binop = dyn_cast<BinaryOperator>(e); local
74 BinaryOperatorKind opc = binop->getOpcode();
77 mulop = binop;
81 const Expr *lhs = binop->getLHS();
82 const Expr *rhs = binop->getRHS();
/freebsd-9.3-release/bin/sh/
H A Dshow.c83 goto binop;
86 goto binop;
89 binop:
H A Darith_yacc.c233 static arith_t binop(int token, union yystype *val, int op, int noeval) function
246 arith_t a = binop(token, val, op, noeval);
/freebsd-9.3-release/bin/test/
H A Dtest.c174 static int binop(void);
316 return binop();
323 binop(void) function
/freebsd-9.3-release/contrib/gcc/
H A Dtree-ssa-reassoc.c1041 tree binop = TREE_OPERAND (negatedef, 1); local
1044 TREE_OPERAND (binop, 0) = negate_value (TREE_OPERAND (binop, 0),
1047 TREE_OPERAND (binop, 1) = negate_value (TREE_OPERAND (binop, 1),
H A Dexpr.c3894 optab binop;
3975 binop = TREE_CODE (src) == PLUS_EXPR ? add_optab : sub_optab;
3979 binop = xor_optab;
3984 result = expand_binop (str_mode, binop, str_rtx,
4008 binop = TREE_CODE (src) == BIT_IOR_EXPR ? ior_optab : xor_optab;
4019 result = expand_binop (GET_MODE (str_rtx), binop, str_rtx,
8064 goto binop;
8241 goto binop;
8444 goto binop;
8449 goto binop;
3882 optab binop; local
[all...]
H A Doptabs.c1163 optab binop = code_to_optab[(int) code];
1164 gcc_assert (binop);
1166 return expand_binop (mode, binop, op0, op1, target, unsignedp, methods);
1170 binop. Order them according to commutative_operand_precedence and, if
1157 optab binop = code_to_optab[(int) code]; local
H A Dcombine.c7008 goto binop;
7043 goto binop;
7070 goto binop;
7099 binop:
/freebsd-9.3-release/sys/contrib/x86emu/
H A Dx86emu.c1112 uint8_t (*binop)(struct x86emu *, uint8_t, uint8_t))
1123 destval = (*binop)(emu, destval, srcval);
1127 *destreg = (*binop)(emu, *destreg, srcval);
1133 void (*binop)(struct x86emu *, uint8_t, uint8_t))
1146 (*binop)(emu, destval, srcval);
1151 uint16_t (*binop)(struct x86emu *, uint16_t, uint16_t))
1161 destval = (*binop)(emu, destval, srcval);
1165 *destreg = (*binop)(emu, *destreg, srcval);
1171 uint8_t (*binop)(struct x86emu *, uint8_t, uint8_t))
1184 *destreg = (*binop)(em
[all...]

Completed in 236 milliseconds