Searched refs:m_actual_size (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Dconstructors_destructor_fn_imps.hpp80 m_actual_size(resize_policy::min_size),
81 m_a_entries(s_entry_allocator.allocate(m_actual_size))
91 m_actual_size(resize_policy::min_size),
92 m_a_entries(s_entry_allocator.allocate(m_actual_size))
103 m_actual_size(other.m_actual_size),
104 m_a_entries(s_entry_allocator.allocate(m_actual_size))
125 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
153 std::swap(m_actual_size, other.m_actual_size);
[all...]
H A Ddebug_fn_imps.hpp55 s_entry_allocator.check_allocated(m_a_entries, m_actual_size);
59 _GLIBCXX_DEBUG_ASSERT(m_size <= m_actual_size);
H A Dsplit_join_fn_imps.hpp104 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
105 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size);
107 m_actual_size = actual_size;
108 other.m_actual_size = other_actual_size;
119 resize_policy::notify_arbitrary(m_actual_size);
120 other.notify_arbitrary(other.m_actual_size);
159 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
162 m_actual_size = actual_size;
168 s_entry_allocator.deallocate(other.m_a_entries, other.m_actual_size);
171 other.m_actual_size
[all...]
H A Derase_fn_imps.hpp63 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
65 m_actual_size = actual_size;
147 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
149 m_actual_size = actual_size;
151 resize_policy::notify_arbitrary(m_actual_size);
212 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
214 m_actual_size = new_actual_size;
H A Dtrace_fn_imps.hpp63 std::cerr << "size = " << m_size << " " << "actual_size = " << m_actual_size << std::endl;
H A Dinsert_fn_imps.hpp108 _GLIBCXX_DEBUG_ASSERT(m_size < m_actual_size);
122 s_entry_allocator.deallocate(m_a_entries, m_actual_size);
124 m_actual_size = new_actual_size;
H A Dbinary_heap_.hpp339 size_type m_actual_size; member in class:pb_ds::detail::binary_heap_

Completed in 106 milliseconds