Searched refs:kBuckets (Results 1 - 9 of 9) sorted by relevance

/external/chromium/net/base/
H A Dssl_false_start_blacklist.h75 static const unsigned kBuckets = 128; member in class:net::SSLFalseStartBlacklist
84 static const uint32 kHashTable[kBuckets + 1];
H A Dssl_false_start_blacklist.cc14 const unsigned bucket = Hash(last_two_labels) & (kBuckets - 1);
H A Dssl_false_start_blacklist_process.cc20 static const unsigned kBuckets = SSLFalseStartBlacklist::kBuckets; variable
200 fprintf(stderr, "Using %d entry hash table\n", kBuckets);
201 uint32 table[kBuckets];
202 std::vector<std::string> buckets[kBuckets];
209 buckets[h & (kBuckets - 1)].push_back(*i);
214 for (unsigned i = 0; i < kBuckets; i++) {
243 kBuckets);
244 for (unsigned i = 0; i < kBuckets; i++) {
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dprofiledata.cc56 const int ProfileData::kBuckets; member in class:ProfileData
113 hash_ = new Bucket[kBuckets];
115 memset(hash_, 0, sizeof(hash_[0]) * kBuckets);
170 for (int b = 0; b < kBuckets; b++) {
245 for (int b = 0; b < kBuckets; b++) {
280 Bucket* bucket = &hash_[h % kBuckets];
H A Dprofiledata.h146 static const int kBuckets = 1 << 10; // For hashtable member in class:ProfileData
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofiledata.cc56 const int ProfileData::kBuckets; member in class:ProfileData
113 hash_ = new Bucket[kBuckets];
115 memset(hash_, 0, sizeof(hash_[0]) * kBuckets);
170 for (int b = 0; b < kBuckets; b++) {
245 for (int b = 0; b < kBuckets; b++) {
280 Bucket* bucket = &hash_[h % kBuckets];
H A Dprofiledata.h146 static const int kBuckets = 1 << 10; // For hashtable member in class:ProfileData
/external/chromium_org/content/browser/download/
H A Ddownload_stats.cc242 // The maximum should be 2^kBuckets, to have the logarithmic bucket
244 static const int kBuckets = 30; local
245 static const int64 kMaxKb = 1 << kBuckets; // One Terabyte, in Kilobytes.
254 kBuckets);
260 kBuckets);
274 kBuckets);
280 kBuckets);
344 static const int kBuckets = 50; local
351 kBuckets);
357 kBuckets);
[all...]
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dauto_enrollment_client.cc365 static const int kBuckets = 50; local
370 UMA_HISTOGRAM_CUSTOM_TIMES(kUMAProtocolTime, delta, kMin, kMax, kBuckets);
378 UMA_HISTOGRAM_CUSTOM_TIMES(kUMAExtraTime, delta, kMin, kMax, kBuckets);

Completed in 270 milliseconds