Simple Application Framework
1
|
Memory allocation and deallocation functions
Namespaces | |
namespace | Saf |
Global library namespace. | |
namespace | Saf::Mem |
Low level memory handling functions. | |
Functions | |
void * | Saf::Mem::AllocateSafMemory (Size n, const Saf::SourceLocation &loc) |
Generic type-free malloc() encapsulation. | |
void | operator delete (void *ptr, const Saf::SourceLocation &loc) |
void | operator delete[] (void *ptr, const Saf::SourceLocation &loc) |
void * | operator new (size_t nSize, const Saf::SourceLocation &loc) |
void * | operator new[] (size_t nSize, const Saf::SourceLocation &loc) |
Memory allocation and deallocation functions
void operator delete | ( | void * | ptr, |
const Saf::SourceLocation & | loc | ||
) |
void operator delete[] | ( | void * | ptr, |
const Saf::SourceLocation & | loc | ||
) |
void* operator new | ( | size_t | nSize, |
const Saf::SourceLocation & | loc | ||
) |
void* operator new[] | ( | size_t | nSize, |
const Saf::SourceLocation & | loc | ||
) |