#include <quick_allocator.hpp>
Public Types | |
enum | { items_per_page = 512 / size } |
typedef freeblock< size, align_ > | block |
Static Public Member Functions | |
static void * | alloc () |
static void * | alloc (std::size_t n) |
static void | dealloc (void *pv) |
static void | dealloc (void *pv, std::size_t n) |
Static Public Attributes | |
static block * | free = 0 |
static unsigned | last = allocator_impl<size, align_>::items_per_page |
static block * | page = 0 |
Definition at line 44 of file smart_ptr/detail/quick_allocator.hpp.
typedef freeblock<size, align_> boost::detail::allocator_impl< size, align_ >::block |
Definition at line 46 of file smart_ptr/detail/quick_allocator.hpp.
anonymous enum |
Definition at line 69 of file smart_ptr/detail/quick_allocator.hpp.
static void* boost::detail::allocator_impl< size, align_ >::alloc | ( | ) | [inline, static] |
Definition at line 89 of file smart_ptr/detail/quick_allocator.hpp.
static void* boost::detail::allocator_impl< size, align_ >::alloc | ( | std::size_t | n | ) | [inline, static] |
Definition at line 113 of file smart_ptr/detail/quick_allocator.hpp.
static void boost::detail::allocator_impl< size, align_ >::dealloc | ( | void * | pv | ) | [inline, static] |
Definition at line 142 of file smart_ptr/detail/quick_allocator.hpp.
static void boost::detail::allocator_impl< size, align_ >::dealloc | ( | void * | pv, |
std::size_t | n | ||
) | [inline, static] |
Definition at line 155 of file smart_ptr/detail/quick_allocator.hpp.
freeblock< size, align_ > * boost::detail::allocator_impl< size, align_ >::free = 0 [static] |
Definition at line 85 of file smart_ptr/detail/quick_allocator.hpp.
unsigned boost::detail::allocator_impl< size, align_ >::last = allocator_impl<size, align_>::items_per_page [static] |
Definition at line 87 of file smart_ptr/detail/quick_allocator.hpp.
freeblock< size, align_ > * boost::detail::allocator_impl< size, align_ >::page = 0 [static] |
Definition at line 86 of file smart_ptr/detail/quick_allocator.hpp.