Searched defs:Incr (Results 1 - 4 of 4) sorted by relevance

/external/openfst/src/include/fst/
H A Dlock.h70 int Incr() const { return ++count_; } function in class:fst::RefCounter
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp514 int Incr = (LittleEndian ? 1 : -1); local
519 for (; Start != Stop; Start += Incr)
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp1067 unsigned Incr = MI->getOperand(2).getReg(); local
1105 BuildMI(BB, dl, TII->get(AND), AndRes).addReg(OldVal).addReg(Incr);
1109 BuildMI(BB, dl, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr);
1111 StoreVal = Incr;
1139 unsigned Incr = MI->getOperand(2).getReg(); local
1203 BuildMI(BB, dl, TII->get(Mips::SLLV), Incr2).addReg(ShiftAmt).addReg(Incr);
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1722 BinaryOperator *Incr = local
1724 if (!Incr) continue;
1725 if (Incr->getOpcode() != Instruction::Add
1726 && Incr->getOpcode() != Instruction::Sub)
1731 if (Incr->getOperand(0) == PH)
1732 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1733 else if (Incr->getOperand(1) == PH)
1734 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
1750 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1752 NewPH, CFP, "IV.S.next.", Incr);
[all...]

Completed in 109 milliseconds