Home | History | Annotate | Download | only in binary_heap_

Lines Matching refs:a_entries

63   entry_pointer a_entries = 0;
68 a_entries = s_entry_allocator.allocate(new_size);
73 if (a_entries != 0)
74 s_entry_allocator.deallocate(a_entries, new_size);
86 std::copy(m_a_entries, m_a_entries + left, a_entries);
98 m_a_entries = a_entries;
122 entry_pointer a_entries = 0;
127 a_entries = s_entry_allocator.allocate(new_size);
132 if (a_entries != 0)
133 s_entry_allocator.deallocate(a_entries, new_size);
141 std::copy(m_a_entries, m_a_entries + m_size, a_entries);
143 a_entries + m_size);
146 m_a_entries = a_entries;