HomeSort by relevance Sort by last modified time
    Searched defs:HISTOGRAM (Results 1 - 5 of 5) 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/base/metrics/
histogram_base.h 30 // HistogramBase, add new histogram types and names below.
33 HISTOGRAM,
42 // Create or find existing histogram that matches the pickled info.
58 kUmaTargetedHistogramFlag = 0x1, // Histogram should be UMA uploaded.
60 // Indicate that the histogram was pickled to be sent across an IPC Channel.
61 // If we observe this flag on a histogram being aggregated into after IPC,
64 // histogram!).
67 // Only for Histogram and its sub classes: fancy bucket-naming support.
71 // Histogram data inconsistency types.
94 // Whether the histogram has construction arguments as parameters specified
    [all...]
  /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];
  /external/chromium/base/metrics/
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...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ImageProcessingActivity.java 156 HISTOGRAM ("Histogram");
420 case HISTOGRAM:
421 mTest = new Histogram();

Completed in 311 milliseconds