Searched refs:min_redzone (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_activation.cpp115 disabled.min_redzone = Max(16, (int)SHADOW_GRANULARITY);
116 disabled.max_redzone = disabled.min_redzone;
H A Dasan_allocator.cpp222 min_redzone = f->redzone;
232 f->redzone = min_redzone;
253 atomic_uint16_t min_redzone; member in struct:__asan::Allocator
263 CHECK_GE(options.min_redzone, 16);
264 CHECK_GE(options.max_redzone, options.min_redzone);
266 CHECK(IsPowerOfTwo(options.min_redzone));
276 atomic_store(&min_redzone, options.min_redzone, memory_order_release);
341 options->min_redzone = atomic_load(&min_redzone, memory_order_acquir
[all...]
H A Dasan_allocator.h36 u16 min_redzone; member in struct:__asan::AllocatorOptions

Completed in 118 milliseconds