Lines Matching refs:broadcast_node
85 tbb::flow::broadcast_node<T> b(g); in test_serial_broadcasts()
116 tbb::flow::broadcast_node<T> &my_b;
120 native_body( tbb::flow::broadcast_node<T> &b ) : my_b(b) {} in native_body()
131 void run_parallel_broadcasts(tbb::flow::graph& g, int p, tbb::flow::broadcast_node<T>& b) { in run_parallel_broadcasts()
159 tbb::flow::broadcast_node<T> b(g); in test_parallel_broadcasts()
163 tbb::flow::broadcast_node<T> b_copy(b); in test_parallel_broadcasts()
172 tbb::flow::broadcast_node<T> b0(g); in test_resets()
173 tbb::flow::broadcast_node<T> b1(g); in test_resets()
216 …follows_and_precedes_testing::test_follows <msg_t, tbb::flow::broadcast_node<msg_t>>(messages_for_… in test_follows_and_precedes_api()
217 …follows_and_precedes_testing::test_precedes <msg_t, tbb::flow::broadcast_node<msg_t>>(messages_for… in test_follows_and_precedes_api()
227 broadcast_node<int> b0(g); in test_deduction_guides()
231 broadcast_node b1(follows(buf)); in test_deduction_guides()
232 static_assert(std::is_same_v<decltype(b1), broadcast_node<int>>); in test_deduction_guides()
234 broadcast_node b2(precedes(buf)); in test_deduction_guides()
235 static_assert(std::is_same_v<decltype(b2), broadcast_node<int>>); in test_deduction_guides()
238 broadcast_node b3(b0); in test_deduction_guides()
239 static_assert(std::is_same_v<decltype(b3), broadcast_node<int>>); in test_deduction_guides()