Lines Matching refs:combinable

144     oneapi::tbb::combinable<T> &sums;
148 ParallelScalarBody ( oneapi::tbb::combinable<T> &_sums ) : sums(_sums) { } in ParallelScalarBody()
165 oneapi::tbb::combinable<T> &sums;
169 ParallelScalarBodyNoInit ( oneapi::tbb::combinable<T> &_sums ) : sums(_sums) { } in ParallelScalarBodyNoInit()
201 oneapi::tbb::combinable<T> sums; in RunParallelScalarTests()
207 oneapi::tbb::combinable<T> sums_to_clear; in RunParallelScalarTests()
214 oneapi::tbb::combinable<T> finit_combinable(my_finit_decl); in RunParallelScalarTests()
223 oneapi::tbb::combinable<T> copy_constructed(sums); in RunParallelScalarTests()
227 oneapi::tbb::combinable<T> assigned; in RunParallelScalarTests()
232 oneapi::tbb::combinable<T> moved1(std::move(sums)); in RunParallelScalarTests()
236 oneapi::tbb::combinable<T> moved2; in RunParallelScalarTests()
257 oneapi::tbb::combinable< std::vector<T, oneapi::tbb::tbb_allocator<T> > > &locals;
261 …ParallelVectorForBody ( oneapi::tbb::combinable< std::vector<T, oneapi::tbb::tbb_allocator<T> > > … in ParallelVectorForBody()
293 typedef typename oneapi::tbb::combinable< ContainerType > CombinableType; in RunParallelVectorTests()
355 oneapi::tbb::combinable<T> create1(my_finit7_decl); in RunAssignmentAndCopyConstructorTest()
359 oneapi::tbb::combinable<T> copy1(create1); in RunAssignmentAndCopyConstructorTest()
364 oneapi::tbb::combinable<T> assign1(my_finit_decl); in RunAssignmentAndCopyConstructorTest()
369 oneapi::tbb::combinable<T> move1(std::move(create1)); in RunAssignmentAndCopyConstructorTest()
373 oneapi::tbb::combinable<T> move2; in RunAssignmentAndCopyConstructorTest()
391 oneapi::tbb::combinable< StateTrackable<true> > create1; in RunMoveSemanticsForStateTrackableObjectTest()
396 oneapi::tbb::combinable< StateTrackable<true> > copy1(create1); in RunMoveSemanticsForStateTrackableObjectTest()
401 oneapi::tbb::combinable< StateTrackable<true> > copy2; in RunMoveSemanticsForStateTrackableObjectTest()
412 oneapi::tbb::combinable< StateTrackable<true> > move1(std::move(create1)); in RunMoveSemanticsForStateTrackableObjectTest()
428 oneapi::tbb::combinable<int>* locals;
452 oneapi::tbb::combinable<int> myCombinable; in TestLocalAllocations()