Home
last modified time | relevance | path

Searched refs:ClassWithVectorType (Results 1 – 4 of 4) sorted by relevance

/oneTBB/test/common/
H A Dvector_types.h43 class ClassWithVectorType {
50 ClassWithVectorType() { init(-n); } in ClassWithVectorType() function
51 ClassWithVectorType( int i ) { init(i); } in ClassWithVectorType() function
52 ClassWithVectorType( const ClassWithVectorType& src ) { in ClassWithVectorType() function
58 ClassWithVectorType& operator=( const ClassWithVectorType& src ) {
69 ~ClassWithVectorType() { init(-2 * n); } in ~ClassWithVectorType()
71 friend bool operator==( const ClassWithVectorType& x, const ClassWithVectorType& y ) {
79 friend bool operator!=( const ClassWithVectorType& x, const ClassWithVectorType& y ) {
85 void ClassWithVectorType<Mvec>::init( int start ) { in init()
105 using ClassWithAVX = ClassWithVectorType<__m256>;
[all …]
/oneTBB/test/tbb/
H A Dtest_concurrent_queue.cpp74 template<typename ClassWithVectorType, typename Queue>
79 ClassWithVectorType bar(i); in TestVectorTypes()
89 ClassWithVectorType foo = *ci; in TestVectorTypes()
90 ClassWithVectorType bar(i); in TestVectorTypes()
96 ClassWithVectorType tmp; in TestVectorTypes()
99 ClassWithVectorType bar(i); in TestVectorTypes()
H A Dtest_parallel_for.cpp55 template<typename ClassWithVectorType>
57 ClassWithVectorType* Src, * Dst;
58 SSE_Functor( ClassWithVectorType* src, ClassWithVectorType* dst ) : Src(src), Dst(dst) {} in SSE_Functor()
67 template<typename ClassWithVectorType>
70 ClassWithVectorType Array1[aSize], Array2[aSize]; in TestVectorTypes()
73 ClassWithVectorType foo(i); in TestVectorTypes()
76 …tbb::parallel_for( tbb::blocked_range<int>(0,aSize), SSE_Functor<ClassWithVectorType>(Array1, Arra… in TestVectorTypes()
78 ClassWithVectorType foo(i); in TestVectorTypes()
H A Dtest_concurrent_vector.cpp119 template<typename ClassWithVectorType>
121 tbb::concurrent_vector<ClassWithVectorType> v; in TestVectorTypes()
124 ClassWithVectorType foo(i); in TestVectorTypes()
127 ClassWithVectorType bar(j); in TestVectorTypes()