Lines Matching refs:t1

417 template<typename t1, typename t2, typename... Context>
419 input_filter<t1>& i_filter, in run_filter_set()
420 middle_filter<t1,t2>& m_filter, in run_filter_set() argument
425 tbb::filter<void, t1> filter1( filter_type[0], i_filter ); in run_filter_set()
426 tbb::filter<t1, t2> filter2( filter_type[1], m_filter ); in run_filter_set()
469 tbb::filter<void, t1>(filter_type[0], i_filter), in run_filter_set()
470 tbb::filter<t1, t2>(filter_type[1], m_filter), in run_filter_set()
479 tbb::filter<void, t1>(filter_type[0], i_filter)& in run_filter_set()
480 tbb::filter<t1, t2>(filter_type[1], m_filter)& in run_filter_set()
494 fill_chain<t1,t2>( my_filter, filter_type, i_filter, m_filter, o_filter ); in run_filter_set()
502 template <typename t1, typename t2, typename... Context>
509 tbb::make_filter<void, t1>(filter_type[0], [&counter]( tbb::flow_control& control ) -> t1 { in run_lambdas_test()
512 return t1(); } in run_lambdas_test()
514 tbb::make_filter<t1, t2>(filter_type[1], []( t1 /*my_storage*/ ) -> t2 { in run_lambdas_test() argument
527 tbb::filter<void,t1*>(filter_type[0], [&counter]( tbb::flow_control& control ) -> t1* { in run_lambdas_test()
532 return new(fetchNextBuffer()) t1(); } in run_lambdas_test()
534 tbb::filter<t1*, t2*>(filter_type[1], []( t1* my_storage ) -> t2* { in run_lambdas_test()
535 my_storage->~t1(); in run_lambdas_test()
550 tbb::make_filter(filter_type[0], [&counter]( tbb::flow_control& control ) -> t1* { in run_lambdas_test()
555 return new(fetchNextBuffer()) t1(); } in run_lambdas_test()
557 tbb::make_filter(filter_type[1], []( t1* my_storage ) -> t2 { in run_lambdas_test()
558 my_storage->~t1(); in run_lambdas_test()
572 tbb::make_filter(filter_type[0], [&counter]( tbb::flow_control& control ) -> t1 { in run_lambdas_test()
576 return t1(); } in run_lambdas_test()
578 tbb::filter<t1, t2*>(filter_type[1], []( t1 /*my_storage*/ ) -> t2* { in run_lambdas_test() argument