/external/llvm/tools/llvm-readobj/ |
H A D | ARMEHABIPrinter.h | 35 void (OpcodeDecoder::*Routine)(const uint8_t *Opcodes, unsigned &OI); 39 void Decode_00xxxxxx(const uint8_t *Opcodes, unsigned &OI); 40 void Decode_01xxxxxx(const uint8_t *Opcodes, unsigned &OI); 41 void Decode_1000iiii_iiiiiiii(const uint8_t *Opcodes, unsigned &OI); 42 void Decode_10011101(const uint8_t *Opcodes, unsigned &OI); 43 void Decode_10011111(const uint8_t *Opcodes, unsigned &OI); 44 void Decode_1001nnnn(const uint8_t *Opcodes, unsigned &OI); 45 void Decode_10100nnn(const uint8_t *Opcodes, unsigned &OI); 46 void Decode_10101nnn(const uint8_t *Opcodes, unsigned &OI); 47 void Decode_10110000(const uint8_t *Opcodes, unsigned &OI); 95 Decode_00xxxxxx(const uint8_t *Opcodes, unsigned &OI) argument 100 Decode_01xxxxxx(const uint8_t *Opcodes, unsigned &OI) argument 105 Decode_1000iiii_iiiiiiii(const uint8_t *Opcodes, unsigned &OI) argument 118 Decode_10011101(const uint8_t *Opcodes, unsigned &OI) argument 122 Decode_10011111(const uint8_t *Opcodes, unsigned &OI) argument 126 Decode_1001nnnn(const uint8_t *Opcodes, unsigned &OI) argument 130 Decode_10100nnn(const uint8_t *Opcodes, unsigned &OI) argument 136 Decode_10101nnn(const uint8_t *Opcodes, unsigned &OI) argument 142 Decode_10110000(const uint8_t *Opcodes, unsigned &OI) argument 146 Decode_10110001_0000iiii(const uint8_t *Opcodes, unsigned &OI) argument 158 Decode_10110010_uleb128(const uint8_t *Opcodes, unsigned &OI) argument 175 Decode_10110011_sssscccc(const uint8_t *Opcodes, unsigned &OI) argument 185 Decode_101101nn(const uint8_t *Opcodes, unsigned &OI) argument 189 Decode_10111nnn(const uint8_t *Opcodes, unsigned &OI) argument 195 Decode_11000110_sssscccc(const uint8_t *Opcodes, unsigned &OI) argument 205 Decode_11000111_0000iiii(const uint8_t *Opcodes, unsigned &OI) argument 216 Decode_11001000_sssscccc(const uint8_t *Opcodes, unsigned &OI) argument 226 Decode_11001001_sssscccc(const uint8_t *Opcodes, unsigned &OI) argument 236 Decode_11001yyy(const uint8_t *Opcodes, unsigned &OI) argument 240 Decode_11000nnn(const uint8_t *Opcodes, unsigned &OI) argument 246 Decode_11010nnn(const uint8_t *Opcodes, unsigned &OI) argument 252 Decode_11xxxyyy(const uint8_t *Opcodes, unsigned &OI) argument [all...] |
H A D | ARMWinEHPrinter.cpp | 498 for (unsigned OI = Offset, OE = Opcodes.size(); !Terminated && OI < OE; ) { 500 if ((Opcodes[OI] & Ring[DI].Mask) == Ring[DI].Value) { 501 Terminated = (this->*Ring[DI].Routine)(Opcodes.data(), OI, 0, Prologue);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/regression/ |
H A D | GLSMultipleLinearRegression.java | 95 RealMatrix OI = getOmegaInverse(); 97 RealMatrix XTOIX = XT.multiply(OI).multiply(X); 99 return inverse.multiply(XT).multiply(OI).operate(Y); 111 RealMatrix OI = getOmegaInverse(); 112 RealMatrix XTOIX = X.transpose().multiply(OI).multiply(X);
|
/external/llvm/lib/IR/ |
H A D | TypeFinder.cpp | 66 for (User::const_op_iterator OI = I.op_begin(), OE = I.op_end(); 67 OI != OE; ++OI) 68 if (*OI && !isa<Instruction>(OI)) 69 incorporateValue(*OI);
|
/external/llvm/lib/Transforms/ObjCARC/ |
H A D | ObjCARCAPElim.cpp | 152 for (User::op_iterator OI = Init->op_begin(), OE = Init->op_end(); 153 OI != OE; ++OI) { 154 Value *Op = *OI;
|
H A D | DependencyAnalysis.cpp | 104 for (ImmutableCallSite::arg_iterator OI = CS.arg_begin(), 105 OE = CS.arg_end(); OI != OE; ++OI) { 106 const Value *Op = *OI; 123 for (User::const_op_iterator OI = Inst->op_begin(), OE = Inst->op_end(); 124 OI != OE; ++OI) { 125 const Value *Op = *OI;
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMMCTargetDesc.cpp | 85 for (unsigned OI = 4, OE = MI.getNumOperands(); OI < OE; ++OI) { 86 assert(MI.getOperand(OI).isReg() && "expected register"); 87 if (MI.getOperand(OI).getReg() == ARM::SP || 88 MI.getOperand(OI).getReg() == ARM::PC) { 103 for (unsigned OI = 4, OE = MI.getNumOperands(); OI < OE; ++OI) { 104 assert(MI.getOperand(OI) [all...] |
/external/llvm/lib/Transforms/Scalar/ |
H A D | ADCE.cpp | 52 for (Use &OI : Curr->operands()) { 53 if (Instruction *Inst = dyn_cast<Instruction>(OI))
|
H A D | Float2Int.cpp | 234 if (Instruction *OI = dyn_cast<Instruction>(O)) { 236 ECs.unionSets(I, OI); 238 Worklist.push_back(OI); 307 if (Instruction *OI = dyn_cast<Instruction>(O)) { 308 assert(SeenInsts.find(OI) != SeenInsts.end() && 310 OpRanges.push_back(SeenInsts.find(OI)->second);
|
H A D | StructurizeCFG.cpp | 494 for (RNVector::reverse_iterator OI = Order.rbegin(), OE = Order.rend(); 495 OI != OE; ++OI) { 498 ((*OI)->isSubRegion() ? "SubRegion with entry: " : "") << 499 (*OI)->getEntry()->getName() << " Loop Depth: " << LI->getLoopDepth((*OI)->getEntry()) << "\n"); 502 gatherPredicates(*OI); 505 Visited.insert((*OI)->getEntry()); 508 analyzeLoops(*OI);
|
H A D | LICM.cpp | 583 for (User::op_iterator OI = New->op_begin(), OE = New->op_end(); OI != OE; 584 ++OI) 585 if (Instruction *OInst = dyn_cast<Instruction>(*OI)) 593 *OI = OpPN;
|
H A D | GVN.cpp | 174 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end(); 175 OI != OE; ++OI) 176 e.varargs.push_back(lookup_or_add(*OI)); 264 for (Instruction::op_iterator OI = EI->op_begin(), OE = EI->op_end(); 265 OI != OE; ++OI) 266 e.varargs.push_back(lookup_or_add(*OI)); 1742 for (GetElementPtrInst::op_iterator OI = GEP->idx_begin(), 1744 OI ! [all...] |
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
H A D | IntelJITEventListener.cpp | 189 ObjectMap::iterator OI = LoadedObjectMap.find(ObjData); local 190 if (OI == LoadedObjectMap.end()) 192 MethodAddressVector& Functions = OI->second; 209 LoadedObjectMap.erase(OI);
|
/external/llvm/lib/Analysis/ |
H A D | DemandedBits.cpp | 294 for (Use &OI : I.operands()) { 295 if (Instruction *J = dyn_cast<Instruction>(OI)) { 326 for (Use &OI : UserI->operands()) { 327 if (Instruction *I = dyn_cast<Instruction>(OI)) { 338 determineLiveOperandBits(UserI, I, OI.getOperandNo(), AOut, AB,
|
H A D | IVUsers.cpp | 73 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end(); 74 OI != OE; ++OI) 75 if (isInteresting(*OI, I, L, SE, LI)) {
|
H A D | AliasAnalysisEvaluator.cpp | 177 for (Instruction::op_iterator OI = Inst.op_begin(), OE = Inst.op_end(); 178 OI != OE; ++OI) 179 if (isInterestingPointer(*OI)) 180 Pointers.insert(*OI);
|
H A D | ObjCARCInstKind.cpp | 314 for (User::const_op_iterator OI = I->op_begin(), OE = I->op_end(); 315 OI != OE; ++OI) 316 if (IsPotentialRetainableObjPtr(*OI))
|
/external/llvm/lib/CodeGen/ |
H A D | MachineBasicBlock.cpp | 773 for (MachineInstr::mop_iterator OI = MI->operands_begin(), 774 OE = MI->operands_end(); OI != OE; ++OI) { 775 if (!OI->isReg() || OI->getReg() == 0 || 776 !OI->isUse() || !OI->isKill() || OI->isUndef()) 778 unsigned Reg = OI->getReg(); 783 OI [all...] |
/external/clang/lib/Lex/ |
H A D | MacroInfo.cpp | 86 for (arg_iterator I = arg_begin(), OI = Other.arg_begin(), E = arg_end(); 87 I != E; ++I, ++OI) 88 if (*I != *OI) return false;
|
/external/clang/test/Analysis/Inputs/ |
H A D | system-header-simulator-cxx.h | 108 OutputIter copy(InputIter II, InputIter IE, OutputIter OI) { argument 110 *OI++ = *II++; 111 return OI;
|
/external/llvm/lib/Bitcode/Writer/ |
H A D | ValueEnumerator.cpp | 718 for (const Use &OI : I.operands()) { 719 if ((isa<Constant>(OI) && !isa<GlobalValue>(OI)) || isa<InlineAsm>(OI)) 720 EnumerateValue(OI); 739 for (const Use &OI : I.operands()) { 740 if (auto *MD = dyn_cast<MetadataAsValue>(&OI))
|
/external/llvm/lib/Transforms/Utils/ |
H A D | CodeExtractor.cpp | 171 for (User::op_iterator OI = II->op_begin(), OE = II->op_end(); 172 OI != OE; ++OI) 173 if (definedInCaller(Blocks, *OI)) 174 Inputs.insert(*OI);
|
/external/llvm/utils/TableGen/ |
H A D | FastISelEmitter.cpp | 694 for (OperandsOpcodeTypeRetPredMap::const_iterator OI = SimplePatterns.begin(), 695 OE = SimplePatterns.end(); OI != OE; ++OI) { 696 const OperandsSignature &Operands = OI->first; 697 const OpcodeTypeRetPredMap &OTM = OI->second;
|
/external/libchrome/base/ |
H A D | id_map.h | 240 template<IDMapOwnershipSemantics OI, int dummy> struct Releaser {
|
/external/clang/utils/TableGen/ |
H A D | NeonEmitter.cpp | 2068 OverloadInfo &OI = OverloadMap[Name]; local 2069 OI.Mask |= Mask; 2070 OI.PtrArgNum |= PtrArgNum; 2071 OI.HasConstPtr = HasConstPtr; 2076 OverloadInfo &OI = I.second; local 2079 OS << "mask = 0x" << utohexstr(OI.Mask) << "ULL"; 2080 if (OI.PtrArgNum >= 0) 2081 OS << "; PtrArgNum = " << OI.PtrArgNum; 2082 if (OI.HasConstPtr)
|