Lines Matching refs:vs
647 ets_type vs; in run_parallel_vector_tests() local
649 REQUIRE( vs.empty() ); in run_parallel_vector_tests()
651 parallel_vector_for_body<T,Allocator>( vs, allocator_name ) ); in run_parallel_vector_tests()
652 REQUIRE( !vs.empty() ); in run_parallel_vector_tests()
655 ets_type vs2(vs); // this causes an assertion failure, related to allocators... in run_parallel_vector_tests()
659 vs3 = vs; in run_parallel_vector_tests()
662 oneapi::tbb::parallel_reduce ( vs.range(1), pvrb ); in run_parallel_vector_tests()
666 REQUIRE( vs.size() == pvrb.count ); in run_parallel_vector_tests()
670 oneapi::tbb::flattened2d<ets_type> fvs = flatten2d(vs); in run_parallel_vector_tests()
734 ets_nokey_type vs; in run_cross_type_vector_tests() local
736 REQUIRE( vs.empty()); in run_cross_type_vector_tests()
737 …ked_range<int> (0, N*p, RANGE_MIN), parallel_vector_for_body<T, Allocator>( vs, allocator_name ) ); in run_cross_type_vector_tests()
738 REQUIRE( !vs.empty()); in run_cross_type_vector_tests()
741 ets_tlskey_type vs2(vs); in run_cross_type_vector_tests()