Lines Matching refs:q3
256 tbb::flow::queue_node<T> q3(g); in test_parallel() local
305 tbb::flow::make_edge( q2, q3 ); in test_parallel()
310 utils::NativeParallelFor( num_threads, parallel_gets<T>(q3, t3) ); in test_parallel()
320 CHECK_MESSAGE( q3.try_get( j ) == false, "" ); in test_parallel()
425 tbb::flow::queue_node<T> q3(g); in test_serial() local
427 tbb::flow::make_edge( q2, q3 ); in test_serial()
436 spin_try_get( q3, j ); in test_serial()
445 CHECK_MESSAGE( q3.try_get( j ) == false, "" ); in test_serial()
454 CHECK_MESSAGE( q3.try_get( j ) == false, "" ); in test_serial()
491 queue_node q3(q0); in test_deduction_guides() local
492 static_assert(std::is_same_v<decltype(q3), queue_node<int>>); in test_deduction_guides()