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

  /external/chromium_org/build/util/lib/common/
perf_result_data_type.py 7 HISTOGRAM = 'histogram'
8 UNIMPORTANT_HISTOGRAM = 'unimportant-histogram'
11 ALL_TYPES = [DEFAULT, UNIMPORTANT, HISTOGRAM, UNIMPORTANT_HISTOGRAM,
20 return (datatype == HISTOGRAM or datatype == UNIMPORTANT_HISTOGRAM)
  /external/chromium_org/components/metrics/serialization/
metric_sample.h 24 HISTOGRAM,
56 // histogram: histogram\0|name_| |sample_| |min_| |max_| |bucket_count_|\0
64 // Builds a histogram sample.
71 // Deserializes a histogram sample.
74 // Builds a sparse histogram sample.
78 // Deserializes a sparse histogram sample.
82 // Builds a linear histogram sample.
87 // Deserializes a linear histogram sample.
  /external/chromium_org/base/metrics/
histogram_base.h 33 // HistogramBase, add new histogram types and names below.
36 HISTOGRAM,
45 // Create or find existing histogram that matches the pickled info.
63 // Histogram should be UMA uploaded.
66 // Indicates that this is a stability histogram. This flag exists to specify
71 // Indicates that the histogram was pickled to be sent across an IPC
72 // Channel. If we observe this flag on a histogram being aggregated into
75 // the source histogram!).
78 // Only for Histogram and its sub classes: fancy bucket-naming support.
82 // Histogram data inconsistency types
    [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/opencv/cvaux/src/
cvbgfg_acmmm2003.cpp 248 // Create histogram:
250 long HISTOGRAM[PIXELRANGE];
251 for (i=0 ; i<PIXELRANGE; i++) HISTOGRAM[i]=0;
259 HISTOGRAM[diff]++;
274 sum += double(j)*double(HISTOGRAM[j]);
275 sqsum += double(j*j)*double(HISTOGRAM[j]);
276 count += HISTOGRAM[j];
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ImageProcessingActivity.java 103 HISTOGRAM ("Histogram"),
365 case HISTOGRAM:
366 mTest = new Histogram();

Completed in 8100 milliseconds