diamondback:Only showing information from the released package extracted on Unknown. No API documentation available. Please see this page for information on how to submit your repository to our index.
electric:Documentation generated on March 02, 2013 at 01:21 PM
fuerte:Documentation generated on December 28, 2013 at 05:34 PM
groovy:Documentation generated on October 06, 2014 at 06:54 AM
hydro:Documentation generated on August 26, 2015 at 03:59 PM (doc job).
indigo:Documentation generated on June 09, 2019 at 04:32 AM (doc job).
kinetic:Documentation generated on June 10, 2019 at 10:38 PM (doc job).
lunar:Documentation generated on April 05, 2019 at 10:12 AM (doc job).
melodic:Documentation generated on March 01, 2022 at 07:26 AM (doc job).
noetic:Documentation generated on March 02, 2022 at 08:51 AM (doc job).
The allocators package is meant as a place to put different kinds of C/C++ memory allocators. It currently only contains functions for aligned allocation, and an STL-compatible aligned allocator.
Aligned Allocation
General aligned allocation is done through the alignedMalloc() and alignedFree() functions. For example:
1#include<allocators/aligned.h> 2 3... 4 5// Allocate 1000 bytes aligned to 128 bytes 6void* mem = allocators::alignedMalloc(1000, 128); 7... 8// You must free using alignedFree 9allocators::alignedFree(mem);
There is also an stl-compatible aligned allocator: