Blender
V3.3
|
#include "btGenericPoolAllocator.h"
Go to the source code of this file.
Classes | |
class | GIM_STANDARD_ALLOCATOR |
Macros | |
#define | BT_DEFAULT_POOL_SIZE 32768 |
************** STANDARD ALLOCATOR ***************************/// More... | |
#define | BT_DEFAULT_POOL_ELEMENT_SIZE 8 |
Functions | |
void * | btPoolAlloc (size_t size) |
void * | btPoolRealloc (void *ptr, size_t oldsize, size_t newsize) |
void | btPoolFree (void *ptr) |
Variables | |
GIM_STANDARD_ALLOCATOR | g_main_allocator |
General purpose allocator class
Definition in file btGenericPoolAllocator.cpp.
#define BT_DEFAULT_POOL_ELEMENT_SIZE 8 |
Definition at line 235 of file btGenericPoolAllocator.cpp.
#define BT_DEFAULT_POOL_SIZE 32768 |
************** STANDARD ALLOCATOR ***************************///
Definition at line 234 of file btGenericPoolAllocator.cpp.
void* btPoolAlloc | ( | size_t | size | ) |
Definition at line 249 of file btGenericPoolAllocator.cpp.
References btGenericPoolAllocator::allocate(), g_main_allocator, and size().
Referenced by btPoolRealloc().
Definition at line 263 of file btGenericPoolAllocator.cpp.
References btGenericPoolAllocator::freeMemory(), g_main_allocator, and ptr.
Referenced by btPoolRealloc().
Definition at line 254 of file btGenericPoolAllocator.cpp.
References btPoolAlloc(), btPoolFree(), and ptr.
GIM_STANDARD_ALLOCATOR g_main_allocator |
Definition at line 247 of file btGenericPoolAllocator.cpp.
Referenced by btPoolAlloc(), and btPoolFree().