HomeSort by: relevance | last modified time | path
    Searched defs:max_redzone (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.h 38 u16 max_redzone; member in struct:__asan::AllocatorOptions
asan_allocator.cc 224 max_redzone = f->max_redzone;
234 f->max_redzone = max_redzone;
254 atomic_uint16_t max_redzone; member in struct:__asan::Allocator
264 CHECK_GE(options.max_redzone, options.min_redzone);
265 CHECK_LE(options.max_redzone, 2048);
267 CHECK(IsPowerOfTwo(options.max_redzone));
277 atomic_store(&max_redzone, options.max_redzone, memory_order_release)
    [all...]

Completed in 36 milliseconds