Lines Matching refs:f

49     my_input_body(int f, int s) : start(1), finish(f), step(s) {}  in my_input_body()  argument
169 tbb::flow::function_node< std::tuple< int, int >, int > f; 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 …s_type(tbb::flow::input_port<0>(j), tbb::flow::input_port<1>(j)), base_type::output_ports_type(f)); in adder_node()
186 base_type::add_nodes(j, f); in adder_node()
188 base_type::add_visible_nodes(j, f); in adder_node()
207 …CHECK_MESSAGE( (&tbb::flow::output_port<0>(a0) == &a0.f), "f not bound to output port 0 in composi… 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()
217 …CHECK_MESSAGE( (&tbb::flow::output_port<0>(a2) == &a2.f), "f not bound to output port 0 in composi… in test_adder()
222 …CHECK_MESSAGE( (&std::get<0>(a3.output_ports()) == &a3.f), "f not bound to output port 0 in compos… in test_adder()
349 tbb::flow::function_node< my_tuple_t, my_tuple_t > f; 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()
365 tbb::flow::make_edge( f, s ); 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()
454 f_type f(g, 1, passthru_body()); in input_only_output_only_composite() local
460 std::tuple<f_type& > input_tuple(f); in input_only_output_only_composite()
462 …CHECK_MESSAGE( (&std::get<0>(a_in.input_ports()) == &f), "f not bound to input port 0 in composite… in input_only_output_only_composite()
469 a_in.add_nodes(f, seq, que); in input_only_output_only_composite()
472 a_in.add_visible_nodes(f, seq, que); in input_only_output_only_composite()
477 tbb::flow::make_edge(f, seq); in input_only_output_only_composite()