| /src/bin/sh/ |
| arithmetic.c | 161 VTRACE(DBG_ARITH, ("Arith do binop %d (%jd, %jd)\n", op, a, b)); 303 binop(int token, union a_token_val *val, int op, int noeval) function 317 intmax_t a = binop(token, val, op, noeval);
|
| /src/bin/test/ |
| test.c | 94 BINOP 114 {"<", STRLT, BINOP}, 115 {"=", STREQ, BINOP}, 116 {">", STRGT, BINOP}, 120 {"!=", STRNE, BINOP}, 124 {"ef", FILEQ, BINOP}, 125 {"eq", INTEQ, BINOP}, 126 {"ge", INTGE, BINOP}, 127 {"gt", INTGT, BINOP}, 128 {"le", INTLE, BINOP}, 505 binop(void) function [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| target-float.c | 54 virtual void binop (enum exp_opcode opcode, 555 void binop (enum exp_opcode opcode, 1083 host_float_ops<T>::binop (enum exp_opcode op, function in class:T 1183 void binop (enum exp_opcode opcode, 1647 mpfr_float_ops::binop (enum exp_opcode op, function in class:mpfr_float_ops 1905 void binop (enum exp_opcode opcode, 2042 decimal_float_ops::binop (enum exp_opcode op, function in class:decimal_float_ops 2475 ops->binop (opcode, x, type_x, y, type_y, res, type_res);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| target-float.c | 54 virtual void binop (enum exp_opcode opcode, 555 void binop (enum exp_opcode opcode, 1083 host_float_ops<T>::binop (enum exp_opcode op, function in class:T 1183 void binop (enum exp_opcode opcode, 1647 mpfr_float_ops::binop (enum exp_opcode op, function in class:mpfr_float_ops 1905 void binop (enum exp_opcode opcode, 2042 decimal_float_ops::binop (enum exp_opcode op, function in class:decimal_float_ops 2475 ops->binop (opcode, x, type_x, y, type_y, res, type_res);
|
| /src/external/gpl3/gcc/dist/contrib/ |
| paranoia.cc | 204 void binop(int code, const real_c_float&); 226 { binop(PLUS_EXPR, b); return *this; } 228 { binop(MINUS_EXPR, b); return *this; } 230 { binop(MULT_EXPR, b); return *this; } 232 { binop(RDIV_EXPR, b); return *this; } 285 real_c_float::binop (int code, const real_c_float &b) function in class:real_c_float
|
| /src/external/gpl3/gcc/dist/gcc/analyzer/ |
| access-diagram.cc | 2768 const binop_svalue *binop = as_bytes->dyn_cast_binop_svalue (); local 2769 ASSERT_EQ (binop->get_op (), PLUS_EXPR); 2770 ASSERT_EQ (binop->get_arg0 (), mgr.get_or_create_cast (NULL_TREE, init_n)); 2771 ASSERT_EQ_TYPELESS_INTEGER (binop->get_arg1 (), 2);
|
| region-model.cc | 4604 else if (const binop_svalue *binop = lhs->dyn_cast_binop_svalue ()) 4611 if (binop->get_op () == POINTER_PLUS_EXPR) 4613 tristate lhs_ts = eval_condition (binop->get_arg0 (), op, rhs); 4659 if (const binop_svalue *binop = lhs->dyn_cast_binop_svalue ()) 4686 res = symbolic_greater_than (binop, rhs); 4693 tristate res = symbolic_greater_than (binop, rhs); 7727 const binop_svalue *binop = four_times_x_init->dyn_cast_binop_svalue (); local 7728 ASSERT_EQ (binop->get_op (), MULT_EXPR); 7729 ASSERT_EQ (binop->get_arg0 (), x_init); 7730 ASSERT_EQ (binop->get_arg1 (), cst_sval[4]) [all...] |
| /src/external/gpl3/gcc.old/dist/contrib/ |
| paranoia.cc | 204 void binop(int code, const real_c_float&); 226 { binop(PLUS_EXPR, b); return *this; } 228 { binop(MINUS_EXPR, b); return *this; } 230 { binop(MULT_EXPR, b); return *this; } 232 { binop(RDIV_EXPR, b); return *this; } 285 real_c_float::binop (int code, const real_c_float &b) function in class:real_c_float
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| optabs.cc | 1264 optab binop = code_to_optab (code); 1265 gcc_assert (binop); 1267 return expand_binop (mode, binop, op0, op1, target, unsignedp, methods); 1271 binop. Order them according to commutative_operand_precedence and, if 1258 optab binop = code_to_optab (code); local
|
| expr.cc | 5045 optab binop; 5163 binop = xor_optab; 5166 binop = code == PLUS_EXPR ? add_optab : sub_optab; 5171 result = expand_binop (str_mode, binop, str_rtx, 5195 binop = code == BIT_IOR_EXPR ? ior_optab : xor_optab; 5205 result = expand_binop (str_mode, binop, str_rtx, 9341 goto binop; 9470 goto binop; 9583 goto binop; 9595 goto binop; 5033 optab binop; local [all...] |
| dwarf2out.cc | 18648 dw_loc_descr_ref cvt, binop; 18674 binop = new_loc_descr (op, 0, 0); 18675 convert_descriptor_to_mode (mode, binop); 18676 add_loc_descr_to_each (op0, binop); 18635 dw_loc_descr_ref cvt, binop; local
|
| /src/external/gpl3/gcc/dist/gcc/config/riscv/ |
| riscv-vector-builtins-bases.cc | 293 class binop : public function_base class in namespace:riscv_vector 2455 static CONSTEXPR const binop<PLUS> vadd_obj; 2456 static CONSTEXPR const binop<MINUS> vsub_obj; 2458 static CONSTEXPR const binop<AND> vand_obj; 2459 static CONSTEXPR const binop<IOR> vor_obj; 2460 static CONSTEXPR const binop<XOR> vxor_obj; 2461 static CONSTEXPR const binop<ASHIFT> vsll_obj; 2462 static CONSTEXPR const binop<ASHIFTRT> vsra_obj; 2463 static CONSTEXPR const binop<LSHIFTRT> vsrl_obj; 2464 static CONSTEXPR const binop<SMIN> vmin_obj [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| optabs.cc | 1269 optab binop = code_to_optab (code); 1270 gcc_assert (binop); 1272 return expand_binop (mode, binop, op0, op1, target, unsignedp, methods); 1276 binop. Order them according to commutative_operand_precedence and, if 1263 optab binop = code_to_optab (code); local
|
| expr.cc | 5668 optab binop; 5786 binop = xor_optab; 5789 binop = code == PLUS_EXPR ? add_optab : sub_optab; 5794 result = expand_binop (str_mode, binop, str_rtx, 5818 binop = code == BIT_IOR_EXPR ? ior_optab : xor_optab; 5828 result = expand_binop (str_mode, binop, str_rtx, 10047 goto binop; 10174 goto binop; 10320 goto binop; 10332 goto binop; 5656 optab binop; local [all...] |
| dwarf2out.cc | 18734 dw_loc_descr_ref cvt, binop; 18760 binop = new_loc_descr (op, 0, 0); 18761 convert_descriptor_to_mode (mode, binop); 18762 add_loc_descr_to_each (op0, binop); 18721 dw_loc_descr_ref cvt, binop; local
|
| /src/external/gpl3/gcc.old/dist/gcc/analyzer/ |
| region-model.cc | 3044 else if (const binop_svalue *binop = lhs->dyn_cast_binop_svalue ()) 3051 if (binop->get_op () == POINTER_PLUS_EXPR) 3054 = eval_condition_without_cm (binop->get_arg0 (), 5050 const binop_svalue *binop = four_times_x_init->dyn_cast_binop_svalue (); local 5051 ASSERT_EQ (binop->get_op (), MULT_EXPR); 5052 ASSERT_EQ (binop->get_arg0 (), x_init); 5053 ASSERT_EQ (binop->get_arg1 (), cst_sval[4]);
|