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

  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_flags.cc 159 CHECK_GE(f->max_redzone, f->redzone);
160 CHECK_LE(f->max_redzone, 2048);
162 CHECK(IsPowerOfTwo(f->max_redzone));
asan_activation.cc 83 "max_redzone %d, poison_heap %d, malloc_context_size %d, "
88 allocator_options.max_redzone, poison_heap, malloc_context_size,
117 disabled.max_redzone = disabled.min_redzone;
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...]
asan_allocator.h 38 u16 max_redzone; member in struct:__asan::AllocatorOptions
asan_rtl.cc 369 Printf("max_redzone=%zu\n", (uptr)flags()->max_redzone);

Completed in 15 milliseconds