Searched refs:current_bucket_count (Results 1 – 1 of 1) sorted by relevance
669 size_type current_bucket_count = my_bucket_count.load(std::memory_order_acquire); in rehash() local670 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() local678 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()