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

/freebsd-11-stable/contrib/gdb/gdb/
H A Ddwarf2expr.c590 enum exp_opcode binop;
605 binop = BINOP_BITWISE_AND;
608 binop = BINOP_DIV;
611 binop = BINOP_SUB;
614 binop = BINOP_MOD;
617 binop = BINOP_MUL;
620 binop = BINOP_BITWISE_IOR;
623 binop = BINOP_ADD;
626 binop = BINOP_LSH;
629 binop
589 enum exp_opcode binop; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp81 if (const BinaryOperator *binop = dyn_cast<BinaryOperator>(e)) {
82 BinaryOperatorKind opc = binop->getOpcode();
85 mulop = binop;
89 const Expr *lhs = binop->getLHS();
90 const Expr *rhs = binop->getRHS();
/freebsd-11-stable/bin/sh/
H A Dshow.c83 goto binop;
86 goto binop;
89 binop:
H A Darith_yacc.c235 static arith_t binop(int token, union yystype *val, int op, int noeval) function
248 arith_t a = binop(token, val, op, noeval);
/freebsd-11-stable/bin/test/
H A Dtest.c177 static int binop(enum token);
319 return binop(nn);
325 binop(enum token n) function
/freebsd-11-stable/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.c3896 optab binop;
3977 binop = TREE_CODE (src) == PLUS_EXPR ? add_optab : sub_optab;
3981 binop = xor_optab;
3986 result = expand_binop (str_mode, binop, str_rtx,
4010 binop = TREE_CODE (src) == BIT_IOR_EXPR ? ior_optab : xor_optab;
4021 result = expand_binop (GET_MODE (str_rtx), binop, str_rtx,
8073 goto binop;
8250 goto binop;
8453 goto binop;
8458 goto binop;
3884 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-11-stable/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 304 milliseconds