Searched defs:Histogram (Results 1 - 2 of 2) sorted by relevance

/external/chromium/base/metrics/
H A Dhistogram.cc5 // Histogram is an object that aggregates statistics, and can summarize them in
25 const uint32 Histogram::kCrcTable[256] = {0x0, 0x77073096L, 0xee0e612cL,
71 typedef Histogram::Count Count;
74 const size_t Histogram::kBucketCount_MAX = 16384u;
76 Histogram* Histogram::FactoryGet(const std::string& name,
81 Histogram* histogram(NULL);
94 Histogram* tentative_histogram =
95 new Histogram(name, minimum, maximum, bucket_count);
107 Histogram* Histogra
390 Histogram::Histogram(const std::string& name, Sample minimum, function in class:base::Histogram
403 Histogram::Histogram(const std::string& name, TimeDelta minimum, function in class:base::Histogram
[all...]
H A Dhistogram.h5 // Histogram is an object that aggregates statistics, and can summarize them in
17 // Histogram count(L"some name", 1, 64, 8);
22 // in each consecutive bucket. The Histogram class automatically calculates
77 static base::Histogram* counter(NULL); \
79 counter = base::Histogram::FactoryGet(name, min, max, bucket_count, \
80 base::Histogram::kNoFlags); \
91 static base::Histogram* counter(NULL); \
93 counter = base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
94 base::Histogram::kNoFlags); \
101 static base::Histogram* counte
266 class BASE_API Histogram { class in namespace:base
[all...]

Completed in 78 milliseconds