Lines Matching refs:t
104 parallel_gets( tbb::flow::buffer_node<T> &b, touches<T> &t) : my_b(b), my_touches(t) {} in parallel_gets()
122 parallel_put_get( tbb::flow::buffer_node<T> &b, touches<T> &t ) : my_b(b), my_touches(t) {} in parallel_put_get()
229 touches< T > t( num_threads ); in test_parallel() local
230 NativeParallelFor( num_threads, parallel_gets<T>(b, t) ); in test_parallel()
232 CHECK_MESSAGE( t.validate_touches(), "" ); in test_parallel()
240 touches< T > t( num_threads ); in test_parallel() local
241 NativeParallelFor( num_threads, parallel_put_get<T>(b, t) ); in test_parallel()
243 CHECK_MESSAGE( t.validate_touches(), "" ); in test_parallel()
254 touches< T > t( num_threads ); in test_parallel() local
255 NativeParallelFor( num_threads, parallel_gets<T>(b3, t) ); in test_parallel()
257 CHECK_MESSAGE( t.validate_touches(), "" ); in test_parallel()
284 touches< T > t( num_threads ); in test_parallel() local
285 NativeParallelFor( num_threads, parallel_gets<T>(b_copy, t) ); in test_parallel()
287 CHECK_MESSAGE( t.validate_touches(), "" ); in test_parallel()