Home
last modified time | relevance | path

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

/external/libcxx/include/
D__debug33 struct _LIBCPP_TYPE_VIS __c_node;
39 __c_node* __c_;
51 __i_node(void* __i, __i_node* __next, __c_node* __c)
56 struct _LIBCPP_TYPE_VIS __c_node
59 __c_node* __next_;
65 __c_node(const __c_node&) = delete;
66 __c_node& operator=(const __c_node&) = delete;
69 __c_node(const __c_node&);
70 __c_node& operator=(const __c_node&);
74 __c_node(void* __c, __c_node* __next)
[all …]
Dlist724 __c_node* __c = __get_db()->__find_c_and_lock(this);
772 __c_node* __cn1 = __db->__find_c_and_lock(this);
773 __c_node* __cn2 = __db->__find_c(&__c);
1645 __c_node* __c = __get_db()->__find_c_and_lock(this);
1673 __c_node* __c = __get_db()->__find_c_and_lock(this);
1708 __c_node* __c = __get_db()->__find_c_and_lock(this);
1750 __c_node* __c = __get_db()->__find_c_and_lock(this);
1916 __c_node* __cn1 = __db->__find_c_and_lock(this);
1917 __c_node* __cn2 = __db->__find_c(&__c);
1960 __c_node* __cn1 = __db->__find_c_and_lock(this);
[all …]
D__hash_table1333 __c_node* __c = __get_db()->__find_c_and_lock(this);
2248 __c_node* __c = __get_db()->__find_c_and_lock(this);
Dvector805 __c_node* __c = __get_db()->__find_c_and_lock(this);
Dstring1873 __c_node* __c = __get_db()->__find_c_and_lock(this);
/external/libcxx/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()
124 __c_node* c = __cbeg_[hc]; in __insert_ic()
138 __c_node*
145 __c_node** cbeg = static_cast<__c_node**>(calloc(nc, sizeof(void*))); in __insert_c()
152 for (__c_node** p = __cbeg_; p != __cend_; ++p) in __insert_c()
154 __c_node* q = *p; in __insert_c()
158 __c_node* r = q->__next_; in __insert_c()
[all …]
/external/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()