Symbol: _Alloc_type
headers/cpp/stl_bvector.h
288
typedef typename _Alloc_traits<unsigned int, _Allocator>::_Alloc_type
headers/cpp/stl_bvector.h
292
{ return _Alloc_type::allocate((__n + __WORD_BIT - 1)/__WORD_BIT); }
headers/cpp/stl_bvector.h
295
_Alloc_type::deallocate(_M_start._M_p,
headers/cpp/stl_bvector.h
336
{ return _Alloc_type::allocate((__n + __WORD_BIT - 1)/__WORD_BIT); }
headers/cpp/stl_bvector.h
339
_Alloc_type::deallocate(_M_start._M_p,
headers/cpp/stl_deque.h
316
typedef typename _Alloc_traits<_Tp, _Alloc>::_Alloc_type _Node_alloc_type;
headers/cpp/stl_deque.h
317
typedef typename _Alloc_traits<_Tp*, _Alloc>::_Alloc_type _Map_alloc_type;
headers/cpp/stl_list.h
166
typedef typename _Alloc_traits<_List_node<_Tp>, _Allocator>::_Alloc_type
headers/cpp/stl_list.h
168
_List_node<_Tp>* _M_get_node() { return _Alloc_type::allocate(1); }
headers/cpp/stl_list.h
169
void _M_put_node(_List_node<_Tp>* __p) { _Alloc_type::deallocate(__p, 1); }
headers/cpp/stl_list.h
222
_List_node<_Tp>* _M_get_node() { return _Alloc_type::allocate(1); }
headers/cpp/stl_list.h
223
void _M_put_node(_List_node<_Tp>* __p) { _Alloc_type::deallocate(__p, 1); }
headers/cpp/stl_rope.h
1210
_Alloc_traits<_Tp,_Allocator>::_Alloc_type __name##Alloc; \
headers/cpp/stl_rope.h
320
_Alloc_traits<_Tp,_Allocator>::_Alloc_type __name##Alloc; \
headers/cpp/stl_slist.h
215
typedef typename _Alloc_traits<_Slist_node<_Tp>, _Allocator>::_Alloc_type
headers/cpp/stl_slist.h
217
_Slist_node<_Tp>* _M_get_node() { return _Alloc_type::allocate(1); }
headers/cpp/stl_slist.h
218
void _M_put_node(_Slist_node<_Tp>* __p) { _Alloc_type::deallocate(__p, 1); }
headers/cpp/stl_slist.h
264
_Slist_node<_Tp>* _M_get_node() { return _Alloc_type::allocate(1); }
headers/cpp/stl_slist.h
265
void _M_put_node(_Slist_node<_Tp>* __p) { _Alloc_type::deallocate(__p, 1); }
headers/cpp/stl_tree.h
471
typedef typename _Alloc_traits<_Rb_tree_node<_Tp>, _Alloc>::_Alloc_type
headers/cpp/stl_tree.h
475
{ return _Alloc_type::allocate(1); }
headers/cpp/stl_tree.h
477
{ _Alloc_type::deallocate(__p, 1); }
headers/cpp/stl_tree.h
514
{ return _Alloc_type::allocate(1); }
headers/cpp/stl_tree.h
516
{ _Alloc_type::deallocate(__p, 1); }
headers/cpp/stl_vector.h
93
typedef typename _Alloc_traits<_Tp, _Allocator>::_Alloc_type _Alloc_type;
headers/cpp/stl_vector.h
95
{ return _Alloc_type::allocate(__n); }
headers/cpp/stl_vector.h
97
{ _Alloc_type::deallocate(__p, __n);}