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

  /external/chromium_org/base/metrics/
histogram_base.h 28 // HistogramBase, add new histogram types and names below.
31 HISTOGRAM,
40 // Create or find existing histogram that matches the pickled info.
45 // Create or find existing histogram and add the samples from pickle.
60 kUmaTargetedHistogramFlag = 0x1, // Histogram should be UMA uploaded.
62 // Indicate that the histogram was pickled to be sent across an IPC Channel.
63 // If we observe this flag on a histogram being aggregated into after IPC,
66 // histogram!).
69 // Only for Histogram and its sub classes: fancy bucket-naming support.
73 // Histogram data inconsistency types
    [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 73 milliseconds