OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ASAN_LOW_MEMORY
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/lib/asan/
asan_internal.h
86
#ifndef
ASAN_LOW_MEMORY
88
# define
ASAN_LOW_MEMORY
1
90
# define
ASAN_LOW_MEMORY
0
asan_rtl.cc
138
f->quarantine_size = (
ASAN_LOW_MEMORY
) ? 1UL << 26 : 1UL << 28;
141
f->redzone = ASAN_ALLOCATOR_VERSION == 2 ? 16 : (
ASAN_LOW_MEMORY
) ? 64 : 128;
asan_allocator.cc
48
static const uptr kMinMmapSize = (
ASAN_LOW_MEMORY
) ? 4UL << 17 : 4UL << 20;
50
(
ASAN_LOW_MEMORY
) ? 1 << 15 : 1 << 17;
/external/compiler-rt/lib/asan/tests/
asan_noinst_test.cc
82
MallocStress(
ASAN_LOW_MEMORY
? 300000 : 1000000);
87
const int kNumIterations = (
ASAN_LOW_MEMORY
) ? 10000 : 100000;
504
if (SANITIZER_WORDSIZE == 64 && !
ASAN_LOW_MEMORY
) {
833
(SANITIZER_WORDSIZE <= 32 ||
ASAN_LOW_MEMORY
) ? 1 << 10 : 1 << 14;
Completed in 71 milliseconds