Lines Matching defs:Ptr
68 void NORETURN reportHeaderCorruption(void *Ptr) {
70 Report.append("corrupted chunk header at address %p\n", Ptr);
124 void NORETURN reportInvalidChunkState(AllocatorAction Action, void *Ptr) {
127 stringifyAction(Action), Ptr);
130 void NORETURN reportMisalignedPointer(AllocatorAction Action, void *Ptr) {
133 stringifyAction(Action), Ptr);
138 void NORETURN reportDeallocTypeMismatch(AllocatorAction Action, void *Ptr,
142 stringifyAction(Action), Ptr, TypeA, TypeB);
147 void NORETURN reportDeleteSizeMismatch(void *Ptr, uptr Size,
151 "invalid sized delete when deallocating address %p (%zu vs %zu)\n", Ptr,