Searched refs:_M_allocator (Results 1 – 4 of 4) sorted by relevance
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/ext/ |
H A D | debug_allocator.h | 91 _Alloc _M_allocator; in _GLIBCXX_VISIBILITY() local 116 : _M_allocator(__a2._M_allocator), _M_extra(_S_extra()) { } in _GLIBCXX_VISIBILITY() 119 : _M_allocator(__a), _M_extra(_S_extra()) { } in _GLIBCXX_VISIBILITY() 124 pointer __res = _M_allocator.allocate(__n + _M_extra); in _GLIBCXX_VISIBILITY() 133 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint); in _GLIBCXX_VISIBILITY() 148 _M_allocator.deallocate(__real_p, __n + _M_extra); in _GLIBCXX_VISIBILITY() 156 { _Traits::construct(_M_allocator, __p, __val); } in _GLIBCXX_VISIBILITY() 163 _Traits::construct(_M_allocator, __p, in _GLIBCXX_VISIBILITY() 171 { _Traits::destroy(_M_allocator, __p); } in _GLIBCXX_VISIBILITY() 175 { return _Traits::max_size(_M_allocator) - _M_extra; } in _GLIBCXX_VISIBILITY() [all …]
|
H A D | throw_allocator.h | 811 std::allocator<value_type> _M_allocator; in _GLIBCXX_VISIBILITY() local 818 { return _M_allocator.max_size(); } in _GLIBCXX_VISIBILITY() 835 pointer const a = _M_allocator.allocate(__n, hint); in _GLIBCXX_VISIBILITY() 845 _M_allocator.construct(__p, std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY() 854 _M_allocator.destroy(__p); in _GLIBCXX_VISIBILITY() 859 { return _M_allocator.construct(__p, val); } in _GLIBCXX_VISIBILITY() 863 { _M_allocator.destroy(__p); } in _GLIBCXX_VISIBILITY() 870 _M_allocator.deallocate(__p, __n); in _GLIBCXX_VISIBILITY()
|
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/ext/ |
H A D | debug_allocator.h | 79 _Alloc _M_allocator; in _GLIBCXX_VISIBILITY() local 91 pointer __res = _M_allocator.allocate(__n + _M_extra); in _GLIBCXX_VISIBILITY() 100 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint); in _GLIBCXX_VISIBILITY() 117 _M_allocator.deallocate(__real_p, __n + _M_extra); in _GLIBCXX_VISIBILITY()
|
H A D | throw_allocator.h | 615 std::allocator<value_type> _M_allocator; in _GLIBCXX_VISIBILITY() local 622 { return _M_allocator.max_size(); } in _GLIBCXX_VISIBILITY() 639 pointer const a = _M_allocator.allocate(__n, hint); in _GLIBCXX_VISIBILITY() 648 { return _M_allocator.construct(__p, std::forward<_Args>(__args)...); } in _GLIBCXX_VISIBILITY() 653 { _M_allocator.destroy(__p); } in _GLIBCXX_VISIBILITY() 657 { return _M_allocator.construct(__p, val); } in _GLIBCXX_VISIBILITY() 661 { _M_allocator.destroy(__p); } in _GLIBCXX_VISIBILITY() 668 _M_allocator.deallocate(__p, __n); in _GLIBCXX_VISIBILITY()
|