Symbol: _M_data_allocator
headers/cpp/stl_bvector.h
255
allocator_type get_allocator() const { return _M_data_allocator; }
headers/cpp/stl_bvector.h
258
: _M_data_allocator(__a), _M_start(), _M_finish(), _M_end_of_storage(0) {}
headers/cpp/stl_bvector.h
262
{ return _M_data_allocator.allocate((__n + __WORD_BIT - 1)/__WORD_BIT); }
headers/cpp/stl_bvector.h
265
_M_data_allocator.deallocate(_M_start._M_p,
headers/cpp/stl_bvector.h
270
_M_data_allocator;
headers/cpp/stl_rope.h
1169
allocator_type get_allocator() const { return _M_data_allocator; }
headers/cpp/stl_rope.h
1171
: _M_tree_ptr(__t), _M_data_allocator(__a) {}
headers/cpp/stl_rope.h
1173
: _M_data_allocator(__a) {}
headers/cpp/stl_rope.h
1177
allocator_type _M_data_allocator;
headers/cpp/stl_rope.h
1184
{ return __name##Allocator(_M_data_allocator).allocate(__n); } \
headers/cpp/stl_rope.h
1186
{ __name##Allocator(_M_data_allocator).deallocate(__p, __n); }
headers/cpp/stl_rope.h
283
allocator_type get_allocator() const { return _M_data_allocator; }
headers/cpp/stl_rope.h
285
: _M_size(__size), _M_data_allocator(__a) {}
headers/cpp/stl_rope.h
291
allocator_type _M_data_allocator;
headers/cpp/stl_rope.h
297
{ return __name##Allocator(_M_data_allocator).allocate(__n); } \
headers/cpp/stl_rope.h
299
{ __name##Allocator(_M_data_allocator).deallocate(__p, __n); }
headers/cpp/stl_vector.h
147
{ return _M_data_allocator::allocate(__n); }
headers/cpp/stl_vector.h
149
{ _M_data_allocator::deallocate(__p, __n); }
headers/cpp/stl_vector.h
57
allocator_type get_allocator() const { return _M_data_allocator; }
headers/cpp/stl_vector.h
60
: _M_data_allocator(__a), _M_start(0), _M_finish(0), _M_end_of_storage(0)
headers/cpp/stl_vector.h
64
allocator_type _M_data_allocator;
headers/cpp/stl_vector.h
70
{ return _M_data_allocator.allocate(__n); }
headers/cpp/stl_vector.h
72
{ if (__p) _M_data_allocator.deallocate(__p, __n); }