Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp228 static const uptr MaxAllowedMallocSize = member
328 if (UNLIKELY(Size >= MaxAllowedMallocSize) || in allocate()
329 UNLIKELY(AlignedSize >= MaxAllowedMallocSize)) { in allocate()
332 reportAllocationSizeTooBig(Size, AlignedSize, MaxAllowedMallocSize); in allocate()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcombined.h331 static_assert(MaxAllowedMallocSize < UINTPTR_MAX - MaxAlignment, "");
332 if (UNLIKELY(Size >= MaxAllowedMallocSize)) {
335 reportAllocationSizeTooBig(Size, NeededSize, MaxAllowedMallocSize);
566 if (UNLIKELY(NewSize >= MaxAllowedMallocSize)) {
569 reportAllocationSizeTooBig(NewSize, 0, MaxAllowedMallocSize);
957 static const uptr MaxAllowedMallocSize = variable