HomeSort by relevance Sort by last modified time
    Searched defs:Histogram (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/leveldatabase/src/util/
histogram.h 12 class Histogram {
14 Histogram() { }
15 ~Histogram() { }
19 void Merge(const Histogram& other);
  /art/runtime/base/
histogram.h 27 // Creates a data histogram for a better understanding of statistical data.
28 // Histogram analysis goes beyond simple mean and standard deviation to provide
32 template <class Value> class Histogram {
38 friend class Histogram<Value>;
43 Histogram(const char* name, Value initial_bucket_width, size_t max_buckets = 100);
86 // Add more buckets to the histogram to fill in a new value that exceeded
92 // Number of samples placed in histogram.
95 // histogram percentiles are. Grows adaptively when we hit max buckets.
102 // Minimum value that can fit in the histogram. Fixed to zero for now.
104 // Maximum value that can fit in the histogram, grows adaptively
    [all...]
histogram-inl.h 20 #include "histogram.h"
31 template <class Value> inline void Histogram<Value>::AddValue(Value value) {
43 inline Histogram<Value>::Histogram(const char* name, Value initial_bucket_width,
54 inline void Histogram<Value>::GrowBuckets(Value new_max) {
76 template <class Value> inline size_t Histogram<Value>::FindBucket(Value val) const {
77 // Since this is only a linear histogram, bucket index can be found simply with
88 inline void Histogram<Value>::BucketiseValue(Value val) {
98 template <class Value> inline void Histogram<Value>::Initialize() {
106 template <class Value> inline size_t Histogram<Value>::GetBucketCount() const
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Histogram.java 24 public class Histogram extends TestBase {
  /external/chromium_org/base/metrics/
histogram.cc 5 // Histogram is an object that aggregates statistics, and can summarize them in
10 #include "base/metrics/histogram.h"
48 DLOG(ERROR) << "Pickle error decoding Histogram: " << *histogram_name;
53 // checks above and beyond those in Histogram::Initialize()
59 DLOG(ERROR) << "Values error decoding Histogram: " << histogram_name;
63 // We use the arguments to find or create the local version of the histogram
71 bool ValidateRangeChecksum(const HistogramBase& histogram,
73 const Histogram& casted_histogram =
74 static_cast<const Histogram&>(histogram);
96 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
357 HistogramBase* histogram = Histogram::FactoryGet( local
545 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
635 HistogramBase* histogram = LinearHistogram::FactoryGet( local
649 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
690 HistogramBase* histogram = BooleanHistogram::FactoryGet( local
708 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
793 HistogramBase* histogram = CustomHistogram::FactoryGet( local
    [all...]
histogram.h 5 // Histogram is an object that aggregates statistics, and can summarize them in
12 // For Histogram(exponential histogram), LinearHistogram and CustomHistogram,
20 // Each use of a histogram with the same name will reference the same underlying
21 // data, so it is safe to record to the same histogram from multiple locations
22 // in the code. It is a runtime error if all uses of the same histogram do not
25 // For Histogram and LinearHistogram, the maximum for a declared range should
32 // (Histogram::kBucketCount_MAX - 1).
34 // The buckets layout of class Histogram is exponential. For example, buckets
37 // That bucket allocation would actually result from construction of a histogram
    [all...]
  /external/chromium_org/v8/src/
counters.h 50 // a histogram for passing to the AddHistogramSample function
56 // to a histogram created with CreateHistogram function
76 // Create a histogram by name. If the create is successful,
89 // Add a sample to a histogram created with the CreateHistogram
91 void AddHistogramSample(void* histogram, int sample) {
93 return add_histogram_sample_function_(histogram, sample);
183 // A Histogram represents a dynamically created histogram in the StatsTable.
184 // It will be registered with the histogram system on first use.
185 class Histogram {
    [all...]
  /external/skia/tools/
bbh_shootout.cpp 33 struct Histogram {
34 Histogram() {
269 SkTArray<Histogram>& histogram) {
283 histogram[index - 1].fPath = path;
284 histogram[index - 1].fCpuTime = SkDoubleToScalar(timer.fCpu);
319 SkTArray<Histogram> histograms[kNumBenchmarks];
332 // Output gnuplot readable histogram data..
  /external/chromium/base/metrics/
histogram.cc 5 // Histogram is an object that aggregates statistics, and can summarize them in
10 #include "base/metrics/histogram.h"
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);
89 if (!StatisticsRecorder::FindHistogram(name, &histogram)) {
    [all...]
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
32 // pointer to a histogram. This static is explicitly initialized on any thread
60 // Provide easy general purpose histogram in a macro, just like stats counters.
77 static base::Histogram* counter(NULL); \
79 counter = base::Histogram::FactoryGet(name, min, max, bucket_count,
    [all...]
  /external/chromium_org/courgette/
adjustment_method_2.cc 511 typedef std::set<FreqView, FreqView::Greater> Histogram;
516 Histogram model_histogram_;
517 Histogram program_histogram_;
545 std::string HistogramToString(const ShinglePattern::Histogram& histogram,
548 size_t histogram_size = histogram.size();
550 for (ShinglePattern::Histogram::const_iterator p = histogram.begin();
551 p != histogram.end();
562 std::string HistogramToStringFull(const ShinglePattern::Histogram& histogram
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glapi_mapi_tmp.h     [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/
glapitemp.h     [all...]

Completed in 620 milliseconds