Searched refs:bucket_count (Results 1 – 22 of 22) sorted by relevance
| /openbsd/src/gnu/llvm/lldb/include/lldb/Core/ |
| D | MappedHash.h | 53 uint32_t bucket_count = 0; // The number of buckets in this hash table member 66 sizeof(bucket_count) + sizeof(hashes_count) + in GetByteSize() 80 s.Printf("header.bucket_count = 0x%8.8x %u\n", bucket_count, in Dump() 81 bucket_count); in Dump() 92 sizeof(bucket_count) + sizeof(hashes_count) + in Read() 122 bucket_count = data.GetU32(&offset); in Read() 167 &offset, m_header.bucket_count * sizeof(uint32_t)); in MemoryTable() 180 m_header.bucket_count > 0; in IsValid() 185 if (m_hash_indexes && bucket_idx < m_header.bucket_count) in GetHashIndex() 209 const uint32_t bucket_count = m_header.bucket_count; in Find() local [all …]
|
| /openbsd/src/gnu/llvm/lldb/examples/synthetic/ |
| D | unordered_multi.py | 12 self.bucket_count = None 18 self.bucket_count = None 43 self.bucket_count = bl_ptr.GetChildMemberWithName('__second_').GetChildMemberWithName( 45 logger >> "Bucket count = %r" % self.bucket_count
|
| /openbsd/src/gnu/llvm/libcxx/benchmarks/ |
| D | ContainerBenchmarks.h | 144 const auto bucket_count = c.bucket_count(); in BM_Rehash() local 146 c.rehash(bucket_count + 1); in BM_Rehash() 147 c.rehash(bucket_count); in BM_Rehash()
|
| /openbsd/src/gnu/llvm/libcxx/include/ |
| D | __hash_table | 1167 size_type bucket_count() const _NOEXCEPT 1185 _LIBCPP_ASSERT(bucket_count() > 0, 1186 "unordered container::bucket(key) called when bucket_count() == 0"); 1187 return std::__constrain_hash(hash_function()(__k), bucket_count()); 1245 size_type __bc = bucket_count(); 1259 _LIBCPP_ASSERT(__n < bucket_count(), 1260 "unordered container::begin(n) called with n >= bucket_count()"); 1261 return local_iterator(__bucket_list_[__n], __n, bucket_count(), this); 1268 _LIBCPP_ASSERT(__n < bucket_count(), 1269 "unordered container::end(n) called with n >= bucket_count()"); [all …]
|
| D | unordered_set | 165 size_type bucket_count() const noexcept; 379 size_type bucket_count() const noexcept; 834 size_type bucket_count() const _NOEXCEPT {return __table_.bucket_count();} 1007 __table_.__rehash_unique(__u.bucket_count()); 1017 __table_.__rehash_unique(__u.bucket_count()); 1472 size_type bucket_count() const _NOEXCEPT {return __table_.bucket_count();} 1644 __table_.__rehash_multi(__u.bucket_count()); 1654 __table_.__rehash_multi(__u.bucket_count());
|
| D | unordered_map | 199 size_type bucket_count() const noexcept; 428 size_type bucket_count() const noexcept; 1498 size_type bucket_count() const _NOEXCEPT {return __table_.bucket_count();} 1690 __table_.__rehash_unique(__u.bucket_count()); 1700 __table_.__rehash_unique(__u.bucket_count()); 2277 size_type bucket_count() const _NOEXCEPT {return __table_.bucket_count();} 2466 __table_.__rehash_multi(__u.bucket_count()); 2476 __table_.__rehash_multi(__u.bucket_count());
|
| /openbsd/src/gnu/llvm/libcxx/include/ext/ |
| D | hash_set | 84 size_type bucket_count() const; 170 size_type bucket_count() const; 324 size_type bucket_count() const {return __table_.bucket_count();} 386 __table_.__rehash_unique(__u.bucket_count()); 544 size_type bucket_count() const {return __table_.bucket_count();} 607 __table_.__rehash_multi(__u.bucket_count());
|
| D | hash_map | 90 size_type bucket_count() const; 178 size_type bucket_count() const; 594 size_type bucket_count() const {return __table_.bucket_count();} 661 __table_.__rehash_unique(__u.bucket_count()); 863 size_type bucket_count() const {return __table_.bucket_count();} 927 __table_.__rehash_multi(__u.bucket_count());
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/ext/ |
| D | hash_set | 248 bucket_count() const 249 { return _M_ht.bucket_count(); } 446 bucket_count() const 447 { return _M_ht.bucket_count(); }
|
| D | hash_map | 258 bucket_count() const 259 { return _M_ht.bucket_count(); } 477 bucket_count() const 478 { return _M_ht.bucket_count(); }
|
| D | hashtable.h | 418 bucket_count() const
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/include/ext/ |
| D | hash_set | 202 size_type bucket_count() const { return _M_ht.bucket_count(); } 351 size_type bucket_count() const { return _M_ht.bucket_count(); }
|
| D | hash_map | 200 size_type bucket_count() const { return _M_ht.bucket_count(); } 359 size_type bucket_count() const { return _M_ht.bucket_count(); }
|
| D | stl_hashtable.h | 363 size_type bucket_count() const { return _M_buckets.size(); }
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/debug/ |
| D | hash_multiset.h | 206 using _Base::bucket_count;
|
| D | hash_set.h | 216 using _Base::bucket_count;
|
| D | hash_multimap.h | 225 using _Base::bucket_count;
|
| D | hash_map.h | 241 using _Base::bucket_count;
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/tr1/ |
| D | hashtable | 294 bucket_count() const 309 bucket_count()); 331 return static_cast<float>(size()) / static_cast<float>(bucket_count());
|
| /openbsd/src/gnu/usr.bin/binutils/bfd/ |
| D | elf32-xtensa.c | 3432 unsigned bucket_count; member 3513 values->bucket_count = INITIAL_HASH_RELOC_BUCKET_COUNT; in value_map_hash_table_init() 3516 bfd_zmalloc (sizeof (value_map *) * values->bucket_count); in value_map_hash_table_init() 3565 idx = idx & (map->bucket_count - 1); 3596 idx = idx & (map->bucket_count - 1);
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/bfd/ |
| D | elf32-xtensa.c | 4332 unsigned bucket_count; member 4415 values->bucket_count = INITIAL_HASH_RELOC_BUCKET_COUNT; in value_map_hash_table_init() 4418 bfd_zmalloc (sizeof (value_map *) * values->bucket_count); in value_map_hash_table_init() 4482 idx = idx & (map->bucket_count - 1); in value_map_get_cached_value() 4517 idx = idx & (map->bucket_count - 1); in add_value_map()
|
| /openbsd/src/gnu/llvm/llvm/docs/ |
| D | SourceLevelDebugging.rst | 1557 | HEADER.bucket_count | uint32_t 1698 uint32_t bucket_count; // The number of buckets in this hash table 1722 ``bucket_count`` is a 32 bit unsigned integer that represents how many buckets 1738 …uint32_t buckets[Header.bucket_count]; // An array of hash indexes into the "hashes[]" array below
|