Searched refs:PoisonShadow (Results 1 - 8 of 8) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_poisoning.h23 void PoisonShadow(uptr addr, uptr size, u8 value);
32 // Fast versions of PoisonShadow and PoisonShadowPartialRightRedzone that
H A Dasan_poisoning.cc23 void PoisonShadow(uptr addr, uptr size, u8 value) { function in namespace:__asan
235 PoisonShadow(addr, aligned_size,
308 PoisonShadow(a, b1 - a, 0);
309 PoisonShadow(b2, c - b2, kAsanContiguousContainerOOBMagic);
H A Dasan_fake_stack.cc25 // For small size classes inline PoisonShadow for better performance.
34 PoisonShadow(ptr, size, static_cast<u8>(magic));
74 PoisonShadow(reinterpret_cast<uptr>(this), RequiredSize(stack_size_log()),
H A Dasan_thread.cc196 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
198 PoisonShadow(tls_begin_, tls_end_ - tls_begin_, 0);
H A Dasan_allocator2.cc35 PoisonShadow(p, size, kAsanHeapLeftRedzoneMagic);
42 PoisonShadow(p, size, 0);
242 PoisonShadow(m->Beg(),
338 PoisonShadow((uptr)allocated, allocated_size, kAsanHeapLeftRedzoneMagic);
380 PoisonShadow(user_beg, size_rounded_down_to_granularity, 0);
445 PoisonShadow(m->Beg(),
H A Dasan_rtl.cc354 PoisonShadow(ptr, size, kAsanInternalHeapMagic);
759 PoisonShadow(bottom, top - bottom, 0);
H A Dasan_interceptors.cc244 PoisonShadow(bottom, ssize, 0);
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc1296 static void PoisonShadow(uptr ptr, uptr size, u8 value) { function
1325 PoisonShadow((uptr)a, size, 0);
1330 PoisonShadow((uptr)a, size,
1336 PoisonShadow((uptr)a, size,
1342 PoisonShadow((uptr)a, size, 0);

Completed in 407 milliseconds