Lines Matching refs:s
49 my_input_body(int f, int s) : start(1), finish(f), step(s) {} in my_input_body() argument
200 tbb::flow::function_node<int,int> s(g, tbb::flow::unlimited, square_body()); in test_adder() local
227 tbb::flow::make_edge( s, tbb::flow::input_port<0>(a0) ); in test_adder()
242 s.try_put(i); in test_adder()
266 s.try_put(i); in test_adder()
347 tbb::flow::split_node< my_tuple_t > s; 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()
365 tbb::flow::make_edge( f, s ); in prefix_node()
369 …:output_port<0>(s), tbb::flow::output_port<1>(s), tbb::flow::output_port<2>(s), tbb::flow::output_… 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()
392 …CHECK_MESSAGE( (&std::get<0>(p.output_ports()) == &tbb::flow::output_port<0>(p.s)), "output port 0… in test_prefix()
393 …CHECK_MESSAGE( (&tbb::flow::output_port<1>(p.s) == &tbb::flow::output_port<1>(p.s)), "output port … in test_prefix()
394 …CHECK_MESSAGE( (&std::get<2>(p.output_ports()) == &tbb::flow::output_port<2>(p.s)), "output port 2… in test_prefix()
395 …CHECK_MESSAGE( (&tbb::flow::output_port<3>(p.s) == &tbb::flow::output_port<3>(p.s)), "output port … in test_prefix()
396 …CHECK_MESSAGE( (&std::get<4>(p.output_ports()) == &tbb::flow::output_port<4>(p.s)), "output port 4… in test_prefix()