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

  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_poisoning.h 27 void PoisonShadow(uptr addr, uptr size, u8 value);
36 // Fast versions of PoisonShadow and PoisonShadowPartialRightRedzone that
asan_poisoning.cc 34 void PoisonShadow(uptr addr, uptr size, u8 value) {
301 PoisonShadow(addr, aligned_size,
398 PoisonShadow(a, b1 - a, 0);
399 PoisonShadow(b2, c - b2, kAsanContiguousContainerOOBMagic);
asan_rtems.cc 193 PoisonShadow(thread->stack_bottom(), thread->stack_size(), 0);
asan_allocator.cc 147 PoisonShadow(m->Beg(),
189 PoisonShadow(p, size, kAsanHeapLeftRedzoneMagic);
196 PoisonShadow(p, size, 0);
305 PoisonShadow(chunk, beg - chunk, kAsanHeapLeftRedzoneMagic);
313 PoisonShadow(chunk, allocated_size, kAsanHeapLeftRedzoneMagic);
472 PoisonShadow((uptr)allocated, allocated_size, kAsanHeapLeftRedzoneMagic);
516 PoisonShadow(user_beg, size_rounded_down_to_granularity, 0);
588 PoisonShadow(m->Beg(),
asan_fake_stack.cc 29 // For small size classes inline PoisonShadow for better performance.
41 PoisonShadow(ptr, size, static_cast<u8>(magic));
81 PoisonShadow(reinterpret_cast<uptr>(this), RequiredSize(stack_size_log()),
asan_globals.cc 395 PoisonShadow(reinterpret_cast<uptr>(globals), n * sizeof(__asan_global),
414 PoisonShadow(reinterpret_cast<uptr>(globals), n * sizeof(__asan_global), 0);
asan_rtl.cc 96 PoisonShadow(ptr, size, kAsanInternalHeapMagic);
585 PoisonShadow(bottom, top - bottom, 0);
asan_thread.cc 310 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
asan_interceptors.cc 261 PoisonShadow(bottom, ssize, 0);

Completed in 21 milliseconds