Home | History | Annotate | Download | only in pat_trie_

Lines Matching refs:m_p_head

56   m_p_head(s_head_allocator.allocate(1)),
67 m_p_head(s_head_allocator.allocate(1)),
82 m_p_head(s_head_allocator.allocate(1)),
88 if (other.m_p_head->m_p_parent == NULL)
95 m_p_head->m_p_parent = recursive_copy_node(other.m_p_head->m_p_parent);
99 s_head_allocator.deallocate(m_p_head, 1);
103 m_p_head->m_p_min = leftmost_descendant(m_p_head->m_p_parent);
104 m_p_head->m_p_max = rightmost_descendant(m_p_head->m_p_parent);
105 m_p_head->m_p_parent->m_p_parent = m_p_head;
128 std::swap(m_p_head, other.m_p_head);
137 s_head_allocator.deallocate(m_p_head, 1);
145 new (m_p_head) head();
146 m_p_head->m_p_parent = NULL;
147 m_p_head->m_p_min = m_p_head;
148 m_p_head->m_p_max = m_p_head;