A MemoryAllocator implementation based on a growable slice of VirtualMemory.
More...
#include <VirtualMemory.h>
|
virtual void * | allocateImpl (const void *owner, size_t numBytes, size_t alignment) override |
| Allocate virtual function to be reimplemented. More...
|
|
virtual void * | reallocateImpl (void *memory, size_t numBytes) override |
| Re-allocate virtual function to be reimplemented. More...
|
|
void | syncFixedAllocator () |
|
virtual void | releaseImpl (void *memory) override |
| Release virtual function to be reimplemented. More...
|
|
|
VirtualMemory & | virtualMemory |
|
void * | memory = nullptr |
|
size_t | sizeInBytes = 0 |
|
void * | lastAllocation = nullptr |
|
size_t | lastAllocatedSize = 0 |
|
size_t | position = 0 |
|
A MemoryAllocator implementation based on a growable slice of VirtualMemory.
◆ allocateImpl()
virtual void * SC::VirtualAllocator::allocateImpl |
( |
const void * |
owner, |
|
|
size_t |
numBytes, |
|
|
size_t |
alignment |
|
) |
| |
|
overrideprotectedvirtual |
Allocate virtual function to be reimplemented.
- Parameters
-
owner | Can be nullptr or an address belonging to a previous allocation of this allocator |
numBytes | How many bytes to allocate |
alignment | Alignment of the allocation |
- Returns
false
if the passed not-null owner doesn't belong to this allocator or the allocation itself fails
Reimplemented from SC::FixedAllocator.
◆ reallocateImpl()
virtual void * SC::VirtualAllocator::reallocateImpl |
( |
void * |
memory, |
|
|
size_t |
numBytes |
|
) |
| |
|
overrideprotectedvirtual |
The documentation for this struct was generated from the following file: