Classes | Functions | Variables
Collaboration diagram for Memory allocation:

Classes

class  nanoflann::PooledAllocator
 

Functions

T * allocate (size_t count=1)
 
T * nanoflann::allocate (size_t count=1)
 

Variables

const size_t BLOCKSIZE
 
const size_t nanoflann::BLOCKSIZE = 8192
 
const size_t WORDSIZE
 
const size_t nanoflann::WORDSIZE = 16
 

Detailed Description

Variable Documentation

◆ BLOCKSIZE

const size_t nanoflann::BLOCKSIZE = 8192

Definition at line 600 of file nanoflann.hpp.

◆ WORDSIZE

const size_t nanoflann::WORDSIZE = 16

Pooled storage allocator

The following routines allow for the efficient allocation of storage in small chunks from a specified pool. Rather than allowing each structure to be freed individually, an entire pool of storage is freed at once. This method has two advantages over just using malloc() and free(). First, it is far more efficient for allocating small objects, as there is no overhead for remembering all the information needed to free each object or consolidating fragmented memory. Second, the decision about how long to keep an object is made at the time of allocation, and there is no need to track down all the objects to free them.

Definition at line 599 of file nanoflann.hpp.



mesh_map
Author(s): Sebastian Pütz
autogenerated on Thu Jan 25 2024 03:42:45