Home
last modified time | relevance | path

Searched refs:Functor (Results 1 – 6 of 6) sorted by relevance

/oneTBB/test/common/
H A Dparallel_invoke_common.h33 …public generate_tuple_impl<Counter - 1, Functor, Generator, typename Generator::template type<Func…
35 template<template <std::size_t> class Functor, class Generator, typename... Fs>
36 struct generate_tuple_impl <0, Functor, Generator, Fs...> {
40 template<std::size_t Size, template <std::size_t> class Functor, class Generator>
41 using generate_tuple = typename generate_tuple_impl<Size, Functor, Generator>::type;
45 template <template <std::size_t> class Functor, std::size_t NonTypeArg>
46 using type = Functor<NonTypeArg>;
51 template <template <std::size_t> class Functor, std::size_t NonTypeArg>
52 using type = Functor<Fixed>;
96 template<std::size_t TaskCount, template<std::size_t> class Functor>
[all …]
H A Dparallel_for_each_common.h323 template< template<typename> class IteratorModifier, typename Functor = incremental_functor>
326 tbb::parallel_for_each(container, Functor{}); in container_based_overload_test_case()
/oneTBB/include/oneapi/tbb/detail/
H A D_utils.h293 template<typename Functor> in atomic_do_once()
294 void run_initializer(const Functor& f, std::atomic<do_once_state>& state ) { in atomic_do_once()
/oneTBB/test/tbb/
H A Dtest_task_arena.cpp1275 struct Functor { struct
1314 TestExecute(Functor<ReturnType>()); in Test()
1315 Functor<ReturnType> f1; in Test()
1319 arena().execute(Functor<void>()); in Test()
1320 Functor<void> f2; in Test()
1323 TestIsolate(Functor<ReturnType>()); in Test()
1326 tbb::this_task_arena::isolate(Functor<void>()); in Test()
/oneTBB/doc/main/tbb_userguide/
H A DWorking_on_the_Assembly_Line_pipeline.rst209 // Functor that writes a TextSlice to a file.
246 // Functor that changes each decimal number to its square.
/oneTBB/doc/main/tbb_userguide/Migration_Guide/
H A DTask_API.rst64 struct Functor {