|
UFO: Alien Invasion
|

Data Fields | |
| memBlock_t * | next |
| uint32_t | topSentinel |
| memPool_t * | pool |
| int | tagNum |
| char const * | allocFile |
| int | allocLine |
| size_t | memSize |
| uint32_t | botSentinel |
| char const* memBlock_t::allocFile |
File the memory was allocated in
Definition at line 47 of file mem.cpp.
Referenced by _Mem_Alloc(), and _Mem_CheckSentinels().
| int memBlock_t::allocLine |
Line the memory was allocated at
Definition at line 48 of file mem.cpp.
Referenced by _Mem_Alloc(), and _Mem_CheckSentinels().
| uint32_t memBlock_t::botSentinel |
For memory integrity checking
Definition at line 52 of file mem.cpp.
Referenced by _Mem_Alloc(), and _Mem_CheckSentinels().
| size_t memBlock_t::memSize |
Size minus the header
Definition at line 50 of file mem.cpp.
Referenced by _Mem_Alloc(), _Mem_ReAlloc(), Mem_BlockRawSize(), and Mem_BlockToFooter().
| memBlock_t* memBlock_t::next |
Definition at line 40 of file mem.cpp.
Referenced by _Mem_Alloc(), _Mem_AllocatedInPool(), _Mem_ChangeTag(), _Mem_CheckPoolIntegrity(), and _Mem_Free().
| memPool_t* memBlock_t::pool |
Owner pool
Definition at line 44 of file mem.cpp.
Referenced by _Mem_Alloc(), _Mem_CheckSentinels(), _Mem_Free(), and _Mem_ReAlloc().
| int memBlock_t::tagNum |
For group free
Definition at line 45 of file mem.cpp.
Referenced by _Mem_Alloc(), and _Mem_ReAlloc().
| uint32_t memBlock_t::topSentinel |
For memory integrity checking
Definition at line 42 of file mem.cpp.
Referenced by _Mem_Alloc(), and _Mem_CheckSentinels().