Lines Matching refs:size

100         bool equal_sizes = (size_t)std::distance(begin, end) == c.size();  in equal()
196 const typename tbb::concurrent_vector<Type, Allocator>::size_type sz = my_c.size(); in operator ()()
198 REQUIRE( my_c.size() == sz + 5 ); in operator ()()
200 REQUIRE( my_c.size() == sz ); in operator ()()
281 REQUIRE( c.size() == vec.size() ); in Examine()
282 for ( size_type_t i=0; i<c.size(); ++i ) { in Examine()
287 c.grow_to_at_least( c.size()+5, c.at(0) ); in Examine()
299 REQUIRE( c.size() == 5 ); in Examine()
303 REQUIRE( c2.size() == 0 ); 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 ()()
327 __TBB_ASSERT( vec.size() >= 5, "Array should have at least 5 elements" ); in TypeTester()
347 tbb::concurrent_vector< Type, std::allocator<Type> > c9(vec.size(), vec[1], allocator); in TypeTester()
348 Examine<default_construction_present>( c9, std::vector<Type>(vec.size(), vec[1]) ); in TypeTester()
448 for (std::size_t i = local_operations.size(); i > 1; --i) { in TestConcurrentOperationsWithUnSafeOperations()
481 std::size_t grow_at_least_size = vector.size() + rand.get() % 100; in TestConcurrentOperationsWithUnSafeOperations()
512 if (i >= local_operations.size()) active_threads[thread_id] = 1; in TestConcurrentOperationsWithUnSafeOperations()
702 REQUIRE(test_vec.size() == utils::get_platform_max_threads());
723 CHECK(v.size() == 382);
724 while (v.size() < 737) {
727 CHECK(v.size() == 737);
730 CHECK(v.size() == 27);
731 while (v.size() < 737) {
734 CHECK(v.size() == 737);
737 CHECK(v.size() == 1);
738 while (v.size() < 40) {
741 CHECK(v.size() == 40);
744 CHECK(v.size() == 2222);
745 while (v.size() < 4444) {
748 CHECK(v.size() == 4444);
751 CHECK(v.size() == 0);