Home | History | Annotate | Download | only in bits

Lines Matching defs:_M_bucket_count

179       size_type              _M_bucket_count;
251 { return iterator(_M_buckets + _M_bucket_count); }
255 { return const_iterator(_M_buckets + _M_bucket_count); }
263 { return const_iterator(_M_buckets + _M_bucket_count); }
291 { return _M_bucket_count; }
581 _M_bucket_count(0),
585 _M_bucket_count = _M_rehash_policy._M_next_bkt(__bucket_hint);
586 _M_buckets = _M_allocate_buckets(_M_bucket_count);
587 _M_begin_bucket_index = _M_bucket_count;
608 _M_bucket_count(0),
612 _M_bucket_count = std::max(_M_rehash_policy._M_next_bkt(__bucket_hint),
617 _M_buckets = _M_allocate_buckets(_M_bucket_count);
618 _M_begin_bucket_index = _M_bucket_count;
627 _M_deallocate_buckets(_M_buckets, _M_bucket_count);
644 _M_bucket_count(__ht._M_bucket_count),
649 _M_buckets = _M_allocate_buckets(_M_bucket_count);
652 for (size_type __i = 0; __i < __ht._M_bucket_count; ++__i)
668 _M_deallocate_buckets(_M_buckets, _M_bucket_count);
686 _M_bucket_count(__ht._M_bucket_count),
692 __ht._M_bucket_count = __ht._M_rehash_policy._M_next_bkt(0);
693 __ht._M_buckets = __ht._M_allocate_buckets(__ht._M_bucket_count);
694 __ht._M_begin_bucket_index = __ht._M_bucket_count;
707 _M_deallocate_buckets(_M_buckets, _M_bucket_count);
732 std::swap(_M_bucket_count, __x._M_bucket_count);
748 if (__n_bkt > _M_bucket_count)
764 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
781 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
798 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
823 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
861 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
917 = _M_rehash_policy._M_need_rehash(_M_bucket_count,
966 size_type __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
988 = _M_rehash_policy._M_need_rehash(_M_bucket_count,
995 size_type __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
1031 = _M_rehash_policy._M_need_rehash(_M_bucket_count,
1093 std::size_t __n = this->_M_bucket_index(__k, __code, _M_bucket_count);
1136 _M_begin_bucket_index = _M_bucket_count;
1176 _M_deallocate_nodes(_M_buckets, _M_bucket_count);
1178 _M_begin_bucket_index = _M_bucket_count;
1208 for (size_type __i = 0; __i < _M_bucket_count; ++__i)
1218 _M_deallocate_buckets(_M_buckets, _M_bucket_count);
1219 _M_bucket_count = __n;
1230 _M_deallocate_nodes(_M_buckets, _M_bucket_count);
1232 _M_begin_bucket_index = _M_bucket_count;