|
template<typename T , std::size_t SmallBufferSize = 8u> |
using | neolib::small_buffer_allocator = basic_small_buffer_allocator< small_buffer_allocator_types< T, T >, SmallBufferSize > |
|
template<typename T , std::size_t ChunkSize = 1 * 1024 * 1024> |
using | neolib::omega_pool_allocator = neo_pool_allocator< T, ChunkSize, true > |
|
template<typename T , unsigned NextSize = 32> |
using | neolib::thread_safe_pool_allocator = boost::pool_allocator< T, boost::default_user_allocator_new_delete, boost::details::pool::default_mutex, NextSize > |
|
template<typename T , unsigned NextSize = 32> |
using | neolib::pool_allocator = boost::pool_allocator< T, boost::default_user_allocator_new_delete, boost::details::pool::null_mutex, NextSize > |
|
template<typename T , unsigned NextSize = 32> |
using | neolib::thread_safe_fast_pool_allocator = boost::fast_pool_allocator< T, boost::default_user_allocator_new_delete, boost::details::pool::default_mutex, NextSize > |
|
template<typename T , unsigned NextSize = 32> |
using | neolib::fast_pool_allocator = boost::fast_pool_allocator< T, boost::default_user_allocator_new_delete, boost::details::pool::null_mutex, NextSize > |
|