Lines Matching refs:s3
214 tbb::flow::sequencer_node<T> s3(g, seq_inspector<T>()); in test_parallel() local
216 tbb::flow::make_edge( s2, s3 ); in test_parallel()
222 … utils::NativeParallelFor( num_threads, parallel_put_get<T>(s1, s3, num_threads, counter, t) ); in test_parallel()
231 CHECK_MESSAGE( s3.try_get( j ) == false, "" ); in test_parallel()
324 tbb::flow::sequencer_node<T> s3(g, seq_inspector<T>()); in test_serial() local
327 tbb::flow::make_edge( s3, s4 ); in test_serial()
331 bool msg = s3.try_put( T(i) ); in test_serial()
341 CHECK_MESSAGE( wait_try_get( g, s3, j ) == false, "" ); in test_serial()
347 tbb::flow::remove_edge( s3, s4 ); in test_serial()
348 CHECK_MESSAGE( s3.try_put( N ) == true, "" ); in test_serial()
353 CHECK_MESSAGE( wait_try_get( g, s3, j ) == true, "" ); in test_serial()
427 sequencer_node s3(s1); in test_deduction_guides_common() local
428 static_assert(std::is_same_v<decltype(s3), sequencer_node<int>>); in test_deduction_guides_common()