Home
last modified time | relevance | path

Searched refs:__c_node (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/include/
D__debug27 struct _LIBCPP_VISIBLE __c_node;
33 __c_node* __c_;
38 __i_node(void* __i, __i_node* __next, __c_node* __c)
43 struct _LIBCPP_VISIBLE __c_node
46 __c_node* __next_;
51 __c_node(const __c_node&) = delete;
52 __c_node& operator=(const __c_node&) = delete;
54 __c_node(void* __c, __c_node* __next)
56 virtual ~__c_node();
69 : public __c_node
[all …]
Dlist690 __c_node* __c = __get_db()->__find_c_and_lock(this);
734 __c_node* __cn1 = __db->__find_c_and_lock(this);
735 __c_node* __cn2 = __db->__find_c(&__c);
1572 __c_node* __c = __get_db()->__find_c_and_lock(this);
1600 __c_node* __c = __get_db()->__find_c_and_lock(this);
1633 __c_node* __c = __get_db()->__find_c_and_lock(this);
1675 __c_node* __c = __get_db()->__find_c_and_lock(this);
1839 __c_node* __cn1 = __db->__find_c_and_lock(this);
1840 __c_node* __cn2 = __db->__find_c(&__c);
1882 __c_node* __cn1 = __db->__find_c_and_lock(this);
[all …]
Dvector776 __c_node* __c = __get_db()->__find_c_and_lock(this);
/ndk/sources/cxx-stl/llvm-libc++/src/
Ddebug.cpp60 __c_node::~__c_node() in ~__c_node()
65 __next_->~__c_node(); in ~__c_node()
84 for (__c_node** p = __cbeg_; p != __cend_; ++p) in ~__libcpp_db()
88 (*p)->~__c_node(); in ~__libcpp_db()
129 __c_node* c = __cbeg_[hc]; in __insert_ic()
140 __c_node*
147 __c_node** cbeg = (__c_node**)calloc(nc, sizeof(void*)); in __insert_c()
154 for (__c_node** p = __cbeg_; p != __cend_; ++p) in __insert_c()
156 __c_node* q = *p; in __insert_c()
160 __c_node* r = q->__next_; in __insert_c()
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
D_debug.c534 __stl_debug_engine<_Dummy>::_M_detach(__owned_list* __l, __owned_link* __c_node) { in _M_detach() argument
541 if(__c_node->_M_owner != 0) { in _M_detach()
544 for (__prev = &__l->_M_node; (__next = __prev->_M_next) != __c_node; in _M_detach()
549 __prev->_M_next = __c_node->_M_next; in _M_detach()
550 __c_node->_M_owner=0; in _M_detach()
558 __stl_debug_engine<_Dummy>::_M_attach(__owned_list* __l, __owned_link* __c_node) { in _M_attach() argument
560 (__c_node)->_M_owner = 0; in _M_attach()
564 __c_node->_M_owner = __l; in _M_attach()
565 __c_node->_M_next = __l->_M_node._M_next; in _M_attach()
566 __l->_M_node._M_next = __c_node; in _M_attach()