HomeSort by relevance Sort by last modified time
    Searched defs:bucket_index (Results 1 - 4 of 4) 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 subtle::NoBarrier_Load(&counts_[bucket_index]);
46 Count SampleVector::GetCountAtIndex(size_t bucket_index) const {
47 DCHECK(bucket_index < counts_.size());
48 return subtle::NoBarrier_Load(&counts_[bucket_index]);
histogram.cc 151 size_t bucket_index = 1; local
153 ranges->set_range(bucket_index, current);
155 while (bucket_count > ++bucket_index) {
159 log_ratio = (log_max - log_current) / (bucket_count - bucket_index);
168 ranges->set_range(bucket_index, current);
  /external/chromium_org/cc/layers/
heads_up_display_layer_impl.cc 437 int bucket_index = floor(p * (kHistogramSize - 1)); local
441 histogram[bucket_index] += delta.InSecondsF();
442 max_bucket_value = std::max(histogram[bucket_index], max_bucket_value);
  /art/runtime/
elf_file.cc 792 Elf32_Word bucket_index = hash % GetHashBucketNum(); local
794 Elf32_Word symbol_and_chain_index = GetHashBucket(bucket_index, &ok);
    [all...]

Completed in 114 milliseconds