Searched refs:p_pot (Results 1 – 5 of 5) sorted by relevance
48 node_pointer p_pot = m_p_head; in lower_bound() local56 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() local75 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() local92 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 …]
55 node_pointer p_pot = m_p_head; in insert_leaf() local61 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()
68 node_pointer p_pot = base_type::m_p_head; in insert_leaf_imp() local77 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()
112 node_pointer p_pot = p_nd->m_p_prev_or_parent; in parent() local114 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()
1273 node_pointer p_pot = *begin(); in leftmost_descendant() local1274 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() local1297 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()