Home
last modified time | relevance | path

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

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/
Dfind_fn_imps.hpp48 node_pointer p_pot = m_p_head; in lower_bound() local
56 p_pot = p_nd; in lower_bound()
59 return iterator(p_pot); in lower_bound()
67 node_pointer p_pot = m_p_head; in lower_bound() local
75 p_pot = p_nd; in lower_bound()
78 return iterator(p_pot); in lower_bound()
86 node_pointer p_pot = m_p_head; in upper_bound() local
92 p_pot = p_nd; in upper_bound()
97 return const_iterator(p_pot); in upper_bound()
105 node_pointer p_pot = m_p_head; in upper_bound() local
[all …]
Dinsert_fn_imps.hpp55 node_pointer p_pot = m_p_head; in insert_leaf() local
61 p_pot = p_nd; in insert_leaf()
68 if (p_pot == m_p_head) in insert_leaf()
73 PB_DS_V2F(p_pot->m_value))) in insert_leaf()
77 return std::make_pair(p_pot, false); in insert_leaf()
82 p_nd = p_pot->m_p_left; in insert_leaf()
84 return std::make_pair(insert_leaf_new(r_value, p_pot, true), in insert_leaf()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/splay_tree_/
Dinsert_fn_imps.hpp68 node_pointer p_pot = base_type::m_p_head; in insert_leaf_imp() local
77 p_pot = p_nd; in insert_leaf_imp()
83 if (p_pot == base_type::m_p_head) in insert_leaf_imp()
88 p_nd = p_pot->m_p_left; in insert_leaf_imp()
90 return (std::make_pair(base_type::insert_leaf_new(r_value, p_pot, true), true)); in insert_leaf_imp()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/left_child_next_sibling_heap_/
Dinsert_fn_imps.hpp112 node_pointer p_pot = p_nd->m_p_prev_or_parent; in parent() local
114 if (p_pot == 0 || p_pot->m_p_l_child == p_nd) in parent()
115 return p_pot; in parent()
117 p_nd = p_pot; in parent()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/
Dpat_trie_base.hpp1273 node_pointer p_pot = *begin(); in leftmost_descendant() local
1274 if (p_pot->m_type == leaf_node) in leftmost_descendant()
1275 return (static_cast<leaf_pointer>(p_pot)); in leftmost_descendant()
1276 _GLIBCXX_DEBUG_ASSERT(p_pot->m_type == i_node); in leftmost_descendant()
1277 return static_cast<inode_pointer>(p_pot)->leftmost_descendant(); in leftmost_descendant()
1296 node_pointer p_pot =* it; in rightmost_descendant() local
1297 if (p_pot->m_type == leaf_node) in rightmost_descendant()
1298 return static_cast<leaf_pointer>(p_pot); in rightmost_descendant()
1299 _GLIBCXX_DEBUG_ASSERT(p_pot->m_type == i_node); in rightmost_descendant()
1300 return static_cast<inode_pointer>(p_pot)->rightmost_descendant(); in rightmost_descendant()