Home
last modified time | relevance | path

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

/src/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dguarded_pool_allocator.cpp99 State.MaxSimultaneousAllocations * sizeof(*FreeSlots), PageSize); in init()
100 FreeSlots = in init()
156 if (FreeSlots) { in uninitTestOnly()
157 unmap(FreeSlots, in uninitTestOnly()
158 roundUpTo(State.MaxSimultaneousAllocations * sizeof(*FreeSlots), in uninitTestOnly()
160 FreeSlots = nullptr; in uninitTestOnly()
420 if (FreeSlots[i] == Slot) { in postCrashReportRecoverableOnly()
421 FreeSlots[i] = FreeSlots[FreeSlotsLength - 1]; in postCrashReportRecoverableOnly()
454 size_t SlotIndex = FreeSlots[ReservedIndex]; in reserveSlot()
455 FreeSlots[ReservedIndex] = FreeSlots[--FreeSlotsLength]; in reserveSlot()
[all …]
H A Dguarded_pool_allocator.h222 size_t *FreeSlots = nullptr; variable