Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
|
A generic pool allocator where all allocations have up to a certain chunk size. More...
#include <PoolAllocator.hpp>
Public Member Functions | |
void | Initialize (void *ownedMemory, size_t totalSize, size_t sizePerChunk) |
bool | Initialize (size_t sizePerChunk, size_t maxChunkCount) |
void * | Allocate () |
void | Deallocate (size_t index) |
void | Deallocate (void *ptr) |
![]() | |
void | Clear () |
void | ClearAndZero () |
void | Destroy () |
bool | IsEmpty () const |
size_t | GetUsedCount () const |
Additional Inherited Members | |
![]() | |
void * | AllocateImpl () |
void | SetupLinkedList () |
void | DeallocateImpl (size_t index) |
void | DeallocateImpl (void *ptr) |
![]() | |
size_t | totalMemorySize = 0 |
size_t | chunkSize = 0 |
size_t | usedChunkCount = 0 |
size_t | totalChunkCount = 0 |
FreeLink * | headFreePtr = nullptr |
void * | memory = nullptr |
bool | hasAllocatedOwnMemory = false |
std::function< void(void *)> | deleteFn |
A generic pool allocator where all allocations have up to a certain chunk size.
Memory in a linear allocator is allocated sequentially, similar to a StackAllocator, one after the other. This removes the possibility of fragmentation, but with LinearAllocators specifically, they are never deallocated. Also known as an arena allocator.