Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_mman.cpp114 static uptr max_user_defined_malloc_size; variable
119 max_user_defined_malloc_size = common_flags()->max_allocation_size_mb in InitializeAllocator()
161 sz > max_user_defined_malloc_size) { in user_alloc_internal()
165 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size); in user_alloc_internal()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_allocator.cpp307 uptr max_user_defined_malloc_size; member
342 max_user_defined_malloc_size = common_flags()->max_allocation_size_mb in InitLinkerInitialized()
521 size > max_user_defined_malloc_size) { in Allocate()
528 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size); in Allocate()