Home
last modified time | relevance | path

Searched refs:my_func (Results 1 – 4 of 4) sorted by relevance

/oneTBB/include/oneapi/tbb/
H A Dtask_arena.h42 F &my_func; variable
47 new (my_return_storage.begin()) R(my_func()); in operator()
51 task_arena_function(F& f) : my_func(f) {} in task_arena_function()
66 F &my_func; variable
68 my_func(); in operator()
72 task_arena_function(F& f) : my_func(f) {} in task_arena_function()
H A Dparallel_for.h185 const Function &my_func; variable
190 : my_func(_func), my_begin(_begin), my_step(_step) {} in parallel_for_body_wrapper()
206 tbb::detail::invoke(my_func, k); in operator()
/oneTBB/include/oneapi/tbb/detail/
H A D_template_helpers.h191 raii_guard( Func f ) noexcept : my_func(f), is_active(true) {}
193 raii_guard( raii_guard&& g ) noexcept : my_func(std::move(g.my_func)), is_active(g.is_active) {
199 my_func();
207 Func my_func;
H A D_utils.h379 delegated_function(FuncType& f) : my_func(f) {} in delegated_function()
382 return my_func(); in operator()
386 FuncType &my_func;