Lines Matching refs:a0
204 adder_node a0(g, hidden); in test_adder() local
205 …CHECK_MESSAGE( (&tbb::flow::input_port<0>(a0) == &tbb::flow::input_port<0>(a0.j)), "input_port 0 o… in test_adder()
206 …CHECK_MESSAGE( (&tbb::flow::input_port<1>(a0) == &tbb::flow::input_port<1>(a0.j)), "input_port 1 o… in test_adder()
207 …CHECK_MESSAGE( (&tbb::flow::output_port<0>(a0) == &a0.f), "f not bound to output port 0 in composi… in test_adder()
210 …CHECK_MESSAGE( (&std::get<0>(a0.input_ports()) == &tbb::flow::input_port<0>(a0.j)), "input_port 0 … in test_adder()
211 …CHECK_MESSAGE( (&std::get<1>(a0.input_ports()) == &tbb::flow::input_port<1>(a0.j)), "input_port1 o… in test_adder()
212 …CHECK_MESSAGE( (&std::get<0>(a0.output_ports()) == &a0.f), "f not bound to output port 0 in compos… in test_adder()
227 tbb::flow::make_edge( s, tbb::flow::input_port<0>(a0) ); in test_adder()
228 tbb::flow::make_edge( c, tbb::flow::input_port<1>(a0) ); in test_adder()
233 tbb::flow::make_edge( tbb::flow::output_port<0>(a0), tbb::flow::input_port<0>(a2) ); in test_adder()
258 tbb::flow::make_edge( a0, a3 ); in test_adder()