Searched refs:m_p_nd (Results 1 - 25 of 49) sorted by relevance

12

/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/ext/pb_assoc/detail/bin_search_tree_/
H A Dfind_iterators.hpp84 const_it_(const node_pointer p_nd = NULL) : m_p_nd(const_cast<node_pointer>(p_nd))
91 : m_p_nd(r_other.m_p_nd)
99 m_p_nd = r_other.m_p_nd;
109 m_p_nd = r_other.m_p_nd;
117 PB_ASSOC_DBG_ASSERT(m_p_nd != NULL);
119 return (&m_p_nd->m_value);
125 PB_ASSOC_DBG_ASSERT(m_p_nd !
279 node_pointer m_p_nd; member in class:const_it_
307 my_base_it::m_p_nd = r_other.m_p_nd; member in class:it_::my_base_it
317 my_base_it::m_p_nd = r_other.m_p_nd; member in class:it_::my_base_it
[all...]
H A Dcond_dtor_entry_dealtor.hpp49 bin_search_tree_cond_dtor_entry_dealtor_(node_pointer p_nd) : m_p_nd(p_nd),
66 deallocate(m_p_nd, 1);
70 node_pointer m_p_nd; member in class:bin_search_tree_cond_dtor_entry_dealtor_
H A Dnode_iterators.hpp69 : m_p_nd(const_cast<node_pointer>(p_nd))
75 return (const_iterator(m_p_nd));
81 return (const_node_it_(m_p_nd->m_p_left));
87 return (const_node_it_(m_p_nd->m_p_right));
93 return (m_p_nd == r_other.m_p_nd);
99 return (m_p_nd != r_other.m_p_nd);
107 node_pointer m_p_nd; member in class:const_node_it_
126 return (iterator(const_node_it_::m_p_nd));
[all...]
H A Dcond_key_dtor_entry_dealtor.hpp49 bin_seach_tree_cond_key_dtor_entry_dealtor_(node_pointer p_nd) : m_p_nd(p_nd),
73 m_p_nd->m_value.first.~Key();
75 my_bin_tree_base::s_alloc.deallocate(m_p_nd, 1);
79 node_pointer m_p_nd; member in class:bin_seach_tree_cond_key_dtor_entry_dealtor_
H A Ddebug_fn_imps.hpp184 PB_ASSOC_DBG_ASSERT(m_end_it.m_p_nd == m_p_head);
185 PB_ASSOC_DBG_ASSERT(m_rend_it.m_p_nd == m_p_head);
196 PB_ASSOC_V2F(*it)).m_p_nd == it.m_p_nd);
203 PB_ASSOC_DBG_ASSERT(upper_bound_it.m_p_nd == it.m_p_nd);
225 PB_ASSOC_V2F(*reverse_it)).m_p_nd == reverse_it.m_p_nd);
232 PB_ASSOC_DBG_ASSERT(upper_bound_it.m_p_nd == reverse_it.m_p_nd);
[all...]
H A Derase_fn_imps.hpp78 m_p_head->m_p_left = it.m_p_nd;
86 m_p_head->m_p_right = it.m_p_nd;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/
H A Dcond_dtor_entry_dealtor.hpp45 bin_search_tree_cond_dtor_entry_dealtor_(node_pointer p_nd) : m_p_nd(p_nd),
62 deallocate(m_p_nd, 1);
66 node_pointer m_p_nd; member in class:bin_search_tree_cond_dtor_entry_dealtor_
H A Dcond_key_dtor_entry_dealtor.hpp45 bin_seach_tree_cond_key_dtor_entry_dealtor_(node_pointer p_nd) : m_p_nd(p_nd),
69 m_p_nd->m_value.first.~Key();
71 bin_tree_base::s_alloc.deallocate(m_p_nd, 1);
75 node_pointer m_p_nd; member in class:bin_seach_tree_cond_key_dtor_entry_dealtor_
H A Dpoint_iterators.hpp128 : m_p_nd(const_cast<Node_Pointer>(p_nd))
133 : m_p_nd(other.m_p_nd)
140 m_p_nd = other.m_p_nd;
148 m_p_nd = other.m_p_nd;
155 _GLIBCXX_DEBUG_ASSERT(m_p_nd != NULL);
156 return &m_p_nd->m_value;
162 _GLIBCXX_DEBUG_ASSERT(m_p_nd !
280 Node_Pointer m_p_nd; member in class:__gnu_pbds::detail::bin_search_tree_const_it_
313 base_it_type::m_p_nd = other.m_p_nd; member in class:__gnu_pbds::detail::bin_search_tree_it_::base_it_type
321 base_it_type::m_p_nd = other.m_p_nd; member in class:__gnu_pbds::detail::bin_search_tree_it_::base_it_type
[all...]
H A Dnode_iterators.hpp108 bin_search_tree_const_node_it_(const node_pointer p_nd = NULL) : m_p_nd(const_cast<node_pointer>(p_nd))
115 return (Const_Iterator(m_p_nd));
122 return (m_p_nd->get_metadata());
129 return (PB_DS_TREE_CONST_NODE_ITERATOR_CLASS_C_DEC(m_p_nd->m_p_left));
136 return (PB_DS_TREE_CONST_NODE_ITERATOR_CLASS_C_DEC(m_p_nd->m_p_right));
143 return (m_p_nd == other.m_p_nd);
150 return (m_p_nd != other.m_p_nd);
154 node_pointer m_p_nd; member in class:__gnu_pbds::detail::bin_search_tree_const_node_it_
[all...]
H A Ddebug_fn_imps.hpp211 _GLIBCXX_DEBUG_ASSERT(lower_bound(PB_DS_V2F(*it)).m_p_nd == it.m_p_nd);
214 _GLIBCXX_DEBUG_ASSERT(upper_bound_it.m_p_nd == it.m_p_nd);
230 PB_DS_V2F(*reverse_it)).m_p_nd == reverse_it.m_p_nd);
234 _GLIBCXX_DEBUG_ASSERT(upper_bound_it.m_p_nd == reverse_it.m_p_nd);
H A Derase_fn_imps.hpp74 m_p_head->m_p_left = it.m_p_nd;
82 m_p_head->m_p_right = it.m_p_nd;
H A Dr_erase_fn_imps.hpp74 m_p_head->m_p_left = it.m_p_nd;
82 m_p_head->m_p_right = it.m_p_nd;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/left_child_next_sibling_heap_/
H A Dconst_iterator.hpp111 { return (base_type::m_p_nd == other.m_p_nd); }
116 { return (base_type::m_p_nd != other.m_p_nd); }
121 _GLIBCXX_DEBUG_ASSERT(base_type::m_p_nd != NULL);
129 PB_DS_CLASS_C_DEC ret_it(base_type::m_p_nd);
138 if (base_type::m_p_nd->m_p_next_sibling != NULL)
140 base_type::m_p_nd = base_type::m_p_nd->m_p_next_sibling; member in class:__gnu_pbds::detail::left_child_next_sibling_heap_const_iterator_::base_type
141 while (base_type::m_p_nd
142 base_type::m_p_nd = base_type::m_p_nd->m_p_l_child; member in class:__gnu_pbds::detail::left_child_next_sibling_heap_const_iterator_::base_type
149 base_type::m_p_nd = base_type::m_p_nd->m_p_prev_or_parent; member in class:__gnu_pbds::detail::left_child_next_sibling_heap_const_iterator_::base_type
[all...]
H A Dconst_point_iterator.hpp105 left_child_next_sibling_heap_node_const_point_iterator_(node_pointer p_nd) : m_p_nd(p_nd)
110 left_child_next_sibling_heap_node_const_point_iterator_() : m_p_nd(NULL)
115 left_child_next_sibling_heap_node_const_point_iterator_(const PB_DS_CLASS_C_DEC& other) : m_p_nd(other.m_p_nd)
122 _GLIBCXX_DEBUG_ASSERT(m_p_nd != NULL);
123 return &m_p_nd->m_value;
130 _GLIBCXX_DEBUG_ASSERT(m_p_nd != NULL);
131 return m_p_nd->m_value;
137 { return m_p_nd == other.m_p_nd; }
145 node_pointer m_p_nd; member in class:__gnu_pbds::detail::left_child_next_sibling_heap_node_const_point_iterator_
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/
H A Dcond_dtor_entry_dealtor.hpp45 cond_dealtor(leaf_pointer p_nd) : m_p_nd(p_nd),
69 m_p_nd->~leaf();
71 s_leaf_allocator.deallocate(m_p_nd, 1);
75 leaf_pointer m_p_nd; member in class:cond_dealtor
H A Dpoint_iterators.hpp148 pat_trie_const_it_(node_pointer p_nd = NULL) : m_p_nd(p_nd)
153 : m_p_nd(other.m_p_nd)
160 m_p_nd = other.m_p_nd;
168 m_p_nd = other.m_p_nd;
175 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_leaf_node_type);
176 return &static_cast<leaf_pointer>(m_p_nd)->value();
182 _GLIBCXX_DEBUG_ASSERT(m_p_nd
347 node_pointer m_p_nd; member in class:__gnu_pbds::detail::pat_trie_const_it_
411 base_it_type::m_p_nd = other.m_p_nd; member in class:__gnu_pbds::detail::pat_trie_it_::base_it_type
419 base_it_type::m_p_nd = other.m_p_nd; member in class:__gnu_pbds::detail::pat_trie_it_::base_it_type
[all...]
H A Dnode_iterators.hpp119 if (m_p_nd->m_type == pat_trie_leaf_node_type)
122 static_cast<const_leaf_pointer>(m_p_nd)->value())));
124 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_internal_node_type);
126 return (static_cast<const_internal_node_pointer>(m_p_nd)->pref_b_it());
132 if (m_p_nd->m_type == pat_trie_leaf_node_type)
135 static_cast<const_leaf_pointer>(m_p_nd)->value())));
137 _GLIBCXX_DEBUG_ASSERT(m_p_nd->m_type == pat_trie_internal_node_type);
139 return (static_cast<const_internal_node_pointer>(m_p_nd)->pref_e_it());
185 : m_p_nd(const_cast<node_pointer>(p_nd)), m_p_traits(p_traits)
199 return Const_Iterator(m_p_nd);
245 node_pointer m_p_nd; member in class:__gnu_pbds::detail::pat_trie_const_node_it_
[all...]
H A Derase_fn_imps.hpp179 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type);
180 erase_leaf(static_cast<leaf_pointer>(it.m_p_nd));
197 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type);
198 erase_leaf(static_cast<leaf_pointer>(it.m_p_nd));
211 if (it.m_p_nd == m_p_head)
216 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type);
217 erase_leaf(static_cast<leaf_pointer>(it.m_p_nd));
230 if (it.m_p_nd == m_p_head)
235 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type);
236 erase_leaf(static_cast<leaf_pointer>(it.m_p_nd));
[all...]
H A Dr_erase_fn_imps.hpp68 m_p_head->m_p_left = it.m_p_nd;
74 m_p_head->m_p_right = it.m_p_nd;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/ext/pb_assoc/detail/splay_tree_/
H A Dinsert_fn_imps.hpp55 ins_pair.first.m_p_nd->m_special = false;
59 splay(ins_pair.first.m_p_nd);
78 ins_pair.first.m_p_nd->m_special = false;
82 splay(ins_pair.first.m_p_nd);
86 return (ins_pair.first.m_p_nd->m_value.second);
H A Dfind_fn_imps.hpp53 splay(it.m_p_nd);
66 splay(it.m_p_nd);
79 splay(it.m_p_nd);
92 splay(it.m_p_nd);
105 splay(it.m_p_nd);
118 const_cast<PB_ASSOC_CLASS_C_DEC* >(this)->splay(it.m_p_nd);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/pairing_heap_/
H A Dinsert_fn_imps.hpp93 remove_node(it.m_p_nd);
95 it.m_p_nd->m_value = r_new_val;
97 push_imp(it.m_p_nd);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/ext/pb_assoc/detail/rb_tree_map_/
H A Dinsert_fn_imps.hpp57 ins_pair.first.m_p_nd->m_red = true;
61 insert_fixup(ins_pair.first.m_p_nd);
84 ins_pair.first.m_p_nd->m_red = true;
88 insert_fixup(ins_pair.first.m_p_nd);
94 return (ins_pair.first.m_p_nd->m_value.second);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/splay_tree_/
H A Dinsert_fn_imps.hpp48 ins_pair.first.m_p_nd->m_special = false;
50 splay(ins_pair.first.m_p_nd);

Completed in 108 milliseconds

12