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

Declarations

projects/compiler-rt/lib/scudo/scudo_allocator.h
  114 void scudoDeallocate(void *Ptr, uptr Size, uptr Alignment, AllocType Type);

References

projects/compiler-rt/lib/scudo/scudo_malloc.cpp
   24   scudoDeallocate(ptr, 0, 0, FromMalloc);
projects/compiler-rt/lib/scudo/scudo_new_delete.cpp
   74 { OPERATOR_DELETE_BODY(FromNew); }
   77 { OPERATOR_DELETE_BODY(FromNewArray); }
   80 { OPERATOR_DELETE_BODY(FromNew); }
   83 { OPERATOR_DELETE_BODY(FromNewArray); }
   86 { OPERATOR_DELETE_BODY_SIZE(FromNew); }
   89 { OPERATOR_DELETE_BODY_SIZE(FromNewArray); }
   92 { OPERATOR_DELETE_BODY_ALIGN(FromNew); }
   95 { OPERATOR_DELETE_BODY_ALIGN(FromNewArray); }
   98 { OPERATOR_DELETE_BODY_ALIGN(FromNew); }
  101 { OPERATOR_DELETE_BODY_ALIGN(FromNewArray); }
  104 { OPERATOR_DELETE_BODY_SIZE_ALIGN(FromNew); }
  107 { OPERATOR_DELETE_BODY_SIZE_ALIGN(FromNewArray); }