Lines Matching refs:j
141 int i, j =0; in test_tiny() local
144 q.try_get(j); in test_tiny()
145 CHECK_MESSAGE( ( !j), "unexpected item in graph"); in test_tiny()
160 q.try_get(j); in test_tiny()
161 CHECK_MESSAGE( ( !j), "unexpected item in graph after removal of edge"); in test_tiny()
168 tbb::flow::join_node< std::tuple< int, int >, tbb::flow::queueing > j; member in adder_node
180 …adder_node(tbb::flow::graph &g, bool hidden = false) : base_type(g), j(g), f(g, tbb::flow::unlimit… in adder_node()
181 tbb::flow::make_edge( j, f ); in adder_node()
183 …l_ports(base_type::input_ports_type(tbb::flow::input_port<0>(j), tbb::flow::input_port<1>(j)), bas… in adder_node()
186 base_type::add_nodes(j, f); in adder_node()
188 base_type::add_visible_nodes(j, f); in adder_node()
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()
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()
215 …CHECK_MESSAGE( (&tbb::flow::input_port<0>(a2) == &tbb::flow::input_port<0>(a2.j)), "input_port 0 o… in test_adder()
216 …CHECK_MESSAGE( (&tbb::flow::input_port<1>(a2) == &tbb::flow::input_port<1>(a2.j)), "input_port 1 o… in test_adder()
220 …CHECK_MESSAGE( (&std::get<0>(a3.input_ports()) == &tbb::flow::input_port<0>(a3.j)), "input_port 0 … in test_adder()
221 …CHECK_MESSAGE( (&std::get<1>(a3.input_ports()) == &tbb::flow::input_port<1>(a3.j)), "input_port1 o… in test_adder()
248 int j; in test_adder() local
250 q.try_get(j); in test_adder()
251 result += j; in test_adder()
273 q.try_get(j); in test_adder()
274 result += j; in test_adder()
346 tbb::flow::join_node< my_tuple_t, tbb::flow::queueing > j; member in prefix_node
363 …prefix_node(tbb::flow::graph &g, bool hidden = false ) : base_type(g), j(g), s(g), f(g, tbb::flow:… in prefix_node()
364 tbb::flow::make_edge( j, f ); in prefix_node()
367 …ow::input_port<0>(j), tbb::flow::input_port<1>(j), tbb::flow::input_port<2>(j), tbb::flow::input_p… in prefix_node()
374 base_type::add_nodes(j,s,f); in prefix_node()
376 base_type::add_visible_nodes(j,s,f); in prefix_node()
385 …CHECK_MESSAGE( (&std::get<0>(p.input_ports()) == &tbb::flow::input_port<0>(p.j)), "input port 0 of… in test_prefix()
386 …CHECK_MESSAGE( (&tbb::flow::input_port<1>(p.j) == &tbb::flow::input_port<1>(p.j)), "input port 1 o… in test_prefix()
387 …CHECK_MESSAGE( (&std::get<2>(p.input_ports()) == &tbb::flow::input_port<2>(p.j)), "input port 2 of… in test_prefix()
388 …CHECK_MESSAGE( (&tbb::flow::input_port<3>(p.j) == &tbb::flow::input_port<3>(p.j)), "input port 3 o… in test_prefix()
389 …CHECK_MESSAGE( (&std::get<4>(p.input_ports()) == &tbb::flow::input_port<4>(p.j)), "input port 4 of… in test_prefix()