OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kBuckets
(Results
1 - 7
of
7
) sorted by null
/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/content/browser/download/
download_stats.cc
242
// The maximum should be 2^
kBuckets
, to have the logarithmic bucket
244
static const int
kBuckets
= 30;
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;
351
kBuckets
);
357
kBuckets
);
[
all
...]
/external/chromium_org/chrome/browser/chromeos/policy/
auto_enrollment_client.cc
437
static const int
kBuckets
= 50;
442
UMA_HISTOGRAM_CUSTOM_TIMES(kUMAProtocolTime, delta, kMin, kMax,
kBuckets
);
450
UMA_HISTOGRAM_CUSTOM_TIMES(kUMAExtraTime, delta, kMin, kMax,
kBuckets
);
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework_unittest.cc
28
kBuckets
= 100,
35
int buckets[
kBuckets
] = {0};
38
if (index >= 0 && index <
kBuckets
) {
48
for (int n = 0; n <
kBuckets
; ++n) {
Completed in 206 milliseconds