Searched refs:maximumAllocationSize (Results 1 - 6 of 6) sorted by relevance

/openbsd-current/gnu/llvm/compiler-rt/lib/gwp_asan/
H A Dcommon.cpp75 size_t AllocatorState::maximumAllocationSize() const { return PageSize; } function in class:gwp_asan::AllocatorState
78 return GuardedPagePool + (PageSize * (1 + N)) + (maximumAllocationSize() * N);
84 size_t PagesPerSlot = maximumAllocationSize() / PageSize;
91 (State->maximumAllocationSize() + State->PageSize);
H A Dguarded_pool_allocator.cpp78 // + MaxSimultaneousAllocations * maximumAllocationSize (N pages per slot)
86 State.MaxSimultaneousAllocations * State.maximumAllocationSize();
216 if (!isPowerOfTwo(Alignment) || Alignment > State.maximumAllocationSize() ||
217 Size > State.maximumAllocationSize())
221 if (BackingSize > State.maximumAllocationSize())
240 uintptr_t SlotEnd = State.slotToAddr(Index) + State.maximumAllocationSize();
366 State.maximumAllocationSize());
H A Dcommon.h127 size_t maximumAllocationSize() const;
/openbsd-current/gnu/llvm/compiler-rt/lib/gwp_asan/tests/
H A Dbasic.cpp27 std::size_t MaxAllocSize = GPA.getAllocatorState()->maximumAllocationSize();
41 GPA.allocate(GPA.getAllocatorState()->maximumAllocationSize() + 1));
H A Dthread_contention.cpp27 GPA->allocate(GPA->getAllocatorState()->maximumAllocationSize()));
/openbsd-current/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dcombined.h210 GuardedAlloc.getAllocatorState()->maximumAllocationSize();

Completed in 120 milliseconds