| /minix3/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | RegisterScavenging.h | 132 IE = Scavenged.end(); I != IE; ++I) in isScavengingFrameIndex() local 142 IE = Scavenged.end(); I != IE; ++I) in getScavengingFrameIndices() local
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineVectorOps.cpp | 247 } else if (InsertElementInst *IE = dyn_cast<InsertElementInst>(I)) { in visitExtractElementInst() local 249 if (IE->getOperand(2) == EI.getOperand(1)) in visitExtractElementInst() 250 return ReplaceInstUsesWith(EI, IE->getOperand(1)); in visitExtractElementInst() 253 if (isa<Constant>(IE->getOperand(2)) && isa<Constant>(EI.getOperand(1))) { in visitExtractElementInst() 255 EI.setOperand(0, IE->getOperand(0)); in visitExtractElementInst() 528 Instruction *InstCombiner::visitInsertElementInst(InsertElementInst &IE) { in visitInsertElementInst() argument 529 Value *VecOp = IE.getOperand(0); in visitInsertElementInst() 530 Value *ScalarOp = IE.getOperand(1); in visitInsertElementInst() 531 Value *IdxOp = IE.getOperand(2); in visitInsertElementInst() 535 ReplaceInstUsesWith(IE, VecOp); in visitInsertElementInst() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/lib/ProfileData/ |
| H A D | SampleProf.cpp | 24 std::string message(int IE) const override { in message() 25 sampleprof_error E = static_cast<sampleprof_error>(IE); in message()
|
| H A D | InstrProf.cpp | 24 std::string message(int IE) const override { in message() 25 instrprof_error E = static_cast<instrprof_error>(IE); in message()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | OcamlGCPrinter.cpp | 116 IE = Info.funcinfo_end(); I != IE; ++I) { in finishAssembly() local 134 IE = Info.funcinfo_end(); I != IE; ++I) { in finishAssembly() local
|
| H A D | ErlangGCPrinter.cpp | 63 IE = Info.funcinfo_end(); in finishAssembly() local 64 FI != IE; ++FI) { in finishAssembly()
|
| /minix3/external/bsd/llvm/dist/llvm/utils/TableGen/ |
| H A D | CodeEmitterGen.cpp | 291 std::map<std::string, std::vector<std::string> >::iterator IE, EE; in run() local 292 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) { in run() 293 const std::string &Case = IE->first; in run() 294 std::vector<std::string> &InstList = IE->second; in run()
|
| /minix3/minix/drivers/storage/mmc/ |
| H A D | omap_mmc.h | 45 vir_bytes IE; member 72 .IE = 0x234, 97 .IE = 0x134,
|
| H A D | mmchost_mmchs.c | 248 mmc_set32(mmchs->regs->IE, MMCHS_SD_IE_CC_ENABLE, in mmchs_init() 251 mmc_set32(mmchs->regs->IE, MMCHS_SD_IE_TC_ENABLE, in mmchs_init() 255 mmc_set32(mmchs->regs->IE, MMCHS_SD_IE_ERROR_MASK, 0xffffffffu); in mmchs_init() 606 mmc_set32(mmchs->regs->IE, in mmc_send_cmd() 610 mmc_set32(mmchs->regs->IE, in mmc_send_cmd() 638 mmc_set32(mmchs->regs->IE, in mmc_send_cmd() 651 mmc_set32(mmchs->regs->IE, in mmc_send_cmd()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCCTRLoops.cpp | 444 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in convertToCTRLoop() local 445 I != IE; ++I) in convertToCTRLoop() 456 IE = ExitingBlocks.end(); I != IE; ++I) { in convertToCTRLoop() local 606 for (MachineBasicBlock::iterator IE = MBB->begin();; --I) { in verifyCTRBranch() local 623 if (I == IE) in verifyCTRBranch() 661 for (MachineFunction::iterator I = MF.begin(), IE = MF.end(); in runOnMachineFunction() local 662 I != IE; ++I) { in runOnMachineFunction()
|
| /minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngineC.cpp | 585 void ExprEngine::VisitInitListExpr(const InitListExpr *IE, in VisitInitListExpr() argument 592 QualType T = getContext().getCanonicalType(IE->getType()); in VisitInitListExpr() 593 unsigned NumInitElements = IE->getNumInits(); in VisitInitListExpr() 595 if (!IE->isGLValue() && in VisitInitListExpr() 604 B.generateNode(IE, Pred, state->BindExpr(IE, LCtx, V)); in VisitInitListExpr() 608 for (InitListExpr::const_reverse_iterator it = IE->rbegin(), in VisitInitListExpr() 609 ei = IE->rend(); it != ei; ++it) { in VisitInitListExpr() 614 B.generateNode(IE, Pred, in VisitInitListExpr() 615 state->BindExpr(IE, LCtx, in VisitInitListExpr() 629 V = state->getSVal(IE->getInit(0), LCtx); in VisitInitListExpr() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXFavorNonGenericAddrSpaces.cpp | 180 for (BasicBlock::iterator I = B->begin(), IE = B->end(); I != IE; ++I) { in runOnFunction() local
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | PartiallyInlineLibCalls.cpp | 68 for (BasicBlock::iterator II = CurrBB->begin(), IE = CurrBB->end(); in runOnFunction() local 69 II != IE; ++II) { in runOnFunction()
|
| H A D | LoopRerollPass.cpp | 369 IE = Header->getFirstInsertionPt(); I != IE; ++I) { in collectPossibleIVs() local 442 IE = Header->getFirstInsertionPt(); I != IE; ++I) { in collectPossibleReductions() local 513 IE = Roots.end(); I != IE; ++I) in collectInLoopUserSet() local 1174 IE = PossibleIVs.end(); I != IE; ++I) in runOnLoop() local
|
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | ScopeInfo.cpp | 71 const ObjCIvarRefExpr *IE = cast<ObjCIvarRefExpr>(E); in getBaseInfo() local 72 D = IE->getDecl(); in getBaseInfo() 73 IsExact = IE->getBase()->isObjCSelfExpr(); in getBaseInfo()
|
| /minix3/share/i18n/csmapper/KOI/ |
| H A D | UCS%KOI8-E.src | 27 0x0404 = 0xB4 # CYRILLIC CAPITAL LETTER UKRAINIAN IE 42 0x0454 = 0xA4 # CYRILLIC SMALL LETTER UKRAINIAN IE
|
| H A D | KOI8-E%UCS.src | 25 0xA4 = 0x0454 # CYRILLIC SMALL LETTER UKRAINIAN IE 41 0xB4 = 0x0404 # CYRILLIC CAPITAL LETTER UKRAINIAN IE
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/ |
| H A D | RegisterScavenging.cpp | 41 IE = Scavenged.end(); I != IE; ++I) { in initRegState() local 183 IE = Scavenged.end(); I != IE; ++I) { in forward() local
|
| H A D | ScheduleDAGInstrs.cpp | 109 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end(); in getUnderlyingObjects() local 110 I != IE; ++I) { in getUnderlyingObjects() 162 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), IE = Objs.end(); in getUnderlyingObjectsForInstr() local 163 I != IE; ++I) { in getUnderlyingObjectsForInstr() 497 IE = Objs.end(); I != IE; ++I) { in isUnsafeMemoryObject() local 638 for (std::set<SUnit *>::iterator I = CheckList.begin(), IE = CheckList.end(); in adjustChainDeps() local 639 I != IE; ++I) { in adjustChainDeps() 952 MapVector<ValueType, std::vector<SUnit *> >::iterator IE = in buildSchedGraph() local 954 if (I != IE) { in buildSchedGraph() 1034 MapVector<ValueType, std::vector<SUnit *> >::iterator IE = in buildSchedGraph() local [all …]
|
| /minix3/crypto/external/bsd/heimdal/dist/tests/can/ |
| H A D | mit-pkinit-20070607.ca.crt | 19 qZsyGNfepscVe6mPz43NoNztf/1j+0QQcioHHHtAq/YFPBp1VdYsOsB+IE+g8RVi
|
| /minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NonNullParamChecker.cpp | 127 if (const InitListExpr *IE = in checkPreCall() local 129 ArgE = dyn_cast<Expr>(*(IE->begin())); in checkPreCall()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Support/ |
| H A D | SpecialCaseList.cpp | 138 IE = I->second.end(); in parse() local 139 II != IE; ++II) { in parse()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/IPO/ |
| H A D | ArgumentPromotion.cpp | 450 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end(); in isSafeToPromoteArgument() local 451 II != IE; ++II) in isSafeToPromoteArgument() 657 for (User::op_iterator II = UI->op_begin() + 1, IE = UI->op_end(); in DoPromotion() local 658 II != IE; ++II) in DoPromotion() 792 IE = SI->end(); II != IE; ++II) { in DoPromotion() local 955 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end(); in DoPromotion() local 956 II != IE; ++II) in DoPromotion()
|
| /minix3/external/bsd/llvm/dist/clang/test/Analysis/Inputs/ |
| H A D | system-header-simulator-cxx.h | 108 OutputIter copy(InputIter II, InputIter IE, OutputIter OI) { in copy() argument 109 while (II != IE) in copy()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMBaseInfo.h | 91 IE = 2, enumerator 113 case IE: return "ie"; in IModToString()
|