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

  /external/chromium/net/base/
ssl_false_start_blacklist.h 75 static const unsigned kBuckets = 128;
84 static const uint32 kHashTable[kBuckets + 1];
ssl_false_start_blacklist.cc 14 const unsigned bucket = Hash(last_two_labels) & (kBuckets - 1);
ssl_false_start_blacklist_process.cc 20 static const unsigned kBuckets = SSLFalseStartBlacklist::kBuckets;
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/content/browser/download/
download_stats.cc 103 // The maximum should be 2^kBuckets, to have the logarithmic bucket
105 static const int kBuckets = 30;
106 static const int64 kMaxKb = 1 << kBuckets; // One Terabyte, in Kilobytes.
115 kBuckets);
121 kBuckets);
135 kBuckets);
141 kBuckets);
184 static const int kBuckets = 50;
191 kBuckets);
197 kBuckets);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
profiledata.h 146 static const int kBuckets = 1 << 10; // For hashtable
profiledata.cc 56 const int ProfileData::kBuckets;
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];
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiledata.h 146 static const int kBuckets = 1 << 10; // For hashtable
profiledata.cc 56 const int ProfileData::kBuckets;
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];
  /external/chromium_org/chrome/browser/chromeos/policy/
auto_enrollment_client.cc 350 static const int kBuckets = 50;
355 UMA_HISTOGRAM_CUSTOM_TIMES(kUMAProtocolTime, delta, kMin, kMax, kBuckets);
363 UMA_HISTOGRAM_CUSTOM_TIMES(kUMAExtraTime, delta, kMin, kMax, kBuckets);
  /external/chromium_org/chrome/browser/
chrome_browser_main.cc 373 static const size_t kBuckets(100);
378 name, kMin, kMax, kBuckets, base::Histogram::kUmaTargetedHistogramFlag);
    [all...]

Completed in 153 milliseconds