HomeSort by: relevance | last modified time | path
    Searched defs:max_user_defined_malloc_size (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_mman.cpp 114 static uptr max_user_defined_malloc_size; member in namespace:__tsan
119 max_user_defined_malloc_size = common_flags()->max_allocation_size_mb
161 sz > max_user_defined_malloc_size) {
165 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size);
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_mman.cpp 137 static uptr max_user_defined_malloc_size; member in namespace:__tsan
142 max_user_defined_malloc_size = common_flags()->max_allocation_size_mb
184 sz > max_user_defined_malloc_size) {
188 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size);
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_allocator.cpp 360 uptr max_user_defined_malloc_size; member in struct:__asan::Allocator
394 max_user_defined_malloc_size = common_flags()->max_allocation_size_mb
567 size > max_user_defined_malloc_size) {
574 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size);
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_allocator.cpp 307 uptr max_user_defined_malloc_size; member in struct:__asan::Allocator
342 max_user_defined_malloc_size = common_flags()->max_allocation_size_mb
521 size > max_user_defined_malloc_size) {
528 Min(kMaxAllowedMallocSize, max_user_defined_malloc_size);

Completed in 21 milliseconds