Home
last modified time | relevance | path

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

/oneTBB/include/oneapi/tbb/detail/
H A D_concurrent_unordered_base.h669 size_type current_bucket_count = my_bucket_count.load(std::memory_order_acquire); in rehash() local
670 if (current_bucket_count < bucket_count) { in rehash()
672 …my_bucket_count.compare_exchange_strong(current_bucket_count, round_up_to_power_of_two(bucket_coun… in rehash()
677 size_type current_bucket_count = my_bucket_count.load(std::memory_order_acquire); in reserve() local
678 size_type necessary_bucket_count = current_bucket_count; in reserve()
687 … while (!my_bucket_count.compare_exchange_strong(current_bucket_count, necessary_bucket_count)) { in reserve()
688 if (current_bucket_count >= necessary_bucket_count) in reserve()