Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
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()
Dguarded_pool_allocator.cpp71 State.MaxSimultaneousAllocations * State.maximumAllocationSize(); in init()
201 if (!isPowerOfTwo(Alignment) || Alignment > State.maximumAllocationSize() || in allocate()
202 Size > State.maximumAllocationSize()) in allocate()
206 if (BackingSize > State.maximumAllocationSize()) in allocate()
225 uintptr_t SlotEnd = State.slotToAddr(Index) + State.maximumAllocationSize(); in allocate()
307 State.maximumAllocationSize()); in deallocate()
Dcommon.h99 size_t maximumAllocationSize() const;
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
Dcombined.h202 GuardedAlloc.getAllocatorState()->maximumAllocationSize(); in initGwpAsan()