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

  /external/chromium/net/disk_cache/
stats_histogram.h 28 return &counts_;
  /external/chromium/base/
histogram.cc 478 : counts_(),
484 counts_.resize(histogram.bucket_count(), 0);
488 DCHECK(counts_.size() == histogram.bucket_count());
495 counts_[index] += count;
498 DCHECK_GE(counts_[index], 0);
505 for (Counts::const_iterator it = counts_.begin();
506 it != counts_.end();
514 DCHECK(counts_.size() == other.counts_.size());
517 for (size_t index = 0; index < counts_.size(); ++index
    [all...]
histogram.h 250 // Adjust size of counts_ for use with given histogram.
258 Count counts(size_t i) const { return counts_[i]; }
273 Counts counts_; member in class:Histogram::SampleSet
438 Sample declared_min_; // Less than this goes into counts_[0]
439 Sample declared_max_; // Over this goes into counts_[bucket_count_ - 1].
440 size_t bucket_count_; // Dimension of counts_[].

Completed in 3138 milliseconds