/external/chromium_org/third_party/boringssl/src/include/openssl/ |
lhash.h | 132 /* buckets is an array of |num_buckets| pointers. Each points to the head of 134 * |num_buckets|. */ 136 /* num_buckets contains the length of |buckets|. This value is always >= 138 size_t num_buckets; member in struct:lhash_st
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
hash_table.c | 44 unsigned num_buckets; member in struct:hash_table 57 hash_table_ctor(unsigned num_buckets, hash_func_t hash, 64 if (num_buckets < 16) { 65 num_buckets = 16; 68 ht = malloc(sizeof(*ht) + ((num_buckets - 1) 73 ht->num_buckets = num_buckets; 75 for (i = 0; i < num_buckets; i++) { 100 for (i = 0; i < ht->num_buckets; i++) { 115 const unsigned bucket = hash_value % ht->num_buckets; [all...] |
/external/mesa3d/src/mesa/program/ |
hash_table.c | 44 unsigned num_buckets; member in struct:hash_table 57 hash_table_ctor(unsigned num_buckets, hash_func_t hash, 64 if (num_buckets < 16) { 65 num_buckets = 16; 68 ht = malloc(sizeof(*ht) + ((num_buckets - 1) 73 ht->num_buckets = num_buckets; 75 for (i = 0; i < num_buckets; i++) { 100 for (i = 0; i < ht->num_buckets; i++) { 115 const unsigned bucket = hash_value % ht->num_buckets; [all...] |
/external/chromium_org/net/disk_cache/blockfile/ |
stats.cc | 135 int num_buckets = 75; local 136 base::BucketRanges ranges(num_buckets + 1); 140 "DiskCache.SizeStats2", min, max, num_buckets,
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
AppleObjCRuntimeV1.cpp | 399 const uint32_t num_buckets = data.GetU32(&offset); local 401 if (m_hash_signature.NeedsUpdate (count, num_buckets, buckets_ptr)) 403 m_hash_signature.UpdateSignature (count, num_buckets, buckets_ptr); 405 const uint32_t data_size = num_buckets * 2 * sizeof(uint32_t); 412 for (uint32_t bucket_idx = 0; bucket_idx < num_buckets; ++bucket_idx)
|
/art/runtime/base/ |
hash_set.h | 108 const size_t num_buckets = hash_set_->NumBuckets(); local 109 DCHECK_LT(index, num_buckets); 112 } while (index < num_buckets && hash_set_->IsFreeSlot(index)); 339 void AllocateStorage(size_t num_buckets) { 340 num_buckets_ = num_buckets;
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_backing_store.cc | 845 const int num_buckets = 12; local 851 num_buckets); [all...] |
/external/chromium_org/v8/src/ |
objects.cc | 15396 int num_buckets = capacity \/ kLoadFactor; local [all...] |