Searched refs:Incr (Results 1 – 16 of 16) sorted by relevance
/external/llvm/lib/Transforms/Scalar/ |
D | IndVarSimplify.cpp | 293 auto *Incr = dyn_cast<BinaryOperator>(PN->getIncomingValue(BackEdge)); in handleFloatingPointIV() local 294 if (Incr == nullptr || Incr->getOpcode() != Instruction::FAdd) return; in handleFloatingPointIV() 298 ConstantFP *IncValueVal = dyn_cast<ConstantFP>(Incr->getOperand(1)); in handleFloatingPointIV() 300 if (IncValueVal == nullptr || Incr->getOperand(0) != PN || in handleFloatingPointIV() 306 Value::user_iterator IncrUse = Incr->user_begin(); in handleFloatingPointIV() 308 if (IncrUse == Incr->user_end()) return; in handleFloatingPointIV() 310 if (IncrUse != Incr->user_end()) return; in handleFloatingPointIV() 439 Incr->getName()+".int", Incr); in handleFloatingPointIV() 457 Incr->replaceAllUsesWith(UndefValue::get(Incr->getType())); in handleFloatingPointIV() 458 RecursivelyDeleteTriviallyDeadInstructions(Incr, TLI); in handleFloatingPointIV()
|
D | LoopStrengthReduce.cpp | 1867 BinaryOperator *Incr = in OptimizeShadowIV() local 1869 if (!Incr) continue; in OptimizeShadowIV() 1870 if (Incr->getOpcode() != Instruction::Add in OptimizeShadowIV() 1871 && Incr->getOpcode() != Instruction::Sub) in OptimizeShadowIV() 1876 if (Incr->getOperand(0) == PH) in OptimizeShadowIV() 1877 C = dyn_cast<ConstantInt>(Incr->getOperand(1)); in OptimizeShadowIV() 1878 else if (Incr->getOperand(1) == PH) in OptimizeShadowIV() 1879 C = dyn_cast<ConstantInt>(Incr->getOperand(0)); in OptimizeShadowIV() 1895 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ? in OptimizeShadowIV() 1897 NewPH, CFP, "IV.S.next.", Incr); in OptimizeShadowIV()
|
/external/openfst/src/include/fst/ |
D | lock.h | 81 int Incr() const { return ++count_; } in Incr() function
|
D | add-on.h | 54 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount() 123 return ref_count_.Incr(); in IncrRefCount()
|
D | accumulator.h | 139 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount() 380 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount() 638 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
|
D | symbol-table.h | 150 return ref_count_.Incr(); in IncrRefCount()
|
D | label-reachable.h | 96 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
|
D | encode.h | 176 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
|
D | edit-fst.h | 113 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
|
D | fst.h | 669 return ref_count_.Incr(); in IncrRefCount()
|
D | compact-fst.h | 182 int IncrRefCount() { return ref_count_.Incr(); } in IncrRefCount()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.cpp | 601 int Incr = (LittleEndian ? 1 : -1); in addConstantFPValue() local 606 for (; Start != Stop; Start += Incr) in addConstantFPValue()
|
/external/llvm/lib/Target/Mips/ |
D | MipsISelLowering.cpp | 1091 unsigned Incr = MI->getOperand(2).getReg(); in emitAtomicBinary() local 1127 BuildMI(BB, DL, TII->get(AND), AndRes).addReg(OldVal).addReg(Incr); in emitAtomicBinary() 1131 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr); in emitAtomicBinary() 1133 StoreVal = Incr; in emitAtomicBinary() 1187 unsigned Incr = MI->getOperand(2).getReg(); in emitAtomicBinaryPartword() local 1256 BuildMI(BB, DL, TII->get(Mips::SLLV), Incr2).addReg(Incr).addReg(ShiftAmt); in emitAtomicBinaryPartword()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.cpp | 1534 int SubReg = 0, End = NumRegs, Incr = 1; in copyPhysRegTuple() local 1538 Incr = -1; in copyPhysRegTuple() 1541 for (; SubReg != End; SubReg += Incr) { in copyPhysRegTuple()
|
/external/webrtc/webrtc/p2p/base/ |
D | pseudotcp.cc | 186 inline void Incr(Stat s) { ++g_stats[s]; }
|
/external/llvm/lib/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 640 int incrementUnscheduledDeps(int Incr) { in incrementUnscheduledDeps() 641 UnscheduledDeps += Incr; in incrementUnscheduledDeps() 642 return FirstInBundle->UnscheduledDepsInBundle += Incr; in incrementUnscheduledDeps()
|