HomeSort by relevance Sort by last modified time
    Searched refs:PoisonShadow (Results 1 - 7 of 7) sorted by null

  /external/compiler-rt/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) {
297 PoisonShadow(addr, aligned_size,
370 PoisonShadow(a, b1 - a, 0);
371 PoisonShadow(b2, c - b2, kAsanContiguousContainerOOBMagic);
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_allocator.cc 141 PoisonShadow(m->Beg(),
177 PoisonShadow(p, size, kAsanHeapLeftRedzoneMagic);
184 PoisonShadow(p, size, 0);
385 PoisonShadow((uptr)allocated, allocated_size, kAsanHeapLeftRedzoneMagic);
428 PoisonShadow(user_beg, size_rounded_down_to_granularity, 0);
489 PoisonShadow(m->Beg(),
asan_thread.cc 277 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0);
279 PoisonShadow(tls_begin_, tls_end_ - tls_begin_, 0);
asan_rtl.cc 107 PoisonShadow(ptr, size, kAsanInternalHeapMagic);
630 PoisonShadow(bottom, top - bottom, 0);
asan_interceptors.cc 338 PoisonShadow(bottom, ssize, 0);

Completed in 332 milliseconds