HomeSort by relevance Sort by last modified time
    Searched full:__node (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /ndk/sources/cxx-stl/stlport/stlport/stl/
_slist_base.c 40 const _Slist_node_base* __node) {
41 while (__head && __head->_M_next != __node)
74 _Sl_global<_Dummy>::__reverse(_Slist_node_base* __node) {
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;
    [all...]
_slist_base.h 56 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);
_slist.h 254 _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...]
_slist.c 93 _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;
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_slist_base.c 40 const _Slist_node_base* __node) {
41 while (__head && __head->_M_next != __node)
74 _Sl_global<_Dummy>::__reverse(_Slist_node_base* __node) {
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;
    [all...]
_slist_base.h 56 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);
_slist.h 254 _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...]
_slist.c 93 _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;
  /external/mesa3d/src/glsl/
list.h 474 #define foreach_list_safe(__node, __list) \
475 for (exec_node * __node = (__list)->head, * __next = __node->next \
477 ; __node = __next, __next = __next->next)
479 #define foreach_list(__node, __list) \
480 for (exec_node * __node = (__list)->head \
481 ; (__node)->next != NULL \
482 ; (__node) = (__node)->next)
484 #define foreach_list_const(__node, __list)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
slist 81 const _Slist_node_base* __node)
83 while (__head && __head->_M_next != __node)
90 const _Slist_node_base* __node)
92 while (__head && __head->_M_next != __node)
126 __slist_reverse(_Slist_node_base* __node)
128 _Slist_node_base* __result = __node;
129 __node = __node->_M_next;
131 while(__node)
133 _Slist_node_base* __next = __node->_M_next
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
slist 81 const _Slist_node_base* __node)
83 while (__head && __head->_M_next != __node)
90 const _Slist_node_base* __node)
92 while (__head && __head->_M_next != __node)
126 __slist_reverse(_Slist_node_base* __node)
128 _Slist_node_base* __result = __node;
129 __node = __node->_M_next;
131 while(__node)
133 _Slist_node_base* __next = __node->_M_next
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
slist 81 const _Slist_node_base* __node)
83 while (__head && __head->_M_next != __node)
90 const _Slist_node_base* __node)
92 while (__head && __head->_M_next != __node)
126 __slist_reverse(_Slist_node_base* __node)
128 _Slist_node_base* __result = __node;
129 __node = __node->_M_next;
131 while(__node)
133 _Slist_node_base* __next = __node->_M_next
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
slist 81 const _Slist_node_base* __node)
83 while (__head && __head->_M_next != __node)
90 const _Slist_node_base* __node)
92 while (__head && __head->_M_next != __node)
126 __slist_reverse(_Slist_node_base* __node)
128 _Slist_node_base* __result = __node;
129 __node = __node->_M_next;
131 while(__node)
133 _Slist_node_base* __next = __node->_M_next
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/
unordered_base.h 44 const __detail::_Hash_node<_Value, true>* __node)
45 { return __node->_M_hash_code % __uc.bucket_count(); }
53 const __detail::_Hash_node<_Value, false>* __node)
54 { return __uc.bucket(__node->_M_v); }
65 const __detail::_Hash_node<_Value, false>* __node)
66 { return __uc.bucket(__node->_M_v.first); }
72 const __detail::_Hash_node<_Value, _Cache_hash_code>* __node)
76 return __bucket_index_helper::bucket(__uc, __node);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/
unordered_base.h 44 const __detail::_Hash_node<_Value, true>* __node)
45 { return __node->_M_hash_code % __uc.bucket_count(); }
53 const __detail::_Hash_node<_Value, false>* __node)
54 { return __uc.bucket(__node->_M_v); }
65 const __detail::_Hash_node<_Value, false>* __node)
66 { return __uc.bucket(__node->_M_v.first); }
72 const __detail::_Hash_node<_Value, _Cache_hash_code>* __node)
76 return __bucket_index_helper::bucket(__uc, __node);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/
unordered_base.h 44 const __detail::_Hash_node<_Value, true>* __node)
45 { return __node->_M_hash_code % __uc.bucket_count(); }
53 const __detail::_Hash_node<_Value, false>* __node)
54 { return __uc.bucket(__node->_M_v); }
65 const __detail::_Hash_node<_Value, false>* __node)
66 { return __uc.bucket(__node->_M_v.first); }
72 const __detail::_Hash_node<_Value, _Cache_hash_code>* __node)
76 return __bucket_index_helper::bucket(__uc, __node);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/
unordered_base.h 44 const __detail::_Hash_node<_Value, true>* __node)
45 { return __node->_M_hash_code % __uc.bucket_count(); }
53 const __detail::_Hash_node<_Value, false>* __node)
54 { return __uc.bucket(__node->_M_v()); }
65 const __detail::_Hash_node<_Value, false>* __node)
66 { return __uc.bucket(__node->_M_v().first); }
72 const __detail::_Hash_node<_Value, _Cache_hash_code>* __node)
76 return __bucket_index_helper::bucket(__uc, __node);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
hashtable.h 1541 __node_type* __node = this->_M_allocate_node(std::forward<_Args>(__args)...); local
1580 __node_type* __node = local
1747 __node_type* __node = __node_gen(std::forward<_Arg>(__v)); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
hashtable.h 1260 __node_type* __node = _M_allocate_node(std::forward<_Args>(__args)...); local
1299 __node_type* __node = _M_allocate_node(std::forward<_Args>(__args)...); local
1447 __node_type* __node = _M_allocate_node(std::forward<_Arg>(__v)); local
    [all...]
forward_list.tcc 367 _Node_base* __node = &this->_M_impl._M_head;
368 while (__node->_M_next && __list._M_impl._M_head._M_next)
373 (__node->_M_next)->_M_valptr()))
374 __node->_M_transfer_after(&__list._M_impl._M_head,
376 __node = __node->_M_next;
380 __node->_M_next = __list._M_impl._M_head._M_next;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
hashtable.h 1260 __node_type* __node = _M_allocate_node(std::forward<_Args>(__args)...); local
1299 __node_type* __node = _M_allocate_node(std::forward<_Args>(__args)...); local
1447 __node_type* __node = _M_allocate_node(std::forward<_Arg>(__v)); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
hashtable.h 1260 __node_type* __node = _M_allocate_node(std::forward<_Args>(__args)...); local
1299 __node_type* __node = _M_allocate_node(std::forward<_Args>(__args)...); local
1447 __node_type* __node = _M_allocate_node(std::forward<_Arg>(__v)); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
forward_list 298 >::type __node;
301 rebind<__node>
303 rebind<__node>::other
311 typedef typename __node::value_type value_type;
366 typedef __forward_list_node<value_type, void_pointer> __node;
370 rebind_alloc<__node>
372 rebind_alloc<__node>::other
556 typedef typename base::__node __node;
794 unique_ptr<__node, _Dp> __h(nullptr, _Dp(__a, 1))
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
forward_list 298 >::type __node;
301 rebind<__node>
303 rebind<__node>::other
311 typedef typename __node::value_type value_type;
366 typedef __forward_list_node<value_type, void_pointer> __node;
370 rebind_alloc<__node>
372 rebind_alloc<__node>::other
556 typedef typename base::__node __node;
794 unique_ptr<__node, _Dp> __h(nullptr, _Dp(__a, 1))
    [all...]
  /external/libcxx/include/
forward_list 297 >::type __node;
300 rebind<__node>
302 rebind<__node>::other
310 typedef typename __node::value_type value_type;
365 typedef __forward_list_node<value_type, void_pointer> __node;
367 typedef typename __rebind_alloc_helper<allocator_traits<allocator_type>, __node>::type __node_allocator;
532 typedef typename base::__node __node;
774 unique_ptr<__node, _Dp> __h(nullptr, _Dp(__a, 1));
795 unique_ptr<__node, _Dp> __h(nullptr, _Dp(__a, 1))
    [all...]

Completed in 1704 milliseconds

1 2 3 4