Home | History | Annotate | Download | only in bin_search_tree_

Lines Matching refs:m_p_head

52   if (m_p_head->m_p_parent == NULL)
67 _GLIBCXX_DEBUG_ASSERT(m_p_head != NULL);
68 if (m_p_head->m_p_parent == NULL)
70 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_left == m_p_head);
71 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_right == m_p_head);
75 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_parent->m_p_parent == m_p_head);
76 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_left != m_p_head);
77 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_right != m_p_head);
80 if (m_p_head->m_p_parent != NULL)
81 assert_node_consistent(m_p_head->m_p_parent);
151 assert_min_imp(m_p_head->m_p_parent);
161 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_left == m_p_head);
167 _GLIBCXX_DEBUG_ASSERT(p_nd == m_p_head->m_p_left);
178 assert_max_imp(m_p_head->m_p_parent);
188 _GLIBCXX_DEBUG_ASSERT(m_p_head->m_p_right == m_p_head);
194 _GLIBCXX_DEBUG_ASSERT(p_nd == m_p_head->m_p_right);
249 assert_consistent_with_debug_base(m_p_head->m_p_parent);
269 _GLIBCXX_DEBUG_ASSERT(recursive_count(m_p_head->m_p_parent) == m_size);