Searched refs:StartPos (Results 1 – 10 of 10) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/ |
H A D | AtomicChange.cpp | 91 auto StartPos = Code.rfind('\n', Start); in violatesColumnLimit() local 92 StartPos = (StartPos == llvm::StringRef::npos) ? 0 : StartPos + 1; in violatesColumnLimit() 99 Code.substr(StartPos, EndPos - StartPos).split(Lines, '\n'); in violatesColumnLimit()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | LiveInterval.cpp | 405 const_iterator StartPos) const { in overlapsFrom() 409 const_iterator j = StartPos; in overlapsFrom() 412 assert((StartPos->start <= i->start || StartPos == other.begin()) && in overlapsFrom() 413 StartPos != other.end() && "Bogus start position hint!"); in overlapsFrom() 419 ++StartPos; in overlapsFrom() 420 if (StartPos != other.end() && StartPos->start <= i->start) { in overlapsFrom() 421 assert(StartPos < other.end() && i < end()); in overlapsFrom()
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
H A D | FuzzerDriver.cpp | 488 auto StartPos = std::search(Data.begin(), Data.end(), in AnalyzeDictionary() local 491 if (StartPos == Data.end()) in AnalyzeDictionary() 495 while (StartPos != Data.end()) { in AnalyzeDictionary() 497 auto EndPos = StartPos + Dict[i].size(); in AnalyzeDictionary() 498 for (auto It = StartPos; It != EndPos; ++It) in AnalyzeDictionary() 501 StartPos = std::search(EndPos, Data.end(), in AnalyzeDictionary()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/ |
H A D | DependencyAnalysis.cpp | 215 BasicBlock::iterator StartPos = StartInst->getIterator(); in findDependencies() local 219 Worklist.push_back(std::make_pair(StartBB, StartPos)); in findDependencies()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
H A D | DwarfLinkerForBinary.cpp | 620 const std::vector<ValidReloc> &Relocs, uint64_t StartPos, uint64_t EndPos) { in getRelocations() argument 623 auto CurReloc = partition_point(Relocs, [StartPos](const ValidReloc &Reloc) { in getRelocations() 624 return Reloc.Offset < StartPos; in getRelocations() 627 while (CurReloc != Relocs.end() && CurReloc->Offset >= StartPos && in getRelocations()
|
H A D | DwarfLinkerForBinary.h | 94 getRelocations(const std::vector<ValidReloc> &Relocs, uint64_t StartPos,
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
H A D | ArgumentPromotion.cpp | 791 uint64_t StartPos = 0; in isDenselyPacked() local 796 if (StartPos != Layout->getElementOffsetInBits(i)) in isDenselyPacked() 798 StartPos += DL.getTypeAllocSizeInBits(ElTy); in isDenselyPacked()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/ |
H A D | FileCheck.cpp | 2404 size_t StartPos = 0; in CheckDag() local 2432 size_t MatchLen = 0, MatchPos = StartPos; in CheckDag() 2517 Buffer.slice(StartPos, MatchRanges.begin()->Pos); in CheckDag() 2525 StartPos = MatchRanges.rbegin()->End; in CheckDag() 2531 return StartPos; in CheckDag()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugLine.cpp | 1297 SequenceIter StartPos = SeqPos; in lookupAddressRangeImpl() local 1307 if (SeqPos == StartPos) in lookupAddressRangeImpl()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | LiveInterval.h | 461 bool overlapsFrom(const LiveRange &Other, const_iterator StartPos) const;
|