Home
last modified time | relevance | path

Searched refs:bucket_count (Results 1 – 2 of 2) sorted by relevance

/petsc/include/petsc/private/cpp/
H A Dunordered_map.hpp104 PETSC_NODISCARD size_type bucket_count() const noexcept;
358 map_end = map_->bucket_count(); in operator ++()
413 map_end += map_->bucket_count(); in check_iterator_inbounds_()
620 const auto nb = bucket_count(); in find_and_emplace_final_()
672 auto target_size = bucket_count(); in khash_maybe_rehash_()
690 …PetscAssert(it < bucket_count(), PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Attempting to erase iterat… in khash_erase_()
719 const auto nb = bucket_count(); in khash_find_()
795 for (; it < bucket_count(); ++it) { in begin()
807 for (; it < bucket_count(); ++it) { in cbegin()
822 return make_iterator_(bucket_count()); in end()
[all …]
/petsc/src/sys/tests/
H A Dex64.cxx184 PetscCallCXX(oss << " bucket count: " << map.bucket_count() << '\n'); in view_map()