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

  /external/chromium_org/base/metrics/
sample_vector.cc 26 size_t bucket_index = GetBucketIndex(value); local
27 counts_[bucket_index] += count;
33 size_t bucket_index = GetBucketIndex(value); local
34 return counts_[bucket_index];
45 Count SampleVector::GetCountAtIndex(size_t bucket_index) const {
46 DCHECK(bucket_index < counts_.size());
47 return counts_[bucket_index];
sample_vector.h 37 HistogramBase::Count GetCountAtIndex(size_t bucket_index) const;
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);
  /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...]
  /external/chromium_org/cc/layers/
heads_up_display_layer_impl.cc 396 int bucket_index = floor(p * (kHistogramSize - 1)); local
400 histogram[bucket_index] += delta.InSecondsF();
401 max_bucket_value = std::max(histogram[bucket_index], max_bucket_value);
  /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);

Completed in 143 milliseconds