Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp1189 SlotIndex PrevEnd; in computeIntervals() local
1207 if (PrevEnd && I.start() < PrevEnd) { in computeIntervals()
1213 I.setStopUnchecked(PrevEnd); in computeIntervals()
1245 PrevEnd = REnd; in computeIntervals()
1249 if (PrevEnd && I.start() < PrevEnd) in computeIntervals()
1250 I.setStopUnchecked(PrevEnd); in computeIntervals()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h1178 uptr PrevEnd = TaggedUserPtr + Header.SizeOrUnusedBytes; in initChunkWithMemoryTagging() local
1180 if (NextPage < PrevEnd && loadTag(NextPage) != NextPage) in initChunkWithMemoryTagging()
1181 PrevEnd = NextPage; in initChunkWithMemoryTagging()
1183 resizeTaggedChunk(PrevEnd, TaggedUserPtr + Size, Size, BlockEnd); in initChunkWithMemoryTagging()
1192 Min(Size, roundUp(PrevEnd - TaggedUserPtr, in initChunkWithMemoryTagging()