cry_crt_node_allocator

C++
struct cry_crt_node_allocator {
  const size_t MaxSize = ~0;
};
File

CryMemoryAllocator.h

Description

A class that forward node allocator calls directly to CRT

cry_crt_node_allocator::MaxSize Data Member
C++
const size_t MaxSize = ~0;
cry_crt_node_allocator::alloc Method
C++
static void * alloc(size_t __n);
cry_crt_node_allocator::allocate Method (size_t)
C++
static void * allocate(size_t __n);
cry_crt_node_allocator::allocate Method (size_t, size_t)
C++
static void * allocate(size_t __n, size_t nAlignment);
cry_crt_node_allocator::cleanup Method
C++
void cleanup();
cry_crt_node_allocator::dealloc Method
C++
static size_t dealloc(void * p);
cry_crt_node_allocator::deallocate Method
C++
static size_t deallocate(void * __p);