OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:max_malloc_fill_size
(Results
1 - 3
of
3
) sorted by null
/external/compiler-rt/lib/asan/
asan_flags.h
57
// ASan allocator flag.
max_malloc_fill_size
is the maximal amount of bytes
59
int
max_malloc_fill_size
, malloc_fill_byte;
member in struct:__asan::Flags
asan_rtl.cc
105
ParseFlag(str, &f->
max_malloc_fill_size
, "
max_malloc_fill_size
");
153
f->
max_malloc_fill_size
= 0x1000; // By default, fill only the first 4K.
asan_allocator2.cc
422
if (can_fill && fl.
max_malloc_fill_size
) {
423
uptr fill_size = Min(size, (uptr)fl.
max_malloc_fill_size
);
Completed in 23 milliseconds