Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/compiler-rt/lib/gwp_asan/
Dguarded_pool_allocator.cpp97 State.MaxSimultaneousAllocations * sizeof(*FreeSlots), PageSize); in init()
98 FreeSlots = in init()
154 if (FreeSlots) { in uninitTestOnly()
155 unmap(FreeSlots, in uninitTestOnly()
156 roundUpTo(State.MaxSimultaneousAllocations * sizeof(*FreeSlots), in uninitTestOnly()
158 FreeSlots = nullptr; in uninitTestOnly()
417 if (FreeSlots[i] == Slot) { in postCrashReportRecoverableOnly()
418 FreeSlots[i] = FreeSlots[FreeSlotsLength - 1]; in postCrashReportRecoverableOnly()
451 size_t SlotIndex = FreeSlots[ReservedIndex]; in reserveSlot()
452 FreeSlots[ReservedIndex] = FreeSlots[--FreeSlotsLength]; in reserveSlot()
[all …]
Dguarded_pool_allocator.h213 size_t *FreeSlots = nullptr; variable