HomeSort by relevance Sort by last modified time
    Searched refs:max_redzone (Results 1 - 5 of 5) sorted by null

  /external/compiler-rt/lib/asan/
asan_flags.cc 143 CHECK_GE(f->max_redzone, f->redzone);
144 CHECK_LE(f->max_redzone, 2048);
146 CHECK(IsPowerOfTwo(f->max_redzone));
asan_activation.cc 80 "quarantine_size_mb %d, max_redzone %d, poison_heap %d, "
83 allocator_options.quarantine_size_mb, allocator_options.max_redzone,
111 disabled.max_redzone = 16;
asan_allocator.cc 211 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_release)
    [all...]
asan_allocator.h 37 u16 max_redzone; member in struct:__asan::AllocatorOptions
asan_rtl.cc 389 Printf("max_redzone=%zu\n", (uptr)flags()->max_redzone);

Completed in 88 milliseconds