OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bucket_index
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/base/metrics/
sample_vector.cc
26
size_t
bucket_index
= GetBucketIndex(value);
local
27
subtle::NoBarrier_Store(&counts_[
bucket_index
],
28
subtle::NoBarrier_Load(&counts_[
bucket_index
]) + count);
34
size_t
bucket_index
= GetBucketIndex(value);
local
35
return counts_[
bucket_index
];
46
Count SampleVector::GetCountAtIndex(size_t
bucket_index
) const {
47
DCHECK(
bucket_index
< counts_.size());
48
return counts_[
bucket_index
];
histogram.cc
150
size_t
bucket_index
= 1;
local
152
ranges->set_range(
bucket_index
, current);
154
while (bucket_count > ++
bucket_index
) {
158
log_ratio = (log_max - log_current) / (bucket_count -
bucket_index
);
167
ranges->set_range(
bucket_index
, current);
/art/runtime/
elf_file.cc
393
llvm::ELF::Elf32_Word
bucket_index
= hash % GetHashBucketNum();
local
394
llvm::ELF::Elf32_Word symbol_and_chain_index = GetHashBucket(
bucket_index
);
/external/chromium_org/cc/layers/
heads_up_display_layer_impl.cc
403
int
bucket_index
= floor(p * (kHistogramSize - 1));
local
407
histogram[
bucket_index
] += delta.InSecondsF();
408
max_bucket_value = std::max(histogram[
bucket_index
], max_bucket_value);
/external/chromium/base/metrics/
histogram.cc
439
size_t
bucket_index
= 1;
local
441
SetBucketRange(
bucket_index
, current);
442
while (bucket_count() > ++
bucket_index
) {
446
log_ratio = (log_max - log_current) / (bucket_count() -
bucket_index
);
455
SetBucketRange(
bucket_index
, current);
459
DCHECK_EQ(bucket_count(),
bucket_index
);
local
[
all
...]
Completed in 382 milliseconds