HomeSort by relevance Sort by last modified time
    Searched defs:Histogram (Results 1 - 12 of 12) 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);
  /external/chromium_org/third_party/brotli/src/brotli/enc/
histogram.h 34 struct Histogram {
35 Histogram() {
56 void AddHistogram(const Histogram& v) {
75 // Literal histogram.
76 typedef Histogram<256> HistogramLiteral;
78 typedef Histogram<kNumCommandPrefixes> HistogramCommand;
79 typedef Histogram<kNumDistancePrefixes> HistogramDistance;
80 typedef Histogram<kNumBlockLenPrefixes> HistogramBlockLength;
81 // Context map histogram, 256 Huffman tree indexes + 16 run length codes.
82 typedef Histogram<272> HistogramContextMap
    [all...]
  /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 // Used by the cumulative timing logger to search the histogram set using for an existing split
45 explicit Histogram(const char* name);
47 Histogram(const char* name, Value initial_bucket_width, size_t max_buckets = 100);
94 // Add more buckets to the histogram to fill in a new value that exceeded
100 // Number of samples placed in histogram.
103 // histogram percentiles are. Grows adaptively when we hit max buckets
    [all...]
histogram-inl.h 20 #include "histogram.h"
31 template <class Value> inline void Histogram<Value>::AddValue(Value value) {
42 template <class Value> inline Histogram<Value>::Histogram(const char* name)
50 inline Histogram<Value>::Histogram(const char* name, Value initial_bucket_width,
61 inline void Histogram<Value>::GrowBuckets(Value new_max) {
83 template <class Value> inline size_t Histogram<Value>::FindBucket(Value val) const {
84 // Since this is only a linear histogram, bucket index can be found simply with
95 inline void Histogram<Value>::BucketiseValue(Value val)
    [all...]
  /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
358 HistogramBase* histogram = Histogram::FactoryGet( local
546 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
645 HistogramBase* histogram = LinearHistogram::FactoryGet( local
659 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
700 HistogramBase* histogram = BooleanHistogram::FactoryGet( local
718 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
803 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/tools/telemetry/telemetry/core/
bitmap.py 7 tools: crop, find bounding box of a color and compute histogram of color values.
42 raise ValueError('First histogram has 0 pixels in it.')
44 raise ValueError('Second histogram has 0 pixels in it.')
52 '%s pixel(s) left over after computing histogram distance.'
73 raise ValueError('Histogram has no data and no default color.')
78 raise ValueError('Histogram has no data and no default color.')
121 HISTOGRAM = 1
157 def Histogram(self, ignore_color, tolerance):
159 response = self._RunCommand(_BitmapTools.HISTOGRAM,
342 """Computes a histogram of the pixel colors in this Bitmap
    [all...]
bitmaptools.cc 16 HISTOGRAM = 1,
169 bool Histogram(const Bitmap& bmp) {
173 fprintf(stderr, "Could not parse HISTOGRAM command.\n");
256 case HISTOGRAM:
257 if (!Histogram(bmp)) return -1;
  /external/chromium_org/v8/src/
counters.h 30 // a histogram for passing to the AddHistogramSample function
36 // to a histogram created with CreateHistogram function
56 // Create a histogram by name. If the create is successful,
69 // Add a sample to a histogram created with the CreateHistogram
71 void AddHistogramSample(void* histogram, int sample) {
73 return add_histogram_sample_function_(histogram, sample);
167 // A Histogram represents a dynamically created histogram in the StatsTable.
168 // It will be registered with the histogram system on first use.
169 class Histogram {
    [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 308 milliseconds