HomeSort by relevance Sort by last modified time
    Searched refs:__num_buckets (Results 1 - 2 of 2) sorted by null

  /external/stlport/stlport/stl/
_hashtable.c 383 size_type __num_buckets = bucket_count(); local
385 if (__num_buckets_hint <= __num_buckets) {
388 __num_buckets = _STLP_PRIV _Stl_prime_type::_S_next_size(__num_buckets_hint);
390 _M_rehash(__num_buckets);
397 size_type __num_buckets = bucket_count(); local
403 if ((float)size() / (float)__num_buckets > max_load_factor() / 4.0f)
408 _STLP_PRIV _Stl_prime_type::_S_prev_sizes(__num_buckets, __first, __prev);
421 if (*__prev >= __num_buckets)
454 ::_M_rehash(size_type __num_buckets) {
459 _BucketVector __tmp(__num_buckets + 1, __STATIC_CAST(_BucketType*, 0), _M_buckets.get_allocator())
483 size_t __num_buckets = bucket_count(); local
    [all...]
_hashtable.h 573 void _M_rehash(size_type __num_buckets);

Completed in 14 milliseconds