Lines Matching refs:AllocatorDispatch
32 using allocator::AllocatorDispatch;
34 void* HookAlloc(const AllocatorDispatch* self, size_t size) { in HookAlloc()
35 const AllocatorDispatch* const next = self->next; in HookAlloc()
42 void* HookZeroInitAlloc(const AllocatorDispatch* self, size_t n, size_t size) { in HookZeroInitAlloc()
43 const AllocatorDispatch* const next = self->next; in HookZeroInitAlloc()
50 void* HookllocAligned(const AllocatorDispatch* self, in HookllocAligned()
53 const AllocatorDispatch* const next = self->next; in HookllocAligned()
60 void* HookRealloc(const AllocatorDispatch* self, void* address, size_t size) { in HookRealloc()
61 const AllocatorDispatch* const next = self->next; in HookRealloc()
69 void HookFree(const AllocatorDispatch* self, void* address) { in HookFree()
72 const AllocatorDispatch* const next = self->next; in HookFree()
76 AllocatorDispatch g_allocator_hooks = {