Lines Matching refs:memory_pool_allocator

78 class memory_pool_allocator {
83 friend class memory_pool_allocator; variable
85 … friend bool operator==( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b);
87 … friend bool operator!=( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b);
97 typedef memory_pool_allocator<U, P> other;
100 explicit memory_pool_allocator(pool_type &pool) throw() : my_pool(&pool) {} in memory_pool_allocator() function
101 memory_pool_allocator(const memory_pool_allocator& src) throw() : my_pool(src.my_pool) {} in throw()
103 memory_pool_allocator(const memory_pool_allocator<U,P>& src) throw() : my_pool(src.my_pool) {} in memory_pool_allocator() function
142 class memory_pool_allocator<void, P> {
149 typedef memory_pool_allocator<U, P> other;
152 explicit memory_pool_allocator( pool_type &pool) throw() : my_pool(&pool) {} in memory_pool_allocator() function
153 memory_pool_allocator( const memory_pool_allocator& src) throw() : my_pool(src.my_pool) {} in throw()
155 memory_pool_allocator(const memory_pool_allocator<U,P>& src) throw() : my_pool(src.my_pool) {} in memory_pool_allocator() function
160 friend class memory_pool_allocator; variable
162 … friend bool operator==( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b);
164 … friend bool operator!=( const memory_pool_allocator<V,R>& a, const memory_pool_allocator<U,R>& b);
168 inline bool operator==( const memory_pool_allocator<T,P>& a, const memory_pool_allocator<U,P>& b) {…
171 inline bool operator!=( const memory_pool_allocator<T,P>& a, const memory_pool_allocator<U,P>& b) {…
265 using detail::d1::memory_pool_allocator;