#include <AllocInterface.h>
Inheritance diagram for TAllocInterfaceAlign8:
Public Member Functions | |
TAllocInterfaceAlign8 (void) | |
Constructor. | |
~TAllocInterfaceAlign8 (void) | |
Destructor. | |
void * | operator new (size_t size) |
Operator new. | |
void * | operator new[] (size_t size) |
Operator new[]. | |
void | operator delete (void *ptr) |
Operator delete. | |
void | operator delete[] (void *ptr) |
Operator delete. |
Any class derived from this class contains this operators.
MAIN DIFFERENCE FROM TAllocInterface IS there are used ALIGNED versions of memory allocations!!! Memory for class derived from this class always be aligned to 8-bytes boundary.
There may exists instance of this class, but it does nothing.
Usage: class TNewClass: public TAllocInterfaceAlign8{...} *
Definition at line 216 of file AllocInterface.h.
|
Constructor.
Definition at line 222 of file AllocInterface.h. |
|
Destructor.
Definition at line 225 of file AllocInterface.h. |
|
Operator delete.
Definition at line 240 of file AllocInterface.h. References TMemManager::free_align(). Here is the call graph for this function: ![]() |
|
Operator delete.
Definition at line 244 of file AllocInterface.h. References TMemManager::free_align(). Here is the call graph for this function: ![]() |
|
Operator new.
Definition at line 232 of file AllocInterface.h. References TMemManager::new_align(). Here is the call graph for this function: ![]() |
|
Operator new[].
Definition at line 236 of file AllocInterface.h. References TMemManager::new_align(). Here is the call graph for this function: ![]() |