Lines Matching refs:p

202     tbb::flow::function_node<int,int> p(g, tbb::flow::unlimited, passthru_body());  in test_adder()  local
383 prefix_node<double> p(g, hidden); in test_prefix() local
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()
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()
399 tbb::flow::make_edge( tbb::flow::output_port<0>(p), v[0] ); in test_prefix()
400 tbb::flow::make_edge( tbb::flow::output_port<1>(p), v[1] ); in test_prefix()
401 tbb::flow::make_edge( tbb::flow::output_port<2>(p), v[2] ); in test_prefix()
402 tbb::flow::make_edge( tbb::flow::output_port<3>(p), v[3] ); in test_prefix()
403 tbb::flow::make_edge( tbb::flow::output_port<4>(p), v[4] ); in test_prefix()
406 tbb::flow::input_port<0>(p).try_put( offset ); in test_prefix()
407 tbb::flow::input_port<1>(p).try_put( offset + 1 ); in test_prefix()
408 tbb::flow::input_port<2>(p).try_put( offset + 2 ); in test_prefix()
409 tbb::flow::input_port<3>(p).try_put( offset + 3 ); in test_prefix()
410 tbb::flow::input_port<4>(p).try_put( offset + 4 ); in test_prefix()