Searched refs:RStart (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | path_parser.h | 124 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() 133 return makeState(PS_InRootDir, Path.data(), RStart + 1); in decrement() 136 return makeState(PS_InRootDir, RStart, RStart + 1); in decrement() 137 return makeState(PS_InTrailingSep, SepEnd + 1, RStart + 1); in decrement() 139 PosPtr TkStart = consumeRootName(RStart, REnd); in decrement() 141 return makeState(PS_InRootName, TkStart + 1, RStart + 1); in decrement() 142 TkStart = consumeName(RStart, REnd); in decrement() 143 return makeState(PS_InFilenames, TkStart + 1, RStart + 1); in decrement() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/ |
H A D | DifferenceEngine.cpp | 798 BasicBlock::const_iterator RStart) { in runBlockDiff() argument 800 BasicBlock::const_iterator RE = RStart->getParent()->end(); in runBlockDiff() 823 for (BasicBlock::const_iterator RI = RStart; RI != RE; ++RI) { in runBlockDiff() 855 BasicBlock::const_iterator LI = LStart, RI = RStart; in runBlockDiff() 912 const Instruction *RTerm = RStart->getParent()->getTerminator(); in runBlockDiff() 930 if (I == RStart->getParent()->begin()) return; in runBlockDiff()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | LiveDebugVariables.cpp | 1197 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()
|