HomeSort by relevance Sort by last modified time
    Searched refs:max_malloc_fill_size (Results 1 - 3 of 3) sorted by null

  /external/compiler-rt/lib/asan/
asan_flags.h 45 int max_malloc_fill_size, malloc_fill_byte; member in struct:__asan::Flags
asan_rtl.cc 143 ParseFlag(str, &f->max_malloc_fill_size, "max_malloc_fill_size",
144 "ASan allocator flag. max_malloc_fill_size is the maximal amount of "
256 f->max_malloc_fill_size = 0x1000; // By default, fill only the first 4K.
asan_allocator2.cc 397 if (can_fill && fl.max_malloc_fill_size) {
398 uptr fill_size = Min(size, (uptr)fl.max_malloc_fill_size);

Completed in 754 milliseconds