Home
last modified time | relevance | path

Searched refs:_M_head (Results 1 – 9 of 9) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
Dslist233 { this->_M_head._M_next = 0; }
236 { _M_erase_after(&this->_M_head, 0); }
239 _Slist_node_base _M_head;
364 { _M_insert_after_fill(&this->_M_head, __n, __x); }
369 { _M_insert_after_fill(&this->_M_head, __n, value_type()); }
377 { _M_insert_after_range(&this->_M_head, __first, __last); }
381 { _M_insert_after_range(&this->_M_head, __x.begin(), __x.end()); }
423 { return iterator((_Node*)this->_M_head._M_next); }
427 { return const_iterator((_Node*)this->_M_head._M_next);}
446 { return iterator((_Node*) &this->_M_head); }
[all …]
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
Dforward_list.tcc44 this->_M_impl._M_head = std::move(__lst._M_impl._M_head); in _Fwd_list_base()
102 _Node_base* __to = &this->_M_impl._M_head; in _M_range_initialize()
116 _Node_base* __to = &this->_M_impl._M_head; in _M_fill_initialize()
129 _Node_base* __to = &this->_M_impl._M_head; in _M_default_initialize()
375 _Node_base* __node = &this->_M_impl._M_head; in merge()
376 while (__node->_M_next && __list._M_impl._M_head._M_next) in merge()
379 (__list._M_impl._M_head._M_next)->_M_valptr(), in merge()
382 __node->_M_transfer_after(&__list._M_impl._M_head, in merge()
383 __list._M_impl._M_head._M_next); in merge()
387 if (__list._M_impl._M_head._M_next) in merge()
[all …]
Dforward_list.h304 _Fwd_list_node_base _M_head; in _GLIBCXX_VISIBILITY() member
308 : _Node_alloc_type(), _M_head() in _GLIBCXX_VISIBILITY()
314 : _Node_alloc_type(std::move(__a)), _M_head(std::move(__fl._M_head)) in _GLIBCXX_VISIBILITY()
318 : _Node_alloc_type(std::move(__a)), _M_head() in _GLIBCXX_VISIBILITY()
354 { _M_erase_after(&_M_impl._M_head, nullptr); } in _GLIBCXX_VISIBILITY()
716 { return iterator(&this->_M_impl._M_head); } in _GLIBCXX_VISIBILITY()
726 { return const_iterator(&this->_M_impl._M_head); } in _GLIBCXX_VISIBILITY()
735 { return iterator(this->_M_impl._M_head._M_next); } in _GLIBCXX_VISIBILITY()
745 { return const_iterator(this->_M_impl._M_head._M_next); } in _GLIBCXX_VISIBILITY()
775 { return const_iterator(this->_M_impl._M_head._M_next); } in _GLIBCXX_VISIBILITY()
[all …]
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
Dtuple92 _Head _M_head;
97 _Tuple_impl() : _Inherited(), _M_head() { }
102 : _Inherited(__tail...), _M_head(__head) { }
106 : _Inherited(__in._M_tail()), _M_head(__in._M_head) { }
109 : _Inherited(__in._M_tail()), _M_head(__in._M_head) { }
115 _M_head = __in._M_head;
123 _M_head = __in._M_head;
214 this->_M_head = __in.first;
215 this->_M_tail()._M_head = __in.second;
260 return __t._M_head;
[all …]
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
Dstop_token159 _Stop_cb* _M_head = nullptr;
235 while (_M_head)
238 _Stop_cb* __cb = _M_head;
239 _M_head = _M_head->_M_next;
240 if (_M_head)
242 _M_head->_M_prev = nullptr;
298 __cb->_M_next = _M_head;
299 if (_M_head)
301 _M_head->_M_prev = __cb;
303 _M_head = __cb;
[all …]
Dtuple124 _M_head(_Head_base& __b) noexcept { return __b._M_head_impl; }
127 _M_head(const _Head_base& __b) noexcept { return __b._M_head_impl; }
179 _M_head(_Head_base& __b) noexcept { return __b; }
182 _M_head(const _Head_base& __b) noexcept { return __b; }
233 _M_head(_Head_base& __b) noexcept { return __b._M_head_impl; }
236 _M_head(const _Head_base& __b) noexcept { return __b._M_head_impl; }
268 _M_head(_Tuple_impl& __t) noexcept { return _Base::_M_head(__t); }
271 _M_head(const _Tuple_impl& __t) noexcept { return _Base::_M_head(__t); }
307 _Base(_Tuple_impl<_Idx, _UElements...>::_M_head(__in))
316 (_Tuple_impl<_Idx, _UHead, _UTails...>::_M_head(__in)))
[all …]
Dmemory_resource790 if (_M_head)
868 _Chunk* _M_head = nullptr;
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/
DChangeLog-20111705 * include/std/tuple (_Head_base<>::_M_head, _Head_base<>::_M_tail,
1706 _Tuple_impl<>::_M_head, _Tuple_impl<>::_M_tail): Change to static
1781 * include/std/tuple (_Tuple_impl::_M_head, _M_tail): Mark constexpr.
4465 (_Head_base<>::_M_head, _Tuple_impl<>::_M_head, _M_tail): Likewise.
DChangeLog-20186067 _M_impl._M_head move assignment.