Searched refs:producer_idx_ (Results 1 – 1 of 1) sorted by relevance
51 alignas(cache_alignment) std::atomic< std::size_t > producer_idx_{ 0 }; member in buffered_channel66 std::size_t idx{ producer_idx_.load( std::memory_order_relaxed) }; in is_full_()78 std::size_t idx{ producer_idx_.load( std::memory_order_relaxed) }; in try_push_()84 … if ( producer_idx_.compare_exchange_weak( idx, idx + 1, std::memory_order_relaxed) ) { in try_push_()90 idx = producer_idx_.load( std::memory_order_relaxed); in try_push_()