Home | History | Annotate | Download | only in pat_trie_

Lines Matching refs:m_p_left

47   p_x->m_p_right = p_y->m_p_left;
49 if (p_y->m_p_left != NULL)
50 p_y->m_p_left->m_p_parent = p_x;
55 else if (p_x == p_x->m_p_parent->m_p_left)
56 p_x->m_p_parent->m_p_left = p_y;
60 p_y->m_p_left = p_x;
75 node_pointer p_y = p_x->m_p_left;
76 p_x->m_p_left = p_y->m_p_right;
87 p_x->m_p_parent->m_p_left = p_y;
105 if (p_nd == p_parent->m_p_left)
110 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_left == p_parent || p_nd->m_p_right == p_parent);
125 p_update->operator()(& PB_DS_V2F(p_nd->m_value),(p_nd->m_p_left == NULL) ?
127 & PB_DS_V2F(p_nd->m_p_left->m_value),(p_nd->m_p_right == NULL) ?