Blender V4.3
blender::RawAllocator Class Reference

#include <BLI_allocator.hh>

Public Member Functions

void * allocate (size_t size, size_t alignment, const char *)
 
void deallocate (void *ptr)
 

Detailed Description

This is a wrapper around malloc/free. Only use this when the GuardedAllocator cannot be used. This can be the case when the allocated memory might live longer than Blender's allocator. For example, when the memory is owned by a static variable.

Definition at line 80 of file BLI_allocator.hh.

Member Function Documentation

◆ allocate()

void * blender::RawAllocator::allocate ( size_t size,
size_t alignment,
const char *  )
inline

Definition at line 87 of file BLI_allocator.hh.

References BLI_assert, int, POINTER_OFFSET, and ptr.

◆ deallocate()

void blender::RawAllocator::deallocate ( void * ptr)
inline

Definition at line 99 of file BLI_allocator.hh.

References free(), POINTER_OFFSET, and ptr.


The documentation for this class was generated from the following file: