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

/freebsd-13-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-13-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp132 static uptr max_malloc_size; member in namespace:__msan
138 max_malloc_size = Min(common_flags()->max_allocation_size_mb << 20,
141 max_malloc_size = kMaxAllowedMallocSize;
156 if (size > max_malloc_size) {
161 ReportAllocationSizeTooBig(size, max_malloc_size, stack);

Completed in 289 milliseconds