Searched defs:__node (Results 1 - 5 of 5) sorted by relevance

/external/stlport/stlport/stl/
H A D_slist_base.c40 const _Slist_node_base* __node) {
41 while (__head && __head->_M_next != __node)
74 _Sl_global<_Dummy>::__reverse(_Slist_node_base* __node) { argument
75 _Slist_node_base* __result = __node;
76 __node = __node->_M_next;
78 while(__node) {
79 _Slist_node_base* __next = __node->_M_next;
80 __node->_M_next = __result;
81 __result = __node;
39 __previous(_Slist_node_base* __head, const _Slist_node_base* __node) argument
89 size(_Slist_node_base* __node) argument
[all...]
H A D_slist_base.h56 static size_t _STLP_CALL size(_Slist_node_base* __node);
57 static _Slist_node_base* _STLP_CALL __reverse(_Slist_node_base* __node);
65 const _Slist_node_base* __node);
67 const _Slist_node_base* __node) {
68 return _Sl_global<_Dummy>::__previous(__CONST_CAST(_Slist_node_base*, __head), __node);
66 __previous(const _Slist_node_base* __head, const _Slist_node_base* __node) argument
H A D_slist.c93 _Node_base* __node = this->_M_head._M_data._M_next; local
94 for ( ; __node != 0 && __n > 0 ; --__n) {
95 __STATIC_CAST(_Node*, __node)->_M_data = __val;
96 __prev = __node;
97 __node = __node->_M_next;
H A D_tree.c668 __black_count(_Rb_tree_node_base* __node, _Rb_tree_node_base* __root) { argument
669 if (__node == 0)
672 int __bc = __node->_M_color == _S_rb_tree_black ? 1 : 0;
673 if (__node == __root)
676 return __bc + __black_count(__node->_M_parent, __root);
H A D_slist.h254 _Node* __node = this->_M_head.allocate(1); local
256 _Copy_Construct(&__node->_M_data, __x);
257 __node->_M_next = 0;
259 _STLP_UNWIND(this->_M_head.deallocate(__node, 1))
260 return __node;
265 _Node* __node = this->_M_head.allocate(1); local
267 _STLP_STD::_Construct(&__node->_M_data);
268 __node->_M_next = 0;
270 _STLP_UNWIND(this->_M_head.deallocate(__node, 1))
271 return __node;
390 _Node_base* __node = this->_M_head._M_data._M_next; local
452 _Node* __node = __STATIC_CAST(_Node*, this->_M_head._M_data._M_next); local
[all...]

Completed in 264 milliseconds