Searched refs:_M_impl (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.1-release/contrib/libstdc++/include/bits/
H A Dstl_vector.h102 { return *static_cast<_Tp_alloc_type*>(&this->_M_impl); }
106 { return *static_cast<const _Tp_alloc_type*>(&this->_M_impl); }
113 : _M_impl() { }
116 : _M_impl(__a)
120 : _M_impl(__a)
124 this->_M_impl._M_start = this->_M_allocate(__n);
125 this->_M_impl._M_finish = this->_M_impl._M_start;
126 this->_M_impl._M_end_of_storage = this->_M_impl
135 _Vector_impl _M_impl; member in struct:_Vector_base
[all...]
H A Dstl_bvector.h403 { return *static_cast<_Bit_alloc_type*>(&this->_M_impl); }
407 { return *static_cast<const _Bit_alloc_type*>(&this->_M_impl); }
414 : _M_impl() { }
417 : _M_impl(__a) { }
423 _Bvector_impl _M_impl; member in struct:_Bvector_base
427 { return _M_impl.allocate((__n + int(_S_word_bit) - 1)
433 if (_M_impl._M_start._M_p)
434 _M_impl.deallocate(_M_impl._M_start._M_p,
435 _M_impl
[all...]
H A Dstl_deque.h384 : _M_impl()
388 : _M_impl(__a)
392 : _M_impl(__a)
426 { return *static_cast<_Tp_alloc_type*>(&this->_M_impl); }
430 { return *static_cast<const _Tp_alloc_type*>(&this->_M_impl); }
439 return _M_impl._Tp_alloc_type::allocate(__deque_buf_size(sizeof(_Tp)));
445 _M_impl._Tp_alloc_type::deallocate(__p, __deque_buf_size(sizeof(_Tp)));
462 _Deque_impl _M_impl; member in class:_Deque_base
469 if (this->_M_impl._M_map)
471 _M_destroy_nodes(this->_M_impl
[all...]
H A Dstl_tree.h356 { return *static_cast<_Node_allocator*>(&this->_M_impl); }
360 { return *static_cast<const _Node_allocator*>(&this->_M_impl); }
369 { return _M_impl._Node_allocator::allocate(1); }
373 { _M_impl._Node_allocator::deallocate(__p, 1); }
466 _Rb_tree_impl<_Compare> _M_impl; member in class:_Rb_tree
471 { return this->_M_impl._M_header._M_parent; }
475 { return this->_M_impl._M_header._M_parent; }
479 { return this->_M_impl._M_header._M_left; }
483 { return this->_M_impl._M_header._M_left; }
487 { return this->_M_impl
[all...]
H A Dstl_list.h317 _List_impl _M_impl; member in class:_List_base
321 { return _M_impl._Node_alloc_type::allocate(1); }
325 { _M_impl._Node_alloc_type::deallocate(__p, 1); }
332 { return *static_cast<_Node_alloc_type*>(&this->_M_impl); }
336 { return *static_cast<const _Node_alloc_type*>(&this->_M_impl); }
347 : _M_impl()
351 : _M_impl(__a)
364 this->_M_impl._M_node._M_next = &this->_M_impl._M_node;
365 this->_M_impl
[all...]
H A Dlocale_classes.h285 _Impl* _M_impl; member in class:locale
567 _M_impl = new _Impl(*__other._M_impl, 1);
570 { _M_impl->_M_install_facet(&_Facet::id, __f); }
573 _M_impl->_M_remove_reference();
576 delete [] _M_impl->_M_names[0];
577 _M_impl->_M_names[0] = 0; // Unnamed.
/freebsd-10.1-release/contrib/libstdc++/src/
H A Dlocale.cc78 : _M_impl(__other._M_impl)
79 { _M_impl->_M_add_reference(); }
84 locale::locale(_Impl* __ip) throw() : _M_impl(__ip)
88 { _M_impl->_M_remove_reference(); }
98 if (_M_impl == __rhs._M_impl)
100 else if (!_M_impl->_M_names[0] || !__rhs._M_impl->_M_names[0]
101 || std::strcmp(_M_impl
[all...]
H A Dlocalename.cc37 locale::locale(const char* __s) : _M_impl(0)
43 (_M_impl = _S_classic)->_M_add_reference();
45 _M_impl = new _Impl(__s, 1);
55 (_M_impl = _S_classic)->_M_add_reference();
57 _M_impl = new _Impl(__env, 1);
131 _M_impl = new _Impl(__str.c_str(), 1);
136 (_M_impl = _S_classic)->_M_add_reference();
138 _M_impl = new _Impl(__lang.c_str(), 1);
147 : _M_impl(0)
157 : _M_impl(
[all...]
H A Dctype.cc58 const locale::_Impl* __tmp = __loc._M_impl;
68 const locale::_Impl* __tmp = __loc._M_impl;
H A Dlocale_init.cc212 locale::locale() throw() : _M_impl(0)
217 _M_impl = _S_global;
228 __other._M_impl->_M_add_reference();
229 _S_global = __other._M_impl;

Completed in 60 milliseconds