HomeSort by relevance Sort by last modified time
    Searched refs:binop (Results 1 - 25 of 27) sorted by null

1 2

  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c 468 static IRExpr* binop ( IROp op, IRExpr* a1, IRExpr* a2 ) function
519 return unop(Iop_32to1, binop(Iop_Or32, unop(Iop_1Uto32, arg1),
527 return unop(Iop_32to1, binop(Iop_And32, unop(Iop_1Uto32, arg1),
544 assign( *vOdd, binop(Iop_MullEven8Ux16, mkexpr(ones8x16), vIn) );
545 assign( *vEvn, binop(Iop_MullEven8Ux16, mkexpr(ones8x16),
546 binop(Iop_ShrV128, vIn, mkU8(8))) );
562 assign( *vOdd, binop(Iop_MullEven8Sx16, mkexpr(ones8x16), vIn) );
563 assign( *vEvn, binop(Iop_MullEven8Sx16, mkexpr(ones8x16),
564 binop(Iop_ShrV128, vIn, mkU8(8))) );
580 assign( *vOdd, binop(Iop_MullEven16Ux8, mkexpr(ones16x8), vIn) )
    [all...]
guest_arm_toIR.c 300 static IRExpr* binop ( IROp op, IRExpr* a1, IRExpr* a2 ) function
352 binop(Iop_Or32,
353 binop(Iop_Shl32, mkexpr(src), mkU8(32 - rot)),
354 binop(Iop_Shr32, mkexpr(src), mkU8(rot)));
359 return binop(Iop_64HLtoV128, mkU64(i), mkU64(i));
367 return binop(Iop_And32, e, mkU32(~3));
541 // e = binop(Iop_And32, e, mkU32(~3));
923 assign(nyu, binop(Iop_Or32, mkexpr(old), e) );
948 assign(masked, binop(Iop_Shr32, e, mkU8(lowbits_to_ignore)));
979 assign(ge10, binop(Iop_And32, mkexpr(t32), mkU32(0x00008000)))
    [all...]
guest_amd64_helpers.c 878 # define binop macro
1366 # undef binop macro
    [all...]
guest_x86_helpers.c 781 # define binop(_op,_a1,_a2) IRExpr_Binop((_op),(_a1),(_a2)) macro
814 binop(Iop_CmpEQ32,
815 binop(Iop_Add32, cc_dep1, cc_dep2),
824 binop(Iop_CmpEQ32, cc_dep1, cc_dep2));
829 binop(Iop_CmpNE32, cc_dep1, cc_dep2));
836 binop(Iop_CmpLT32S, cc_dep1, cc_dep2));
841 return binop(Iop_Xor32,
843 binop(Iop_CmpLT32S, cc_dep1, cc_dep2)),
851 binop(Iop_CmpLE32S, cc_dep1, cc_dep2));
857 return binop(Iop_Xor32
1316 # undef binop macro
    [all...]
guest_amd64_toIR.c 253 static IRExpr* binop ( IROp op, IRExpr* a1, IRExpr* a2 ) function
    [all...]
guest_x86_toIR.c 651 static IRExpr* binop ( IROp op, IRExpr* a1, IRExpr* a2 ) function
742 binop(Iop_And32,
768 binop( mkSizedOp(tyE,Iop_CasCmpNE8),
    [all...]
guest_arm_helpers.c 315 # define binop(_op,_a1,_a2) IRExpr_Binop((_op),(_a1),(_a2)) macro
348 binop(Iop_CmpEQ32, cc_dep1, cc_dep2));
353 binop(Iop_CmpNE32, cc_dep1, cc_dep2));
359 binop(Iop_CmpLE32S, cc_dep1, cc_dep2));
365 binop(Iop_CmpLT32S, cc_dep1, cc_dep2));
372 binop(Iop_CmpLE32S, cc_dep2, cc_dep1));
379 binop(Iop_CmpLE32U, cc_dep2, cc_dep1));
385 binop(Iop_CmpLE32U, cc_dep1, cc_dep2));
392 binop(Iop_CmpEQ32, cc_dep1, mkU32(0)));
397 binop(Iop_CmpNE32, cc_dep1, mkU32(0)))
448 # undef binop macro
    [all...]
host_arm_isel.c 184 static IRExpr* binop ( IROp op, IRExpr* a1, IRExpr* a2 ) function
676 && (e->Iex.Binop.op == Iop_Add32 || e->Iex.Binop.op == Iop_Sub32)
677 && e->Iex.Binop.arg2->tag == Iex_Const
678 && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U32) {
679 Int simm = (Int)e->Iex.Binop.arg2->Iex.Const.con->Ico.U32;
682 if (e->Iex.Binop.op == Iop_Sub32)
684 reg = iselIntExpr_R(env, e->Iex.Binop.arg1);
742 && (e->Iex.Binop.op == Iop_Add32 || e->Iex.Binop.op == Iop_Sub32
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 53 (* If this is a binop, find its precedence. *)
57 (* If this is a binop that binds at least as tightly as the current binop,
60 (* Eat the binop. *)
66 (* Okay, we know this is a binop. *)
70 (* If BinOp binds less tightly with rhs than the operator after
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 53 (* If this is a binop, find its precedence. *)
57 (* If this is a binop that binds at least as tightly as the current binop,
60 (* Eat the binop. *)
66 (* Okay, we know this is a binop. *)
70 (* If BinOp binds less tightly with rhs than the operator after
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 53 (* If this is a binop, find its precedence. *)
57 (* If this is a binop that binds at least as tightly as the current binop,
60 (* Eat the binop. *)
66 (* Okay, we know this is a binop. *)
70 (* If BinOp binds less tightly with rhs than the operator after
  /external/valgrind/main/memcheck/
mc_translate.c 403 #define binop(_op, _arg1, _arg2) IRExpr_Binop((_op),(_arg1),(_arg2)) macro
449 return assignNew('V', mce, Ity_I8, binop(Iop_And8, a1, a2));
455 return assignNew('V', mce, Ity_I16, binop(Iop_And16, a1, a2));
461 return assignNew('V', mce, Ity_I32, binop(Iop_And32, a1, a2));
467 return assignNew('V', mce, Ity_I64, binop(Iop_And64, a1, a2));
473 return assignNew('V', mce, Ity_V128, binop(Iop_AndV128, a1, a2));
481 return assignNew('V', mce, Ity_I8, binop(Iop_Or8, a1, a2));
487 return assignNew('V', mce, Ity_I16, binop(Iop_Or16, a1, a2));
493 return assignNew('V', mce, Ity_I32, binop(Iop_Or32, a1, a2));
499 return assignNew('V', mce, Ity_I64, binop(Iop_Or64, a1, a2))
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 73 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();
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 89 (* If this is a binop, find its precedence. *)
93 (* If this is a binop that binds at least as tightly as the current binop,
96 (* Eat the binop. *)
102 (* Okay, we know this is a binop. *)
106 (* If BinOp binds less tightly with rhs than the operator after
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 100 (* If this is a binop, find its precedence. *)
104 (* If this is a binop that binds at least as tightly as the current binop,
107 (* Eat the binop. *)
113 (* Okay, we know this is a binop. *)
117 (* If BinOp binds less tightly with rhs than the operator after
codegen.ml 50 build_call callee [|lhs_val; rhs_val|] "binop" builder
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
for_each_selectors.h 345 template<typename BinOp>
348 BinOp& binop; member in struct:__gnu_parallel::accumulate_binop_reduct
351 accumulate_binop_reduct(BinOp& b) : binop(b) { }
356 { return binop(x, y); }
  /system/core/sh/
show.c 85 goto binop;
88 goto binop;
91 binop:
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
parser.ml 114 (* If this is a binop, find its precedence. *)
118 (* If this is a binop that binds at least as tightly as the current binop,
121 (* Eat the binop. *)
127 (* Okay, we know this is a binop. *)
131 (* If BinOp binds less tightly with rhs than the operator after
codegen.ml 79 build_call callee [|lhs_val; rhs_val|] "binop" builder
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
dc.sed 33 /|?!*[-+*/%^<>=]/b binop
34 /^|.*|?[dpPfQXZvxkiosStT;:]/b binop
196 : binop
  /external/valgrind/main/exp-dhat/
dh_main.c 766 #define binop(_op, _arg1, _arg2) IRExpr_Binop((_op),(_arg1),(_arg2)) macro
791 IRStmt* st2 = assign(t2, binop(Iop_Add64, mkexpr(t1), mkU64(n)));
846 ? binop(Iop_Sub32, mkexpr(sp), mkU32(rz_szB))
847 : binop(Iop_Sub64, mkexpr(sp), mkU64(rz_szB)))
855 ? binop(Iop_Sub32, addr, mkexpr(sp_minus_rz))
856 : binop(Iop_Sub64, addr, mkexpr(sp_minus_rz)))
864 ? binop(Iop_CmpLT32U, mkU32(THRESH), mkexpr(diff))
865 : binop(Iop_CmpLT64U, mkU64(THRESH), mkexpr(diff)))
1019 #undef binop macro
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
cpp.c 364 } binop[] = { variable in typeref:struct:__anon13190
450 for (i = ALEN(binop) - 1; i >= 0; i--) {
451 if (binop[i].token == token)
454 if (i < 0 || binop[i].prec <= prec)
458 token = eval(token, binop[i].prec, res, err, yylvalpp);
459 *res = binop[i].op(val, *res);
    [all...]
  /external/valgrind/main/exp-ptrcheck/
h_main.c 3794 #define binop macro
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf.c     [all...]

Completed in 4333 milliseconds

1 2