#include <AllocInterface.h>
Inheritance diagram for TAllocInterfaceAlign16:
Public Member Functions | |
TAllocInterfaceAlign16 (void) | |
Constructor. | |
~TAllocInterfaceAlign16 (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 16-bytes boundary (e.g. required for SSE)
There may exists instance of this class, but it does nothing.
Usage: class TNewClass: public TAllocInterfaceAlign16{...} *
Definition at line 127 of file AllocInterface.h.
|
Constructor.
Definition at line 133 of file AllocInterface.h. |
|
Destructor.
Definition at line 136 of file AllocInterface.h. |
|
Operator delete.
Definition at line 151 of file AllocInterface.h. References TMemManager::free_align(). Here is the call graph for this function: ![]() |
|
Operator delete.
Definition at line 155 of file AllocInterface.h. References TMemManager::free_align(). Here is the call graph for this function: ![]() |
|
Operator new.
Definition at line 143 of file AllocInterface.h. References TMemManager::new_align(). Here is the call graph for this function: ![]() |
|
Operator new[].
Definition at line 147 of file AllocInterface.h. References TMemManager::new_align(). Here is the call graph for this function: ![]() |