Searched refs:fxAllocator (Results 1 - 1 of 1) sorted by relevance

/external/pdfium/core/include/fxcrt/
H A Dfx_memory.h136 #define FX_Allocator_Alloc(fxAllocator, type, size) \
137 ((fxAllocator) ? (type*)(fxAllocator)->m_AllocDebug((fxAllocator), (size) * sizeof(type), __FILE__, __LINE__) : (FX_Alloc(type, size)))
139 #define FX_Allocator_Realloc(fxAllocator, type, ptr, new_size) \
140 ((fxAllocator) ? (type*)(fxAllocator)->m_ReallocDebug((fxAllocator), (ptr), (new_size) * sizeof(type), __FILE__, __LINE__) : (FX_Realloc(type, ptr, new_size)))
143 #define FX_Allocator_Alloc(fxAllocator, type, size) \
144 ((fxAllocator)
151 operator new(size_t size, IFX_Allocator* fxAllocator) argument
155 operator delete(void* ptr, IFX_Allocator* fxAllocator) argument
[all...]

Completed in 644 milliseconds