Lines Matching refs:s2
164 …parallel_put_get( tbb::flow::sequencer_node<T> &s1, tbb::flow::sequencer_node<T> &s2, int num_thre… in parallel_put_get()
165 …std::atomic<int> &counter, touches<T> &t ) : my_s1(s1), my_s2(s2), my_num_threads(num_threads), my… in parallel_put_get()
213 tbb::flow::sequencer_node<T> s2(g, seq_inspector<T>()); in test_parallel() local
215 tbb::flow::make_edge( s1, s2 ); in test_parallel()
216 tbb::flow::make_edge( s2, s3 ); in test_parallel()
229 CHECK_MESSAGE( s2.try_get( j ) == false, "" ); in test_parallel()
267 tbb::flow::sequencer_node<T> s2(g, seq_inspector<T>()); in test_serial() local
274 CHECK_MESSAGE( register_predecessor( s, s2 ) == false, "" ); in test_serial()
275 CHECK_MESSAGE( remove_predecessor( s, s2 ) == false, "" ); in test_serial()
306 bool msg = s2.try_put( T(i) ); in test_serial()
312 CHECK_MESSAGE(wait_try_get( g, s2, j ) == true, ""); in test_serial()
317 CHECK_MESSAGE( s2.try_get( j ) == false, "" ); in test_serial()
423 sequencer_node s2(follows(br), body); in test_deduction_guides_common() local
424 static_assert(std::is_same_v<decltype(s2), sequencer_node<int>>); in test_deduction_guides_common()