Searched defs:IBI (Results 1 - 9 of 9) sorted by relevance

/external/pdfium/core/fxcodec/jbig2/
H A DJBig2_TrdProc.cpp97 CJBig2_Image* IBI = nullptr; local
99 IBI = SBSYMS[IDI];
139 IBI = pGRRD->decode(pArithDecoder.get(), grContext);
140 if (!IBI)
147 delete IBI;
151 if (!IBI) {
154 uint32_t WI = IBI->width();
155 uint32_t HI = IBI->height();
167 SBREG->composeFrom(SI, TI, IBI, SBCOMBOP);
170 SBREG->composeFrom(SI - WI + 1, TI, IBI, SBCOMBO
316 std::unique_ptr<CJBig2_Image> IBI; local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
H A DCPPBackend.cpp1077 const IndirectBrInst *IBI = cast<IndirectBrInst>(I); local
1079 << opNames[0] << ", " << IBI->getNumDestinations() << ");";
1081 for (unsigned i = 1; i != IBI->getNumOperands(); ++i) {
/external/llvm/lib/Analysis/
H A DInlineCost.cpp199 bool visitIndirectBrInst(IndirectBrInst &IBI);
1016 bool CallAnalyzer::visitIndirectBrInst(IndirectBrInst &IBI) { argument
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2449 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); local
2450 InstructionList.push_back(IBI);
2453 IBI->addDestination(DestBB);
2455 delete IBI;
2459 I = IBI;
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DSimplifyCFG.cpp71 bool SimplifyIndirectBr(IndirectBrInst *IBI);
441 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(TI)) {
442 Cond = dyn_cast<Instruction>(IBI->getAddress());
1909 static bool SimplifyIndirectBrOnSelect(IndirectBrInst *IBI, SelectInst *SI) { argument
1921 return SimplifyTerminatorOnSelect(IBI, SI->getCondition(), TrueBB, FalseBB);
2627 bool SimplifyCFGOpt::SimplifyIndirectBr(IndirectBrInst *IBI) { argument
2628 BasicBlock *BB = IBI->getParent();
2633 for (unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) {
2634 BasicBlock *Dest = IBI->getDestination(i);
2637 IBI
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
H A DCBackend.cpp2412 void CWriter::visitIndirectBrInst(IndirectBrInst &IBI) { argument
2414 writeOperand(IBI.getOperand(0));
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstructions.cpp3256 IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI) argument
3257 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
3258 allocHungoffUses(IBI.getNumOperands()),
3259 IBI.getNumOperands()) {
3260 Use *OL = OperandList, *InOL = IBI.OperandList;
3261 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3263 SubclassOptionalData = IBI.SubclassOptionalData;
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5070 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); local
5071 InstructionList.push_back(IBI);
5074 IBI->addDestination(DestBB);
5076 delete IBI;
5080 I = IBI;
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp161 bool SimplifyIndirectBr(IndirectBrInst *IBI);
633 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(TI)) {
634 Cond = dyn_cast<Instruction>(IBI->getAddress());
3108 static bool SimplifyIndirectBrOnSelect(IndirectBrInst *IBI, SelectInst *SI) { argument
3120 return SimplifyTerminatorOnSelect(IBI, SI->getCondition(), TrueBB, FalseBB, 0,
5087 bool SimplifyCFGOpt::SimplifyIndirectBr(IndirectBrInst *IBI) { argument
5088 BasicBlock *BB = IBI->getParent();
5093 for (unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) {
5094 BasicBlock *Dest = IBI->getDestination(i);
5097 IBI
[all...]

Completed in 343 milliseconds