Home
last modified time | relevance | path

Searched refs:StartPos (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp91 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 DLiveInterval.cpp405 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 DFuzzerDriver.cpp488 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 DDependencyAnalysis.cpp215 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 DDwarfLinkerForBinary.cpp620 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 DDwarfLinkerForBinary.h94 getRelocations(const std::vector<ValidReloc> &Relocs, uint64_t StartPos,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp791 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 DFileCheck.cpp2404 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 DDWARFDebugLine.cpp1297 SequenceIter StartPos = SeqPos; in lookupAddressRangeImpl() local
1307 if (SeqPos == StartPos) in lookupAddressRangeImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DLiveInterval.h461 bool overlapsFrom(const LiveRange &Other, const_iterator StartPos) const;