Searched refs:ParallelScanBody (Results 1 – 1 of 1) sorted by relevance
| /oneTBB/test/common/ |
| H A D | concepts_common.h | 348 struct ParallelScanBody { struct 349 ParallelScanBody( ParallelScanBody&, tbb::split ) requires EnableSplitCtor {} in ParallelScanBody() function 351 void reverse_join( ParallelScanBody& ) requires (EnableReverseJoin == State::correct) {} in reverse_join() argument 354 void assign( ParallelScanBody& ) requires (EnableAssign == State::correct) {} in assign() argument 366 template <typename R> using Correct = ParallelScanBody<R, /*SplitCtor = */true, /*ReverseJoin = */S… argument 367 template <typename R> using NonSplittable = ParallelScanBody<R, /*SplitCtor = */false, /*ReverseJoi… 368 template <typename R> using NoReverseJoin = ParallelScanBody<R, /*SplitCtor = */true, /*ReverseJoin… 369 template <typename R> using WrongInputReverseJoin = ParallelScanBody<R, /*SplitCtor = */true, /*Rev… 370 template <typename R> using NoAssign = ParallelScanBody<R, /*SplitCtor = */true, /*ReverseJoin = */… 371 template <typename R> using WrongInputAssign = ParallelScanBody<R, /*SplitCtor = */true, /*ReverseJ… [all …]
|