Home
last modified time | relevance | path

Searched refs:maximumAllocationSize (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dcommon.cpp75 size_t AllocatorState::maximumAllocationSize() const { return PageSize; } in maximumAllocationSize() function in gwp_asan::AllocatorState
78 return GuardedPagePool + (PageSize * (1 + N)) + (maximumAllocationSize() * N); in slotToAddr()
84 size_t PagesPerSlot = maximumAllocationSize() / PageSize; in isGuardPage()
91 (State->maximumAllocationSize() + State->PageSize); in addrToSlot()
H A Dguarded_pool_allocator.cpp88 State.MaxSimultaneousAllocations * State.maximumAllocationSize(); in init()
219 if (!isPowerOfTwo(Alignment) || Alignment > State.maximumAllocationSize() || in allocate()
220 Size > State.maximumAllocationSize()) in allocate()
224 if (BackingSize > State.maximumAllocationSize()) in allocate()
243 uintptr_t SlotEnd = State.slotToAddr(Index) + State.maximumAllocationSize(); in allocate()
369 State.maximumAllocationSize()); in deallocate()
H A Dcommon.h127 size_t maximumAllocationSize() const;
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h227 GuardedAlloc.getAllocatorState()->maximumAllocationSize(); in initGwpAsan()