Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDriver.cpp555 auto StartPos = std::search(Data.begin(), Data.end(), in AnalyzeDictionary() local
558 if (StartPos == Data.end()) in AnalyzeDictionary()
562 while (StartPos != Data.end()) { in AnalyzeDictionary()
564 auto EndPos = StartPos + Dict[i].size(); in AnalyzeDictionary()
565 for (auto It = StartPos; It != EndPos; ++It) in AnalyzeDictionary()
568 StartPos = std::search(EndPos, Data.end(), in AnalyzeDictionary()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp790 uint64_t StartPos = 0; in isDenselyPacked() local
795 if (StartPos != Layout->getElementOffsetInBits(i)) in isDenselyPacked()
797 StartPos += DL.getTypeAllocSizeInBits(ElTy); in isDenselyPacked()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp1297 SequenceIter StartPos = SeqPos; in lookupAddressRangeImpl() local
1307 if (SeqPos == StartPos) in lookupAddressRangeImpl()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveInterval.h461 bool overlapsFrom(const LiveRange &Other, const_iterator StartPos) const;