Home | History | Annotate | Download | only in binary_heap_

Lines Matching refs:a_entries

71   entry_pointer a_entries = NULL;
76 a_entries = s_entry_allocator.allocate(actual_size);
82 if (a_entries != NULL)
83 s_entry_allocator.deallocate(a_entries, actual_size);
95 std::copy(m_a_entries, m_a_entries + left, a_entries);
107 m_a_entries = a_entries;
131 entry_pointer a_entries = NULL;
136 a_entries = s_entry_allocator.allocate(actual_size);
141 if (a_entries != NULL)
142 s_entry_allocator.deallocate(a_entries, actual_size);
150 std::copy(m_a_entries, m_a_entries + m_size, a_entries);
151 std::copy(other.m_a_entries, other.m_a_entries + other.m_size, a_entries + m_size);
154 m_a_entries = a_entries;