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

  /external/chromium/net/disk_cache/
stats_histogram.h 29 return &counts_;
  /external/chromium/base/metrics/
histogram.cc 666 : counts_(),
675 counts_.resize(histogram.bucket_count(), 0);
679 DCHECK_EQ(histogram.bucket_count(), counts_.size());
686 counts_[index] += count;
689 DCHECK_GE(counts_[index], 0);
696 for (Counts::const_iterator it = counts_.begin();
697 it != counts_.end();
705 DCHECK_EQ(counts_.size(), other.counts_.size());
708 for (size_t index = 0; index < counts_.size(); ++index
    [all...]
histogram_unittest.cc 346 snapshot.counts_[3] += 100; // Sample count won't match redundant count.
348 snapshot.counts_[2] -= 200;
352 snapshot.counts_[1] += 100;
histogram.h 330 // Adjust size of counts_ for use with given histogram.
338 Count counts(size_t i) const { return counts_[i]; }
353 Counts counts_; member in class:base::Histogram::SampleSet
555 Sample declared_min_; // Less than this goes into counts_[0]
556 Sample declared_max_; // Over this goes into counts_[bucket_count_ - 1].
557 size_t bucket_count_; // Dimension of counts_[].
  /external/v8/src/
liveobjectlist.cc 783 memset(counts_, 0, sizeof(counts_[0]) * kNumberOfEntries);
791 counts_[type]++;
801 return counts_[type];
821 if (counts_[i]) entries++;
831 int counts_[kNumberOfEntries]; member in class:v8::internal::LiveObjectSummary
    [all...]

Completed in 71 milliseconds