| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| RegisterScavenging.h | 130 IE = Scavenged.end(); I != IE; ++I) 140 IE = Scavenged.end(); I != IE; ++I)
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| OcamlGCPrinter.cpp | 116 IE = Info.funcinfo_end(); 117 I != IE; ++I) { 135 IE = Info.funcinfo_end(); 136 I != IE; ++I) {
|
| ErlangGCPrinter.cpp | 55 IE = Info.funcinfo_end(); 56 FI != IE; ++FI) {
|
| DwarfCompileUnit.h | 172 void addImportedEntity(const DIImportedEntity* IE) { 173 DIScope *Scope = IE->getScope(); 180 ImportedEntities[LocalScope].push_back(IE);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCCTRLoops.cpp | 117 for (MachineBasicBlock::iterator IE = MBB->begin();; --I) { 134 if (I == IE) 170 for (MachineFunction::iterator I = MF.begin(), IE = MF.end(); 171 I != IE; ++I) {
|
| PPCTLSDynamicCall.cpp | 56 for (MachineBasicBlock::iterator I = MBB.begin(), IE = MBB.end(); 57 I != IE;) {
|
| /src/sys/arch/mips/rmi/ |
| rmixl_spl.S | 76 * - set STATUS[IE] 80 * henceforth STATUS[IE] is expected to remain normally set 87 ori t0, MIPS_SR_INT_IE # set IE 94 mtc0 t0, MIPS_COP_0_STATUS ## set STATUS | IE
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXLowerAggrCopies.cpp | 70 for (BasicBlock::iterator II = BI->begin(), IE = BI->end(); II != IE;
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| PartiallyInlineLibCalls.cpp | 116 for (BasicBlock::iterator II = CurrBB->begin(), IE = CurrBB->end(); 117 II != IE; ++II) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/ |
| ARMTargetStreamer.cpp | 60 for (unsigned II = 0, IE = Size; II != IE; II++) { 72 for (unsigned II = 0, IE = Size; II != IE; II = II + 2) {
|
| ARMBaseInfo.h | 27 IE = 2, 49 case IE: return "ie";
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| ScopeInfo.cpp | 87 const ObjCIvarRefExpr *IE = cast<ObjCIvarRefExpr>(E); 88 D = IE->getDecl(); 89 IsExact = IE->getBase()->isObjCSelfExpr();
|
| /src/external/apache2/llvm/dist/clang/lib/CrossTU/ |
| CrossTranslationUnit.cpp | 342 void CrossTranslationUnitContext::emitCrossTUDiagnostics(const IndexError &IE) { 343 switch (IE.getCode()) { 346 << IE.getFileName(); 350 << IE.getFileName() << IE.getLineNum(); 354 << IE.getLineNum(); 358 << IE.getFileName() << IE.getTripleToName() << IE.getTripleFromName(); 703 [&](const ImportError &IE) { [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| InstCombineVectorOps.cpp | 425 if (auto *IE = dyn_cast<InsertElementInst>(I)) { 427 if (IE->getOperand(2) == Index) 428 return replaceInstUsesWith(EI, IE->getOperand(1)); 431 if (isa<Constant>(IE->getOperand(2)) && IndexC) 432 return replaceOperand(EI, 0, IE->getOperand(0)); 1342 Instruction *InstCombinerImpl::visitInsertElementInst(InsertElementInst &IE) { 1343 Value *VecOp = IE.getOperand(0); 1344 Value *ScalarOp = IE.getOperand(1); 1345 Value *IdxOp = IE.getOperand(2); 1348 VecOp, ScalarOp, IdxOp, SQ.getWithInstruction(&IE))) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| ExprEngineC.cpp | 749 void ExprEngine::VisitInitListExpr(const InitListExpr *IE, 756 QualType T = getContext().getCanonicalType(IE->getType()); 757 unsigned NumInitElements = IE->getNumInits(); 759 if (!IE->isGLValue() && !IE->isTransparent() && 768 B.generateNode(IE, Pred, state->BindExpr(IE, LCtx, V)); 772 for (InitListExpr::const_reverse_iterator it = IE->rbegin(), 773 ei = IE->rend(); it != ei; ++it) { 778 B.generateNode(IE, Pred [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ProfileData/ |
| InstrProf.cpp | 133 std::string message(int IE) const override { 134 return getInstrProfErrString(static_cast<instrprof_error>(IE)); 193 void SoftInstrProfErrors::addError(instrprof_error IE) { 194 if (IE == instrprof_error::success) 198 FirstError = IE; 200 switch (IE) { 531 auto IE = ValueData.end(); 534 while (I != IE && J != JE) { 629 auto IE = ValueData.end(); 632 while (I != IE && I->Value < J->Value [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| CodeEmitterGen.cpp | 498 std::map<std::string, std::vector<std::string>>::iterator IE, EE; 499 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) { 500 const std::string &Case = IE->first; 501 std::vector<std::string> &InstList = IE->second;
|
| /src/usr.bin/tip/ |
| vars.c | 55 "eofr", &IE },
|
| remote.c | 54 &AT, &DV, &CM, &CU, &EL, &IE, &OE, &PN, &PR, &DI, 59 "at", "dv", "cm", "cu", "el", "ie", "oe", "pn", "pr",
|
| tip.h | 65 extern char *IE; /* EOT to expect on input */
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| NonNullParamChecker.cpp | 169 if (const auto *IE = dyn_cast<InitListExpr>(CE->getInitializer())) 170 ArgE = dyn_cast<Expr>(*(IE->begin()));
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/ |
| CoroEarly.cpp | 152 for (auto IB = inst_begin(F), IE = inst_end(F); IB != IE;) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| SIWholeQuadMode.cpp | 500 for (auto II = MBB.begin(), IE = MBB.end(); II != IE; ++II) { 1032 auto II = MBB.getFirstNonPHI(), IE = MBB.end(); 1033 while (II != IE) { 1243 auto II = MBB.getFirstNonPHI(), IE = MBB.end(); 1246 if (II != IE && II->getOpcode() == AMDGPU::COPY) 1252 MachineBasicBlock::iterator FirstWQM = IE; 1258 MachineBasicBlock::iterator FirstStrict = IE; 1268 if (FirstWQM == IE) 1271 if (FirstStrict == IE) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| SMTConstraintManager.h | 311 auto I = CZ.begin(), IE = CZ.end(); 314 if (I != IE) { 318 while (I != IE) {
|
| /src/usr.sbin/makefs/cd9660/ |
| cd9660_eltorito.h | 130 boot_catalog_initial_entry IE;
|