Home
last modified time | relevance | path

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

/oneTBB/test/conformance/
H A Dconformance_parallel_for.cpp68 template<size_t Pad_> friend class FooBody;
85 class FooBody { class
87 ~FooBody() { in ~FooBody()
93 FooBody( const FooBody& other ) : array(other.array), state(other.state) { in FooBody() function in FooBody
109 FooBody( std::atomic<int>* array_ ) : array(array_), state(LIVE) {} in FooBody() function in FooBody
158 FooBody<Pad> f( Array ); in Flog()
159 const FooBody<Pad> fc = f; in Flog()
167 Invoker< Flavor, empty_partitioner_tag, FooRange<Pad>, FooBody<Pad> > invoke_for; in Flog()
172 … Invoker< Flavor, const oneapi::tbb::simple_partitioner, FooRange<Pad>, FooBody<Pad> > invoke_for; in Flog()
177 … Invoker< Flavor, const oneapi::tbb::auto_partitioner, FooRange<Pad>, FooBody<Pad> > invoke_for; in Flog()
[all …]
/oneTBB/test/tbb/
H A Dtest_parallel_reduce.cpp452 friend class FooBody;
464 class FooBody { class
466 FooBody( const FooBody& ); // Deny access
467 void operator=( const FooBody& ); // Deny access
470 FooBody* parent;
479 FooBody() {++FooBodyCount;} in FooBody() function in FooBody
481 ~FooBody() { in ~FooBody()
486 FooBody( FooBody& other, tbb::split ) { in FooBody() function in FooBody
504 void join( FooBody& s ) { in join()
530 FooBody f; in TestSplitting()