Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
Dguarded_pool_allocator.cpp82 State.MaxSimultaneousAllocations * sizeof(*FreeSlots), PageSize); in init()
83 FreeSlots = in init()
139 if (FreeSlots) { in uninitTestOnly()
140 unmap(FreeSlots, in uninitTestOnly()
141 roundUpTo(State.MaxSimultaneousAllocations * sizeof(*FreeSlots), in uninitTestOnly()
143 FreeSlots = nullptr; in uninitTestOnly()
336 size_t SlotIndex = FreeSlots[ReservedIndex]; in reserveSlot()
337 FreeSlots[ReservedIndex] = FreeSlots[--FreeSlotsLength]; in reserveSlot()
343 FreeSlots[FreeSlotsLength++] = SlotIndex; in freeSlot()
Dguarded_pool_allocator.h212 size_t *FreeSlots = nullptr; variable