Go to the source code of this file.
|
#define | GALLOC(a_count) RE::GMemory::Alloc((a_count)) |
|
#define | GMEMALIGN(a_sz, a_al) RE::GMemory::Alloc((a_count), (a_al)) |
|
#define | GREALLOC(a_ptr, a_count) RE::GMemory::Realloc((a_ptr), (a_count)) |
|
#define | GFREE(a_ptr) RE::GMemory::Free((a_ptr)) |
|
#define | GFREE_ALIGN(a_count) RE::GMemory::Free((a_count)) |
|
#define | GHEAP_ALLOC(a_heap, a_count) RE::GMemory::AllocInHeap((a_heap), (a_count)) |
|
#define | GHEAP_MEMALIGN(a_heap, a_count, a_al) RE::GMemory::AllocInHeap((a_heap), (a_count), (a_al)) |
|
#define | GHEAP_AUTO_ALLOC(a_addr, a_count) RE::GMemory::AllocAutoHeap((a_addr), (a_count)) |
|
#define | GHEAP_FREE(a_heap, a_ptr) RE::GMemory::FreeInHeap((a_heap), (a_ptr)) |
|
#define | GFC_MEMORY_REDEFINE_NEW_IMPL(a_className, a_check_delete, a_statType) |
|
#define | GFC_MEMORY_CHECK_DELETE_NONE(a_className, a_ptr) |
|
#define | GFC_MEMORY_REDEFINE_NEW(a_className, a_statType) GFC_MEMORY_REDEFINE_NEW_IMPL(a_className, GFC_MEMORY_CHECK_DELETE_NONE, a_statType) |
|
◆ GALLOC
◆ GFC_MEMORY_CHECK_DELETE_NONE
#define GFC_MEMORY_CHECK_DELETE_NONE |
( |
|
a_className, |
|
|
|
a_ptr |
|
) |
| |
◆ GFC_MEMORY_REDEFINE_NEW
◆ GFC_MEMORY_REDEFINE_NEW_IMPL
#define GFC_MEMORY_REDEFINE_NEW_IMPL |
( |
|
a_className, |
|
|
|
a_check_delete, |
|
|
|
a_statType |
|
) |
| |
Value: void*
operator new(std::size_t a_count) {
return GALLOC(a_count); } \
void*
operator new[](std::size_t a_count) {
return GALLOC(a_count); } \
void* operator new([[maybe_unused]] std::size_t a_count, void* a_plcmnt) { return a_plcmnt; } \
void* operator new[]([[maybe_unused]] std::size_t a_count, void* a_plcmnt) { return a_plcmnt; } \
void operator delete(
void* a_ptr) {
GFREE(a_ptr); } \
void operator delete[](
void* a_ptr) {
GFREE(a_ptr); } \
void operator delete([[maybe_unused]] void* a_ptr, [[maybe_unused]] void* a_plcmnt) {} \
void operator delete[]([[maybe_unused]] void* a_ptr, [[maybe_unused]] void* a_plcmnt) {} \
#define GHEAP_ALLOC(a_heap, a_count)
Definition GMemory.h:40
#define GFREE(a_ptr)
Definition GMemory.h:36
#define GHEAP_FREE(a_heap, a_ptr)
Definition GMemory.h:43
#define GALLOC(a_count)
Definition GMemory.h:33
Definition GMemoryHeap.h:16
◆ GFREE
◆ GFREE_ALIGN
◆ GHEAP_ALLOC
◆ GHEAP_AUTO_ALLOC
◆ GHEAP_FREE
◆ GHEAP_MEMALIGN
◆ GMEMALIGN
◆ GREALLOC