Home | History | Annotate | Download | only in pat_trie_

Lines Matching refs:m_p_head

57   m_p_head(s_head_allocator.allocate(1)),
68 m_p_head(s_head_allocator.allocate(1)),
83 m_p_head(s_head_allocator.allocate(1)),
89 if (other.m_p_head->m_p_parent == 0)
96 m_p_head->m_p_parent = recursive_copy_node(other.m_p_head->m_p_parent);
100 s_head_allocator.deallocate(m_p_head, 1);
104 m_p_head->m_p_min = leftmost_descendant(m_p_head->m_p_parent);
105 m_p_head->m_p_max = rightmost_descendant(m_p_head->m_p_parent);
106 m_p_head->m_p_parent->m_p_parent = m_p_head;
129 std::swap(m_p_head, other.m_p_head);
138 s_head_allocator.deallocate(m_p_head, 1);
146 new (m_p_head) head();
147 m_p_head->m_p_parent = 0;
148 m_p_head->m_p_min = m_p_head;
149 m_p_head->m_p_max = m_p_head;