Home
last modified time | relevance | path

Searched refs:max_redzone (Results 1 – 7 of 7) sorted by relevance

/external/compiler-rt/lib/asan/
Dasan_allocator.cc211 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()
Dasan_flags.cc143 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()
Dasan_activation.cc83 allocator_options.quarantine_size_mb, allocator_options.max_redzone, in Print()
111 disabled.max_redzone = 16; in AsanDeactivate()
Dasan_activation_flags.inc25 ASAN_ACTIVATION_FLAG(int, max_redzone)
Dasan_allocator.h37 u16 max_redzone; member
Dasan_flags.inc29 ASAN_FLAG(int, max_redzone, 2048,
Dasan_rtl.cc389 Printf("max_redzone=%zu\n", (uptr)flags()->max_redzone); in PrintAddressSpaceLayout()