Lines Matching refs:context
392 void run_function_spec(Context&... context) { in run_function_spec() argument
400 tbb::parallel_pipeline( n_tokens, one_filter, context... ); in run_function_spec()
411 context... in run_function_spec()
424 Context&... context) { in run_filter_set()
432 tbb::parallel_pipeline( n_tokens, filter1, filter2, filter3, context... ); in run_filter_set()
443 tbb::parallel_pipeline( n_tokens, filter12, filter3, context... ); in run_filter_set()
450 tbb::parallel_pipeline( n_tokens, filter123, context... ); in run_filter_set()
458 tbb::parallel_pipeline( n_tokens, copy123, context... ); in run_filter_set()
462 tbb::parallel_pipeline( n_tokens, move123, context... ); in run_filter_set()
472 context... ); in run_filter_set()
487 tbb::parallel_pipeline( n_tokens, copy123, context... ); in run_filter_set()
496 tbb::parallel_pipeline( n_tokens, my_filter, context... ); in run_filter_set()
503 void run_lambdas_test( mode_array *filter_type, Context&... context ) { in run_lambdas_test() argument
520 context... in run_lambdas_test()
543 context... in run_lambdas_test()
565 context... in run_lambdas_test()
586 context... in run_lambdas_test()
631 tbb::task_group_context context; in run_function() local
633 …run_filter_set<type1,type2>(i_filter, m_filter, o_filter, filter_type, assert_nonpointer, context); in run_function()
635 …er_set<type1*,type2>(p_i_filter, pr_m_filter, o_filter, filter_type, assert_firstpointer, context); in run_function()
637 …r_set<type1,type2*>(i_filter, rp_m_filter, p_o_filter, filter_type, assert_secondpointer, context); in run_function()
639 …r_set<type1*,type2*>(p_i_filter, pp_m_filter, p_o_filter, filter_type, assert_allpointer, context); in run_function()
642 run_lambdas_test<type1,type2>(filter_type, context); in run_function()
655 tbb::task_group_context context; variable
656 run_function_spec(context);