Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp1200 SlotIndex PrevEnd; in computeIntervals() local
1218 if (PrevEnd && I.start() < PrevEnd) { in computeIntervals()
1224 I.setStopUnchecked(PrevEnd); in computeIntervals()
1256 PrevEnd = REnd; in computeIntervals()
1260 if (PrevEnd && I.start() < PrevEnd) in computeIntervals()
1261 I.setStopUnchecked(PrevEnd); in computeIntervals()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Core/
H A DReplacement.cpp200 unsigned PrevEnd = Prev.getOffset() + Prev.getLength(); in getCanonicalReplacements() local
201 if (PrevEnd < R.getOffset()) { in getCanonicalReplacements()
204 assert(PrevEnd == R.getOffset() && in getCanonicalReplacements()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h1189 uptr PrevEnd = TaggedUserPtr + Header.SizeOrUnusedBytes; in initChunkWithMemoryTagging() local
1191 if (NextPage < PrevEnd && loadTag(NextPage) != NextPage) in initChunkWithMemoryTagging()
1192 PrevEnd = NextPage; in initChunkWithMemoryTagging()
1194 resizeTaggedChunk(PrevEnd, TaggedUserPtr + Size, Size, BlockEnd); in initChunkWithMemoryTagging()
1203 Min(Size, roundUp(PrevEnd - TaggedUserPtr, in initChunkWithMemoryTagging()