Lines Matching refs:b3
203 tbb::flow::buffer_node<T> b3(g); in test_parallel() local
250 tbb::flow::make_edge( b2, b3 ); in test_parallel()
255 NativeParallelFor( num_threads, parallel_gets<T>(b3, t) ); in test_parallel()
265 CHECK_MESSAGE( b3.try_get( j ) == false, "" ); in test_parallel()
383 tbb::flow::buffer_node<T> b3(g); in test_serial() local
385 tbb::flow::make_edge( b2, b3 ); in test_serial()
395 spin_try_get( b3, j ); in test_serial()
405 CHECK_MESSAGE( b3.try_get( j ) == false, "" ); in test_serial()
414 CHECK_MESSAGE( b3.try_get( j ) == false, "" ); in test_serial()
452 buffer_node b3(b0); in test_deduction_guides() local
453 static_assert(std::is_same_v<decltype(b3), buffer_node<int>>); in test_deduction_guides()