reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/asan/asan_allocator.cpp
  452       allocated = allocator.Allocate(cache, needed_size, 8);
  456       allocated = allocator.Allocate(cache, needed_size, 8);
  458     if (UNLIKELY(!allocated)) {
  465     if (*(u8 *)MEM_TO_SHADOW((uptr)allocated) == 0 && CanPoisonMemory()) {
  470       uptr allocated_size = allocator.GetActuallyAllocatedSize(allocated);
  471       PoisonShadow((uptr)allocated, allocated_size, kAsanHeapLeftRedzoneMagic);
  474     uptr alloc_beg = reinterpret_cast<uptr>(allocated);
  499       CHECK(allocator.FromPrimary(allocated));
  501       CHECK(!allocator.FromPrimary(allocated));
  503       uptr *meta = reinterpret_cast<uptr *>(allocator.GetMetaData(allocated));