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

/external/stlport/stlport/stl/
H A D_slist_base.c41 while (__head && __head->_M_next != __node)
42 __head = __head->_M_next;
51 _Slist_node_base* __after = __pos->_M_next;
52 __pos->_M_next = __head->_M_next;
53 __head->_M_next = 0;
54 __before_last->_M_next = __after;
64 _Slist_node_base* __first = __before_first->_M_next;
65 _Slist_node_base* __after = __pos->_M_next;
66 __before_first->_M_next
[all...]
H A D_slist.c46 _Slist_node_base* __cur = __before_first->_M_next;
49 __cur = __cur->_M_next;
53 __before_first->_M_next = __last_node;
73 _Node_base* __n1 = this->_M_head._M_data._M_next;
74 const _Node_base* __n2 = __x._M_head._M_data._M_next;
78 __n1 = __n1->_M_next;
79 __n2 = __n2->_M_next;
93 _Node_base* __node = this->_M_head._M_data._M_next;
97 __node = __node->_M_next;
108 while (__cur->_M_next !
[all...]
H A D_slist_base.h39 _Slist_node_base* _M_next; member in struct:_Slist_node_base
45 __new_node->_M_next = __prev_node->_M_next;
46 __prev_node->_M_next = __new_node;
H A D_list.c52 __last->_M_prev->_M_next = __position;
53 __first->_M_prev->_M_next = __last;
54 __position->_M_prev->_M_next = __first;
67 _Node* __cur = __STATIC_CAST(_Node*, _M_node._M_data._M_next);
74 __cur = __STATIC_CAST(_Node*, __cur->_M_next);
78 _M_node._M_data._M_next = &_M_node._M_data;
208 if (__that._M_node._M_data._M_next == &__that._M_node._M_data ||
209 __that._M_node._M_data._M_next->_M_next == &__that._M_node._M_data)
H A D_slist.h75 _M_node = _M_node->_M_next;
162 { _M_head._M_data._M_next = 0; }
167 { src.get()._M_head._M_data._M_next = 0; }
174 _Node* __next = __STATIC_CAST(_Node*, __pos->_M_next);
175 _Slist_node_base* __next_next = __next->_M_next;
176 __pos->_M_next = __next_next;
257 __node->_M_next = 0;
268 __node->_M_next = 0;
375 _Node_base* __node = this->_M_head._M_data._M_next;
379 __node = __node->_M_next;
[all...]
H A D_list.h58 _List_node_base* _M_next; member in struct:_List_node_base
91 void _M_incr() { _M_node = _M_node->_M_next; }
199 _M_node._M_data._M_prev->_M_next = _M_node._M_data._M_next->_M_prev = &_M_node._M_data;
208 bool empty() const { return _M_node._M_data._M_next == &_M_node._M_data; }
211 _M_node._M_data._M_next = &_M_node._M_data;
212 _M_node._M_data._M_prev = _M_node._M_data._M_next;
367 iterator begin() { return iterator(this->_M_node._M_data._M_next); }
368 const_iterator begin() const { return const_iterator(this->_M_node._M_data._M_next); }
393 __x._M_node._M_data._M_next
[all...]
/external/stlport/stlport/stl/debug/
H A D_debug.c127 _L_type* __pos = __prev->_M_next;
135 __prev->_M_next = __pos->_M_next;
140 __pos = __prev->_M_next;
151 _L_type* __pos = __prev->_M_next;
157 __prev->_M_next = __pos->_M_next;
162 __pos = __prev->_M_next;
179 _L_type* __pos = __src_prev->_M_next;
189 __src_prev->_M_next
[all...]
H A D_debug.h287 __owned_link(const __owned_list* __c) : _M_self(this), _M_owner(0), _M_next(0)
293 __owned_link(const __owned_list* __c) : _M_owner(0), _M_next(0)
323 void _Invalidate() { _M_owner = 0; _M_next = 0; }
324 void _Link_to_self() { _M_next = 0; }
326 __owned_link* _Next() { return _M_next; }
327 const __owned_link* _Next() const { return _M_next; }
335 __owned_link* _M_next; member in class:__owned_link
344 _M_node._M_next = 0;
360 const __owned_link* _First() const { return (__owned_link*)_M_node._M_next; }
/external/stlport/src/
H A Dlock_free_slist.h40 item* _M_next; member in struct:_STLP_atomic_freelist::item
72 "L1_%=: movl %%eax, (%%ebx)\n\t" // __item._M_next = _M._M_data._M_top
95 " movl (%%eax), %%ebx\n\t" // new top = _M._M_data._M_top->_M_next
187 item* _M_next; member in struct:_STLP_atomic_freelist::item
217 L1: mov [ebx], eax // __item._M_next = _M._M_data._M_top
242 mov ebx, [eax] // new top = _M._M_data._M_top->_M_next
H A Dallocators.cpp242 _Node_alloc_obj * _M_next; member in struct:_Node_alloc_obj
329 *__my_free_list = __r->_M_next;
346 __pobj->_M_next = *__my_free_list;
387 __REINTERPRET_CAST(_Obj*, _S_start_free)->_M_next = *__my_free_list;
408 *__my_free_list = __p -> _M_next;
423 __REINTERPRET_CAST(_Obj*, _S_start_free)->_M_next = _S_chunks;
451 __current_obj->_M_next = __next_obj;
453 __next_obj->_M_next = 0;
471 __pnext = __pcur->_M_next;
683 _Obj* __next = __chunk->_M_next;
[all...]

Completed in 125 milliseconds