Home | History | Annotate | Download | only in metrics

Lines Matching refs:counts_

18     : counts_(bucket_ranges->bucket_count()),
27 counts_[bucket_index] += count;
34 return counts_[bucket_index];
39 for (size_t i = 0; i < counts_.size(); i++) {
40 count += counts_[i];
46 DCHECK(bucket_index < counts_.size());
47 return counts_[bucket_index];
52 new SampleVectorIterator(&counts_, bucket_ranges_));
63 while (index < counts_.size() && !iter->Done()) {
68 counts_[index] += (op == HistogramSamples::ADD) ? count : -count;
112 : counts_(counts),
115 CHECK_GE(bucket_ranges_->bucket_count(), counts_->size());
122 return index_ >= counts_->size();
140 *count = (*counts_)[index_];
154 while (index_ < counts_->size()) {
155 if ((*counts_)[index_] != 0)