Lines Matching refs:b2
202 tbb::flow::buffer_node<T> b2(g); in test_parallel() local
249 tbb::flow::make_edge( b, b2 ); in test_parallel()
250 tbb::flow::make_edge( b2, b3 ); in test_parallel()
263 CHECK_MESSAGE( b2.try_get( j ) == false, "" ); in test_parallel()
269 CHECK_MESSAGE( b.remove_successor( b2 ), "" ); in test_parallel()
320 tbb::flow::buffer_node<T> b2(g); in test_serial() local
327 CHECK_MESSAGE( register_predecessor<T>( b, b2 ) == false, "" ); in test_serial()
328 CHECK_MESSAGE( remove_predecessor<T>( b, b2 ) == false, "" ); in test_serial()
353 tbb::flow::make_edge(b, b2); in test_serial()
363 spin_try_get( b2, j ); in test_serial()
371 CHECK_MESSAGE( b2.try_get( j ) == false, "" ); in test_serial()
374 tbb::flow::remove_edge(b, b2); in test_serial()
377 CHECK_MESSAGE( b2.try_get( j ) == false, "" ); in test_serial()
384 tbb::flow::make_edge( b, b2 ); in test_serial()
385 tbb::flow::make_edge( b2, b3 ); in test_serial()
403 CHECK_MESSAGE( b2.try_get( j ) == false, "" ); in test_serial()
408 tbb::flow::remove_edge(b, b2); in test_serial()
411 CHECK_MESSAGE( b2.try_get( j ) == false, "" ); in test_serial()
448 buffer_node b2(precedes(br)); in test_deduction_guides() local
449 static_assert(std::is_same_v<decltype(b2), buffer_node<int>>); in test_deduction_guides()