|
Doxygen Samurai Engine 0.0.1
Doxygen Samurai Engine Documentation
|

Go to the source code of this file.
Namespaces | |
| namespace | samurai |
| namespace | samurai::memory |
Functions | |
| void * | DefaultAllocator (size_t size) |
| void | DefaultFree (void *ptr) |
| void * | DisabeledAllocator (size_t size) |
| void | DisabeledFree (void *ptr) |
| void * | CustomedAllocator (size_t size) |
| void | CustomFree (void *ptr) |
| void | samurai::memory::setGlobalAllocatorToStandard () |
| void | samurai::memory::dissableAllocators () |
| void | samurai::memory::setGlobalAllocator (samurai::memory::CustomAllocator *allocator) |
| void * | operator new (size_t count) |
| void * | operator new[] (size_t count) |
| void | operator delete (void *ptr) |
| void | operator delete[] (void *ptr) |
Variables | |
| samurai::memory::CustomAllocator * | currentCustomAllocator = {} |
| void *(* | GlobalAllocateFunction )(size_t) = DefaultAllocator |
| void(* | GlobalFree )(void *) = DefaultFree |
| void * CustomedAllocator | ( | size_t | size | ) |
Definition at line 27 of file globalAllocator.cpp.


| void CustomFree | ( | void * | ptr | ) |
Definition at line 31 of file globalAllocator.cpp.


| void * DefaultAllocator | ( | size_t | size | ) |
| void DefaultFree | ( | void * | ptr | ) |
| void * DisabeledAllocator | ( | size_t | size | ) |
| void DisabeledFree | ( | void * | ptr | ) |
| void operator delete | ( | void * | ptr | ) |
Definition at line 76 of file globalAllocator.cpp.
| void operator delete[] | ( | void * | ptr | ) |
Definition at line 82 of file globalAllocator.cpp.
| void * operator new | ( | size_t | count | ) |
Definition at line 66 of file globalAllocator.cpp.
| void * operator new[] | ( | size_t | count | ) |
Definition at line 71 of file globalAllocator.cpp.
| samurai::memory::CustomAllocator* currentCustomAllocator = {} |
Definition at line 26 of file globalAllocator.cpp.
| void *(* GlobalAllocateFunction) (size_t) | ( | size_t | ) | = DefaultAllocator |
Definition at line 36 of file globalAllocator.cpp.
| void(* GlobalFree) (void *) | ( | void * | ) | = DefaultFree |
Definition at line 37 of file globalAllocator.cpp.