Searched refs:max_redzone (Results 1 – 13 of 13) sorted by relevance
/external/compiler-rt/lib/asan/ |
D | asan_flags.cc | 143 CHECK_GE(f->max_redzone, f->redzone); in InitializeFlags() 144 CHECK_LE(f->max_redzone, 2048); in InitializeFlags() 146 CHECK(IsPowerOfTwo(f->max_redzone)); in InitializeFlags()
|
D | asan_allocator.cc | 211 max_redzone = f->max_redzone; in SetFrom() 219 f->max_redzone = max_redzone; in CopyTo() 238 atomic_uint16_t max_redzone; member 248 CHECK_GE(options.max_redzone, options.min_redzone); in CheckOptions() 249 CHECK_LE(options.max_redzone, 2048); in CheckOptions() 251 CHECK(IsPowerOfTwo(options.max_redzone)); in CheckOptions() 261 atomic_store(&max_redzone, options.max_redzone, memory_order_release); in SharedInitCode() 277 options->max_redzone = atomic_load(&max_redzone, memory_order_acquire); in GetOptions() 294 u32 max_rz = atomic_load(&max_redzone, memory_order_acquire); in ComputeRZLog()
|
D | asan_activation.cc | 83 allocator_options.quarantine_size_mb, allocator_options.max_redzone, in Print() 111 disabled.max_redzone = 16; in AsanDeactivate()
|
D | asan_activation_flags.inc | 25 ASAN_ACTIVATION_FLAG(int, max_redzone)
|
D | asan_allocator.h | 37 u16 max_redzone; member
|
D | asan_flags.inc | 29 ASAN_FLAG(int, max_redzone, 2048,
|
D | asan_rtl.cc | 389 Printf("max_redzone=%zu\n", (uptr)flags()->max_redzone); in PrintAddressSpaceLayout()
|
/external/llvm-project/compiler-rt/lib/asan/ |
D | asan_flags.cpp | 154 CHECK_GE(f->max_redzone, f->redzone); in InitializeFlags() 155 CHECK_LE(f->max_redzone, 2048); in InitializeFlags() 157 CHECK(IsPowerOfTwo(f->max_redzone)); in InitializeFlags()
|
D | asan_allocator.cpp | 282 max_redzone = f->max_redzone; in SetFrom() 292 f->max_redzone = max_redzone; in CopyTo() 313 atomic_uint16_t max_redzone; member 323 CHECK_GE(options.max_redzone, options.min_redzone); in CheckOptions() 324 CHECK_LE(options.max_redzone, 2048); in CheckOptions() 326 CHECK(IsPowerOfTwo(options.max_redzone)); in CheckOptions() 336 atomic_store(&max_redzone, options.max_redzone, memory_order_release); in SharedInitCode() 404 options->max_redzone = atomic_load(&max_redzone, memory_order_acquire); in GetOptions() 423 u32 max_log = RZSize2Log(atomic_load(&max_redzone, memory_order_acquire)); in ComputeRZLog()
|
D | asan_activation.cpp | 87 allocator_options.max_redzone, poison_heap, malloc_context_size, in Print() 116 disabled.max_redzone = disabled.min_redzone; in AsanDeactivate()
|
D | asan_activation_flags.inc | 24 ASAN_ACTIVATION_FLAG(int, max_redzone)
|
D | asan_allocator.h | 38 u16 max_redzone; member
|
D | asan_rtl.cpp | 369 Printf("max_redzone=%zu\n", (uptr)flags()->max_redzone); in PrintAddressSpaceLayout()
|