Lines Matching refs:c

78     test_insert_by_key( Table &c, const value_type &value ) : my_c(c), my_value(value) {}  in test_insert_by_key()  argument
102 …test_range( Table &c, const std::list<value_type> &lst, std::vector<detail::atomic_type<bool>> &ma… in test_range() argument
128 check_value( Table &c ) : my_c(c) {} in check_value() argument
195 void Examine( Table c, const std::list<typename Table::value_type> &lst) { in Examine() argument
202 CHECK(!c.empty()); in Examine()
203 CHECK(c.size() == lst.size()); in Examine()
204 CHECK(c.max_size() >= c.size()); in Examine()
206 const check_value<default_construction_present, Table> cv(c); in Examine()
211 test_range<Table,iterator>( c, lst, marks ).do_test_range( c.begin(), c.end() ); in Examine()
214 test_range<const_table,const_iterator>( c, lst, marks ).do_test_range( c.begin(), c.end() ); in Examine()
218 …tbb::parallel_for( c.range(), test_range<Table,typename range_type::iterator,range_type>( c, lst, … in Examine()
221 const_table const_c = c; in Examine()
222 CHECK(CompareTables<value_type>::IsEqual( c, const_c )); in Examine()
224 const size_type new_bucket_count = 2*c.bucket_count(); in Examine()
225 c.rehash( new_bucket_count ); in Examine()
226 CHECK(c.bucket_count() >= new_bucket_count); in Examine()
234 c2.swap( c ); in Examine()
236 CHECK(c.size() == 5); in Examine()
239 swap( c, c2 ); in Examine()
240 CHECK(CompareTables<value_type>::IsEqual( c, const_c )); in Examine()
246 typename Table::allocator_type a = c.get_allocator(); in Examine()
515 static bool equal(hash_map_type const& c, iterator begin, iterator end){ in equal()
516 bool equal_sizes = ( static_cast<size_t>(std::distance(begin, end)) == c.size() ); in equal()
521 if (c.count( (*it).first) == 0){ in equal()