Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDLiveDebugVariables.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-13-stable/contrib/llvm-project/clang/lib/Tooling/Core/
HDReplacement.cpp201 unsigned PrevEnd = Prev.getOffset() + Prev.getLength(); in getCanonicalReplacements() local
202 if (PrevEnd < R.getOffset()) { in getCanonicalReplacements()
205 assert(PrevEnd == R.getOffset() && in getCanonicalReplacements()
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
HDcombined.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()