Searched refs:ClassWithVectorType (Results 1 – 4 of 4) sorted by relevance
| /oneTBB/test/common/ |
| H A D | vector_types.h | 43 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 D | test_concurrent_queue.cpp | 74 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 D | test_parallel_for.cpp | 55 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 D | test_concurrent_vector.cpp | 119 template<typename ClassWithVectorType> 121 tbb::concurrent_vector<ClassWithVectorType> v; in TestVectorTypes() 124 ClassWithVectorType foo(i); in TestVectorTypes() 127 ClassWithVectorType bar(j); in TestVectorTypes()
|