Home
last modified time | relevance | path

Searched refs:RStart (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dpath_parser.h124 const PosPtr RStart = getCurrentTokenStartPos() - 1; in decrement() local
125 if (RStart == REnd) // we're decrementing the begin in decrement()
131 if (PosPtr SepEnd = consumeAllSeparators(RStart, REnd)) { in decrement()
136 return makeState(PS_InRootDir, RStart, RStart + 1); in decrement()
139 PosPtr TkStart = consumeRootName(RStart, REnd); in decrement()
142 TkStart = consumeName(RStart, REnd); in decrement()
147 return makeState(PS_InFilenames, consumeName(RStart, REnd) + 1, RStart + 1); in decrement()
149 PosPtr SepEnd = consumeAllSeparators(RStart, REnd); in decrement()
151 return makeState(PS_InRootDir, Path.data(), RStart + 1); in decrement()
155 return makeState(PS_InRootDir, SepEnd + 1, RStart + 1); in decrement()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDifferenceEngine.cpp804 BasicBlock::const_iterator RStart) { in runBlockDiff() argument
806 BasicBlock::const_iterator RE = RStart->getParent()->end(); in runBlockDiff()
829 for (BasicBlock::const_iterator RI = RStart; RI != RE; ++RI) { in runBlockDiff()
861 BasicBlock::const_iterator LI = LStart, RI = RStart; in runBlockDiff()
918 const Instruction *RTerm = RStart->getParent()->getTerminator(); in runBlockDiff()
936 if (I == RStart->getParent()->begin()) return; in runBlockDiff()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp1197 SlotIndex RStart = LIS.getInstructionIndex(*Range.first); in computeIntervals() local
1203 RStart = LIS.getSlotIndexes()->getIndexBefore(*Range.first); in computeIntervals()
1219 if (RStart < IStop) in computeIntervals()
1220 I.insert(RStart, IStop, DbgValue); in computeIntervals()
1224 I.advanceTo(RStart); in computeIntervals()
1228 if (I.start() < RStart) { in computeIntervals()
1230 I.setStartUnchecked(RStart); in computeIntervals()
1232 trimmedDefs.insert(RStart); in computeIntervals()