HomeSort by relevance Sort by last modified time
    Searched refs:Incr (Results 1 - 13 of 13) sorted by null

  /frameworks/compile/libbcc/lib/
RSX86TranslateGEPPass.cpp 56 llvm::Value *incrementOffset(llvm::Value *accum, llvm::Value *incr,
59 return incr;
60 return llvm::BinaryOperator::CreateAdd(accum, incr, "", InsertBefore);
85 llvm::Value *Incr = llvm::ConstantInt::get(
87 Offset = incrementOffset(Offset, Incr, GEP);
93 llvm::Value *Incr = llvm::BinaryOperator::CreateMul(
96 Offset = incrementOffset(Offset, Incr, GEP);
  /external/swiftshader/third_party/subzero/crosstest/
test_vector_ops_main.cpp 34 Ty Incr;
39 Incr[I] = (ElementTy)I;
49 Ty TestVectors[] = {Zero, Incr, Decr, Min, Max};
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
IndVarSimplify.cpp 267 BinaryOperator *Incr =
269 if (Incr == 0 || Incr->getOpcode() != Instruction::FAdd) return;
273 ConstantFP *IncValueVal = dyn_cast<ConstantFP>(Incr->getOperand(1));
275 if (IncValueVal == 0 || Incr->getOperand(0) != PN ||
279 // Check Incr uses. One user is PN and the other user is an exit condition
281 Value::use_iterator IncrUse = Incr->use_begin();
283 if (IncrUse == Incr->use_end()) return;
285 if (IncrUse != Incr->use_end()) return;
414 Incr->getName()+".int", Incr)
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 259 auto *Incr = dyn_cast<BinaryOperator>(PN->getIncomingValue(BackEdge));
260 if (Incr == nullptr || Incr->getOpcode() != Instruction::FAdd) return;
264 ConstantFP *IncValueVal = dyn_cast<ConstantFP>(Incr->getOperand(1));
266 if (IncValueVal == nullptr || Incr->getOperand(0) != PN ||
270 // Check Incr uses. One user is PN and the other user is an exit condition
272 Value::user_iterator IncrUse = Incr->user_begin();
274 if (IncrUse == Incr->user_end()) return;
276 if (IncrUse != Incr->user_end()) return;
405 Incr->getName()+".int", Incr)
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 575 int Incr = (LittleEndian ? 1 : -1);
580 for (; Start != Stop; Start += Incr)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 492 int Incr = (LittleEndian ? 1 : -1);
497 for (; Start != Stop; Start += Incr)
    [all...]
  /external/webrtc/webrtc/p2p/base/
pseudotcp.cc 186 inline void Incr(Stat s) { ++g_stats[s]; }
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 612 int incrementUnscheduledDeps(int Incr) {
613 UnscheduledDeps += Incr;
614 return FirstInBundle->UnscheduledDepsInBundle += Incr;
    [all...]

Completed in 355 milliseconds