Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_mman.cpp128 static uptr max_user_defined_malloc_size; variable
133 max_user_defined_malloc_size = common_flags()->max_allocation_size_mb in InitializeAllocator()
175 sz > max_user_defined_malloc_size) { in user_alloc_internal()
179 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size); in user_alloc_internal()
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_mman.cpp134 static uptr max_user_defined_malloc_size; variable
139 max_user_defined_malloc_size = common_flags()->max_allocation_size_mb in InitializeAllocator()
181 sz > max_user_defined_malloc_size) { in user_alloc_internal()
185 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size); in user_alloc_internal()
/llvm-project-15.0.7/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp256 uptr max_user_defined_malloc_size; member
333 max_user_defined_malloc_size = common_flags()->max_allocation_size_mb in InitLinkerInitialized()
369 size > max_user_defined_malloc_size) { in Allocate()
375 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size); in Allocate()
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_allocator.cpp306 uptr max_user_defined_malloc_size; member
340 max_user_defined_malloc_size = common_flags()->max_allocation_size_mb in InitLinkerInitialized()
511 size > max_user_defined_malloc_size) { in Allocate()
518 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size); in Allocate()