Searched refs:max_redzone (Results 1 - 5 of 5) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_flags.cc143 CHECK_GE(f->max_redzone, f->redzone);
144 CHECK_LE(f->max_redzone, 2048);
146 CHECK(IsPowerOfTwo(f->max_redzone));
H A Dasan_activation.cc79 "quarantine_size_mb %d, max_redzone %d, poison_heap %d, "
82 allocator_options.quarantine_size_mb, allocator_options.max_redzone,
110 disabled.max_redzone = 16;
H A Dasan_allocator.cc211 max_redzone = f->max_redzone;
219 f->max_redzone = max_redzone;
238 atomic_uint16_t max_redzone; member in struct:__asan::Allocator
248 CHECK_GE(options.max_redzone, options.min_redzone);
249 CHECK_LE(options.max_redzone, 2048);
251 CHECK(IsPowerOfTwo(options.max_redzone));
261 atomic_store(&max_redzone, options.max_redzone, memory_order_releas
[all...]
H A Dasan_allocator.h37 u16 max_redzone; member in struct:__asan::AllocatorOptions
H A Dasan_rtl.cc389 Printf("max_redzone=%zu\n", (uptr)flags()->max_redzone);

Completed in 636 milliseconds