HomeSort by relevance Sort by last modified time
    Searched refs:BinaryOperator (Results 76 - 100 of 251) sorted by null

1 2 34 5 6 7 8 91011

  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 27 assert(isa<BinaryOperator>(FirstInst) || isa<CmpInst>(FirstInst));
121 BinaryOperator *BinOp = cast<BinaryOperator>(FirstInst);
122 BinaryOperator *NewBinOp =
123 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
508 } else if (isa<BinaryOperator>(FirstInst) || isa<CmpInst>(FirstInst)) {
582 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(FirstInst)) {
583 BinOp = BinaryOperator::Create(BinOp->getOpcode(), PhiVal, ConstantOp);
    [all...]
InstCombineCasts.cpp 36 if (BinaryOperator *I = dyn_cast<BinaryOperator>(Val)) {
187 Res = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
571 return BinaryOperator::CreateAnd(NewTrunc,
    [all...]
InstCombineCompares.cpp 416 return BinaryOperator::CreateOr(C1, C2);
436 return BinaryOperator::CreateAnd(C1, C2);
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 226 BinOpInfo EmitBinOps(const BinaryOperator *E);
243 ComplexPairTy VisitBinAdd(const BinaryOperator *E) {
246 ComplexPairTy VisitBinSub(const BinaryOperator *E) {
249 ComplexPairTy VisitBinMul(const BinaryOperator *E) {
252 ComplexPairTy VisitBinDiv(const BinaryOperator *E) {
275 LValue EmitBinAssignLValue(const BinaryOperator *E,
277 ComplexPairTy VisitBinAssign (const BinaryOperator *E);
278 ComplexPairTy VisitBinComma (const BinaryOperator *E);
804 ComplexExprEmitter::EmitBinOps(const BinaryOperator *E) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 34 << BinaryOperator::getOpcodeStr(getOpcode()) << ' '
45 << BinaryOperator::getOpcodeStr(getOpcode())
55 << BinaryOperator::getOpcodeStr(getOpcode())
254 BinaryOperator::Opcode op,
272 BinaryOperator::Opcode op,
290 BinaryOperator::Opcode op,
SimpleConstraintManager.h 49 BinaryOperator::Opcode op,
SValBuilder.cpp 44 NonLoc SValBuilder::makeNonLoc(const SymExpr *lhs, BinaryOperator::Opcode op,
55 BinaryOperator::Opcode op, const SymExpr *rhs,
62 NonLoc SValBuilder::makeNonLoc(const SymExpr *lhs, BinaryOperator::Opcode op,
333 BinaryOperator::Opcode Op,
361 SVal SValBuilder::evalBinOp(ProgramStateRef state, BinaryOperator::Opcode op,
BugReporterVisitors.cpp 52 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(E)) {
87 if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(S))
496 if (const BinaryOperator *BO = P->getStmtAs<BinaryOperator>())
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
ReferencePipeline.java 35 import java.util.function.BinaryOperator;
474 public final P_OUT reduce(final P_OUT identity, final BinaryOperator<P_OUT> accumulator) {
479 public final Optional<P_OUT> reduce(BinaryOperator<P_OUT> accumulator) {
484 public final <R> R reduce(R identity, BiFunction<R, ? super P_OUT, R> accumulator, BinaryOperator<R> combiner) {
516 return reduce(BinaryOperator.maxBy(comparator));
521 return reduce(BinaryOperator.minBy(comparator));
  /external/llvm/include/llvm/IR/
Operator.h 27 class BinaryOperator;
82 friend class BinaryOperator;
133 friend class BinaryOperator;
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 221 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) {
436 if (BinaryOperator *
437 bopE = dyn_cast_or_null<BinaryOperator>(parent)) {
Transforms.h 163 bool isPlusOneAssign(const BinaryOperator *E);
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 69 return isa<CastInst>(Inst) || isa<BinaryOperator>(Inst) ||
94 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Inst)) {
135 assert((isa<CallInst>(Inst) || isa<BinaryOperator>(Inst) ||
159 if (BinaryOperator *LHSBinOp = dyn_cast<BinaryOperator>(LHSI)) {
163 assert(isa<BinaryOperator>(RHSI) &&
165 BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI);
    [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 301 const BinaryOperator *Source;
328 PropagationInfo(const BinaryOperator *Source, EffectiveOp EOp,
338 PropagationInfo(const BinaryOperator *Source, EffectiveOp EOp,
406 const BinaryOperator * testSourceNode() const {
491 void VisitBinaryOperator(const BinaryOperator *BinOp);
700 void ConsumedStmtVisitor::VisitBinaryOperator(const BinaryOperator *BinOp) {
    [all...]
LiveVariables.cpp 206 void VisitBinaryOperator(BinaryOperator *BO);
332 void TransferFunctions::VisitBinaryOperator(BinaryOperator *B) {
518 if (const BinaryOperator *BO =
519 dyn_cast<BinaryOperator>(cs->getStmt())) {
  /external/clang/lib/AST/
ParentMap.cpp 177 BinaryOperator *BE = cast<BinaryOperator>(P);
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 59 if (BinaryOperator* BO = dyn_cast<BinaryOperator>(S))
CheckSecuritySyntaxOnly.cpp 189 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(expr)) {
240 const BinaryOperator *B = dyn_cast<BinaryOperator>(condition);
  /external/opencv3/modules/photo/src/
denoise_tvl1.cpp 62 template <class InputIterator, class InputIterator2, class OutputIterator, class BinaryOperator>
64 OutputIterator result, BinaryOperator binary_op)
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 349 void VisitBinaryOperator(const BinaryOperator* B, ExplodedNode *Pred,
381 void VisitLogicalExpr(const BinaryOperator* B, ExplodedNode *Pred,
476 SVal evalBinOp(ProgramStateRef state, BinaryOperator::Opcode op,
481 SVal evalBinOp(ProgramStateRef state, BinaryOperator::Opcode op,
487 SVal evalBinOp(ProgramStateRef ST, BinaryOperator::Opcode Op,
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
TabulatorsTest.java 43 import java.util.function.BinaryOperator;
114 private final BinaryOperator<V> mergeFn;
118 BinaryOperator<V> mergeFn,
211 private final BinaryOperator<U> reducer;
213 ReduceAssertion(U identity, Function<T, U> mapper, BinaryOperator<U> reducer) {
405 BinaryOperator<Integer> sum = Integer::sum;
406 for (BinaryOperator<Integer> op : Arrays.asList((u, v) -> u,
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 384 const BinaryOperator *BO,
387 const BinaryOperator *BO,
389 til::SExpr *translateBinaryOperator(const BinaryOperator *BO,
  /external/llvm/lib/Transforms/Utils/
LoopVersioning.cpp 73 RuntimeCheck = BinaryOperator::Create(Instruction::Or, MemRuntimeCheck,
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
LambdaTestHelpers.java 28 import java.util.function.BinaryOperator;
97 public static final BinaryOperator<Integer> rPlus = (x, y) -> x+y;
98 public static final BinaryOperator<Integer> rMax = (x, y) -> Math.max(x, y);
99 public static final BinaryOperator<Integer> rMin = (x, y) -> Math.min(x,y);
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
LambdaTestHelpers.java 29 import java.util.function.BinaryOperator;
98 public static final BinaryOperator<Integer> rPlus = (x, y) -> x+y;
99 public static final BinaryOperator<Integer> rMax = (x, y) -> Math.max(x, y);
100 public static final BinaryOperator<Integer> rMin = (x, y) -> Math.min(x,y);

Completed in 1514 milliseconds

1 2 34 5 6 7 8 91011