Searched refs:End (Results 201 - 225 of 238) sorted by relevance

12345678910

/freebsd-10.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp571 BasicBlock::const_iterator End,
576 for (BasicBlock::const_iterator I = Begin; I != End && !SDB->HasTailCall; ++I)
1028 BasicBlock::const_iterator const End = LLVMBB->end(); member in class:BasicBlock
1029 BasicBlock::const_iterator BI = End;
1072 unsigned NumFastIselRemaining = std::distance(Begin, End);
3187 // End of this scope, pop it and try the next child in the containing
570 SelectBasicBlock(BasicBlock::const_iterator Begin, BasicBlock::const_iterator End, bool &HadTailCall) argument
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp244 StringRef::size_type End = MacroBody.find_first_of("\n\r"); local
245 MacroBody = MacroBody.substr(0, End);
1282 const unsigned char *End = d + DataLen; local
1303 if (d != End) {
1318 assert(End == d && "Wrong data length in HeaderFileInfo deserialization");
1319 (void)End;
4165 ReadSourceLocation(M, PPOffs.End));
4312 if (SourceMgr.isBeforeInTranslationUnit(ReadSourceLocation(M, PPI->End),
4356 /// \brief Returns a pair of [Begin, End) indices of preallocated
6209 ASTIdentifierLookupTable::key_iterator End; member in class:clang::ASTIdentifierIterator
[all...]
H A DASTReaderStmt.cpp543 SourceLocation End = ReadSourceLocation(Record, Idx); local
546 E->setComponent(I, Node(Start, Record[Idx++], End));
550 E->setComponent(I, Node(Start, ReadDeclAs<FieldDecl>(Record, Idx), End));
557 End));
H A DASTWriterStmt.cpp1585 for (FunctionParmPackExpr::iterator I = E->begin(), End = E->end();
1586 I != End; ++I)
/freebsd-10.3-release/contrib/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp687 } // End anonymous namespace
848 StringRef::iterator End = std::find(String.begin() + i, String.end(),'}'); local
849 assert(End != String.end() && "Missing brace in operand reference!");
850 size_t EndPos = End - String.begin();
2888 OS << " const MatchEntry *Start, *End;\n";
2895 << "; End = array_endof(MatchTable" << VC << "); break;\n";
2900 OS << " std::equal_range(Start, End, Mnemonic, LessOpcode());\n";
2943 OS << " const MatchEntry *Start, *End;\n";
2950 << "; End = array_endof(MatchTable" << VC << "); break;\n";
2955 OS << " std::equal_range(Start, End, Mnemoni
[all...]
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp149 void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) { argument
151 for (;Begin != End; ++Begin) {
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclBase.h1639 decl_iterator (DeclContext::*End)() const>
H A DASTContext.h1517 UnresolvedSetIterator End) const;
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPreprocessor.h1258 SourceLocation &End);
/freebsd-10.3-release/contrib/llvm/lib/MC/
H A DMCAsmStreamer.cpp925 // Put a dummy non-null value in Frame.End to mark that this frame has been
927 Frame.End = (MCSymbol *) 1;
/freebsd-10.3-release/contrib/llvm/include/llvm/MC/
H A DMCAssembler.h804 MCSymbol *End; member in struct:llvm::DataRegionData
/freebsd-10.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp455 Value *End = ConstantInt::get(Idx->getType(), local
457 return new ICmpInst(ICmpInst::ICMP_ULT, Idx, End);
469 Value *End = ConstantInt::get(Idx->getType(), local
471 return new ICmpInst(ICmpInst::ICMP_UGT, Idx, End);
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp118 for (unsigned Idx = 0, End = A->getNumValues();
119 Idx < End; ++Idx) {
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp1330 for (FunctionParmPackExpr::iterator I = E->begin(), End = E->end();
1331 I != End; ++I) {
H A DSemaChecking.cpp2406 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1); local
2409 End = End.getLocWithOffset(1);
2411 return CharSourceRange::getCharRange(Start, End);
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGClass.cpp35 CastExpr::path_const_iterator End) {
40 for (CastExpr::path_const_iterator I = Start; I != End; ++I) {
32 ComputeNonVirtualBaseClassOffset(ASTContext &Context, const CXXRecordDecl *DerivedClass, CastExpr::path_const_iterator Start, CastExpr::path_const_iterator End) argument
H A DCGCall.cpp1428 llvm::Function::arg_iterator End = ExpandTypeFromArgs(Ty, LV, AI); local
1433 for (; AI != End; ++AI, ++Index)
/freebsd-10.3-release/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp6445 const SCEV *End = RHS;
6447 End = IsSigned ? getSMaxExpr(RHS, Start)
6450 const SCEV *BECount = computeBECount(getMinusSCEV(End, Start), Stride, false);
6462 // Although End can be a MAX expression we estimate MaxEnd considering only
6463 // the case End = RHS. This is safe because in the other case (End - Start)
6516 const SCEV *End = RHS;
6518 End = IsSigned ? getSMinExpr(RHS, Start)
6521 const SCEV *BECount = computeBECount(getMinusSCEV(Start, End), Stride, false);
6533 // Although End ca
[all...]
/freebsd-10.3-release/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.c2177 reply(211, "End");
/freebsd-10.3-release/sys/boot/pc98/cdboot/
H A Dcdboot.S645 ret # End of file, so not found
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DDecl.cpp3623 SourceLocation End = getLocation(); local
3625 End = Init->getLocEnd();
3626 return SourceRange(getLocation(), End);
H A DExprConstant.cpp756 // End the lifetime of the object.
1335 End = CD->bases_end(); I != End; ++I, ++BaseIndex) {
4917 End = CD->bases_end(); I != End; ++I, ++Index) {
4928 for (RecordDecl::field_iterator I = RD->field_begin(), End = RD->field_end();
4929 I != End; ++I) {
5158 // End pointer.
/freebsd-10.3-release/contrib/llvm/lib/IR/
H A DInstructions.cpp107 Use *End = Begin + N; local
108 (void) new(End) Use::UserRef(const_cast<PHINode*>(this), 1);
109 return Use::initTags(Begin, End);
H A DConstants.cpp726 static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) { argument
727 for (; Start != End; ++Start)
/freebsd-10.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp3184 const char *const *End = LibCalls + array_lengthof(LibCalls); local
3190 for (const char *const *I = LibCalls; I < End - 1; ++I)
3194 return std::binary_search(LibCalls, End, CallSym, Comp);

Completed in 511 milliseconds

12345678910