Home
last modified time | relevance | path

Searched refs:ParallelForBody (Results 1 – 2 of 2) sorted by relevance

/oneTBB/test/common/
H A Dconcepts_common.h133 struct ParallelForBody { struct
134 ParallelForBody( const ParallelForBody& ) requires EnableCopyCtor = default;
136 ~ParallelForBody() requires EnableDtor = default;
137 ~ParallelForBody() = delete;
144 template <typename R> using Correct = ParallelForBody<R, /*CopyCtor = */true, /*Dtor = */true, /*()… argument
145 template <typename R> using NonCopyable = ParallelForBody<R, /*CopyCtor = */false, /*Dtor = */true,…
146 template <typename R> using NonDestructible = ParallelForBody<R, /*CopyCtor = */true, /*Dtor = */fa…
147 template <typename R> using NoOperatorRoundBrackets = ParallelForBody<R, /*CopyCtor = */true, /*Dto…
148 template <typename R> using OperatorRoundBracketsNonConst = ParallelForBody<R, /*CopyCtor = */true,…
149 template <typename R> using WrongInputOperatorRoundBrackets = ParallelForBody<R, /*CopyCtor = */tru…
/oneTBB/test/tbb/
H A Dtest_flow_graph_priorities.cpp302 struct ParallelForBody { struct
305 ParallelForBody(SpinBarrier& barrier, const data_type& input) in ParallelForBody() argument
317 …tbb::parallel_for(0, my_tasks_count, ParallelForBody(my_barrier, input), tbb::simple_partitioner()… in operator ()()