Lines Matching refs:concurrent_vector

42         tbb::concurrent_vector<int> array(n);  in TestSort()
56 using c_vector = tbb::concurrent_vector<int>; in TestRangeBasedFor()
85 using container_type = tbb::concurrent_vector<T, Allocator>;
93 using type = tbb::concurrent_vector<element_type, allocator_type >;
99 …static bool equal(tbb::concurrent_vector<element_type, allocator_type > const& c, iterator begin, … in equal()
121 tbb::concurrent_vector<ClassWithVectorType> v; in TestVectorTypes()
135 static tbb::concurrent_vector<std::size_t> Primes;
192 tbb::concurrent_vector<Type, Allocator> &my_c;
194 test_grow_by_and_resize( tbb::concurrent_vector<Type, Allocator> &c ) : my_c(c) {} in test_grow_by_and_resize()
196 const typename tbb::concurrent_vector<Type, Allocator>::size_type sz = my_c.size(); in operator ()()
207 using container_type = tbb::concurrent_vector<allocator_data_type, allocator_type>; in test_scoped_allocator()
265 void CompareVectors( const tbb::concurrent_vector<Type, Allocator> &c1, const tbb::concurrent_vecto… in CompareVectors()
271 void CompareVectors( const tbb::concurrent_vector<std::weak_ptr<Type>, Allocator> &, const tbb::con… in CompareVectors()
276 void Examine( tbb::concurrent_vector<Type, Allocator> c, const std::vector<Type> &vec ) { in Examine()
277 using vector_t = tbb::concurrent_vector<Type, Allocator>; in Examine()
316 tbb::concurrent_vector<Type> c7( my_vec.size() ); in operator ()()
319 tbb::concurrent_vector< Type, std::allocator<Type> > c8( my_vec.size() ); in operator ()()
329 tbb::concurrent_vector<Type> c1; in TypeTester()
333 tbb::concurrent_vector<Type> c2({vec[0],vec[1],vec[2]}); in TypeTester()
337 tbb::concurrent_vector<Type> c3(c1); in TypeTester()
340 tbb::concurrent_vector< Type, std::allocator<Type> > c4; in TypeTester()
347 tbb::concurrent_vector< Type, std::allocator<Type> > c9(vec.size(), vec[1], allocator); in TypeTester()
350 tbb::concurrent_vector< Type, std::allocator<Type> > c10(c1.begin(), c1.end(), allocator); in TypeTester()
352 tbb::concurrent_vector<Type> c11(vec.begin(), vec.end()); in TypeTester()
389 tbb::concurrent_vector<int> v; in TestSerialGrowByRange()
402 using vector_type = tbb::concurrent_vector<move_support_tests::Foo, allocator_type>; in TestConcurrentOperationsWithUnSafeOperations()
607 using vector_type = tbb::concurrent_vector<move_support_tests::Foo, allocator_type>;
637 using vector_type = tbb::concurrent_vector<double, allocator_type>;
667 tbb::concurrent_vector<int> vec(final_sum, 1);
668 const tbb::concurrent_vector<int> cvec(vec);
678 using vector_type = tbb::concurrent_vector<int, allocator_type>;
696 tbb::concurrent_vector<int> test_vec;
709 static_assert(test_concepts::container_range<typename tbb::concurrent_vector<int>::range_type>);
710 …static_assert(test_concepts::container_range<typename tbb::concurrent_vector<int>::const_range_typ…
720 tbb::concurrent_vector<int> v;