Searched refs:a_p_entries_resized (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/cc_hash_table_map_/
H A Dresize_no_store_hash_fn_imps.hpp51 resize_imp_no_exceptions_reassign_pointer(entry_pointer p_e, entry_pointer_array a_p_entries_resized, false_type) argument
57 p_e->m_p_next = a_p_entries_resized[hash_pos];
58 a_p_entries_resized[hash_pos] = p_e;
H A Dresize_store_hash_fn_imps.hpp51 resize_imp_no_exceptions_reassign_pointer(entry_pointer p_e, entry_pointer_array a_p_entries_resized, true_type) argument
57 p_e->m_p_next = a_p_entries_resized[pos_hash_pair.first];
58 a_p_entries_resized[pos_hash_pair.first] = p_e;
H A Dresize_fn_imps.hpp92 entry_pointer_array a_p_entries_resized; local
100 a_p_entries_resized = s_entry_pointer_allocator.allocate(new_size);
110 resize_imp_no_exceptions(new_size, a_p_entries_resized, old_size);
118 resize_imp_no_exceptions(size_type new_size, entry_pointer_array a_p_entries_resized, size_type old_size) argument
120 std::fill(a_p_entries_resized, a_p_entries_resized + m_num_e,
127 p_e = resize_imp_no_exceptions_reassign_pointer(p_e, a_p_entries_resized, traits_base::m_store_extra_indicator);
131 _GLIBCXX_DEBUG_ONLY(assert_entry_pointer_array_valid(a_p_entries_resized);)
133 m_entries = a_p_entries_resized;

Completed in 227 milliseconds