Home | History | Annotate | Download | only in binary_heap_

Lines Matching refs:a_entries

72   entry_pointer a_entries = 0;
77 a_entries = s_entry_allocator.allocate(actual_size);
83 if (a_entries != 0)
84 s_entry_allocator.deallocate(a_entries, actual_size);
96 std::copy(m_a_entries, m_a_entries + left, a_entries);
108 m_a_entries = a_entries;
132 entry_pointer a_entries = 0;
137 a_entries = s_entry_allocator.allocate(actual_size);
142 if (a_entries != 0)
143 s_entry_allocator.deallocate(a_entries, actual_size);
151 std::copy(m_a_entries, m_a_entries + m_size, a_entries);
152 std::copy(other.m_a_entries, other.m_a_entries + other.m_size, a_entries + m_size);
155 m_a_entries = a_entries;