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

  /external/chromium/net/disk_cache/
stats_histogram.cc 17 scoped_refptr<Histogram> histogram(NULL);
23 if (StatisticsRecorder::FindHistogram(name, &histogram)) {
24 DCHECK(histogram.get() != NULL);
26 histogram = new StatsHistogram(name, minimum, maximum, bucket_count);
27 scoped_refptr<Histogram> registered_histogram(NULL);
30 registered_histogram.get() != histogram.get())
31 histogram = registered_histogram;
34 DCHECK(HISTOGRAM == histogram->histogram_type())
    [all...]
  /external/chromium/base/
histogram.h 5 // Histogram is an object that aggregates statistics, and can summarize them in
15 // That bucket allocation would actually result from construction of a histogram
17 // Histogram count(L"some name", 1, 64, 8);
22 // in each consecutive bucket. The Histogram class automatically calculates
28 // at the low end of the histogram scale, but allows the histogram to cover a
44 // Provide easy general purpose histogram in a macro, just like stats counters.
61 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
62 name, min, max, bucket_count, Histogram::kNoFlags);
    [all...]
histogram.cc 5 // Histogram is an object that aggregates statistics, and can summarize them in
10 #include "base/histogram.h"
21 typedef Histogram::Count Count;
23 scoped_refptr<Histogram> Histogram::FactoryGet(const std::string& name,
25 scoped_refptr<Histogram> histogram(NULL);
33 if (StatisticsRecorder::FindHistogram(name, &histogram)) {
34 DCHECK(histogram.get() != NULL);
36 histogram = new Histogram(name, minimum, maximum, bucket_count)
    [all...]

Completed in 118 milliseconds