Searched refs:max_malloc_size (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_allocator.cpp39 static uptr max_malloc_size; member in namespace:__lsan
46 max_malloc_size = Min(common_flags()->max_allocation_size_mb << 20,
49 max_malloc_size = kMaxAllowedMallocSize;
82 ReportAllocationSizeTooBig(size, max_malloc_size, &stack);
89 if (size > max_malloc_size)
127 if (new_size > max_malloc_size) {
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp118 static uptr max_malloc_size; member in namespace:__msan
124 max_malloc_size = Min(common_flags()->max_allocation_size_mb << 20,
127 max_malloc_size = kMaxAllowedMallocSize;
142 if (size > max_malloc_size) {
147 ReportAllocationSizeTooBig(size, max_malloc_size, stack);

Completed in 37 milliseconds