Home | History | Annotate | Download | only in left_child_next_sibling_heap_

Lines Matching refs:p_nd

46   node_pointer p_nd = m_p_root;
48 if (p_nd == 0)
51 while (p_nd->m_p_l_child != 0)
52 p_nd = p_nd->m_p_l_child;
54 return (iterator(p_nd));
62 node_pointer p_nd = m_p_root;
64 if (p_nd == 0)
67 while (p_nd->m_p_l_child != 0)
68 p_nd = p_nd->m_p_l_child;
70 return (const_iterator(p_nd));