HomeSort by relevance Sort by last modified time
    Searched refs:histograms (Results 1 - 20 of 20) sorted by null

  /external/libchrome/base/metrics/
histogram_snapshot_manager_unittest.cc 63 // kNoFlags filter should record all histograms.
70 const std::vector<std::string>& histograms = local
72 EXPECT_EQ(2U, histograms.size());
73 EXPECT_EQ("UmaHistogram", histograms[0]);
74 EXPECT_EQ("UmaStabilityHistogram", histograms[1]);
85 const std::vector<std::string>& histograms = local
87 EXPECT_EQ(2U, histograms.size());
88 EXPECT_EQ("UmaHistogram", histograms[0]);
89 EXPECT_EQ("UmaStabilityHistogram", histograms[1]);
100 const std::vector<std::string>& histograms local
    [all...]
sparse_histogram_unittest.cc 89 StatisticsRecorder::Histograms histograms; local
90 StatisticsRecorder::GetHistograms(&histograms);
92 ASSERT_EQ(1U, histograms.size());
93 HistogramBase* sparse_histogram = histograms[0];
114 StatisticsRecorder::Histograms histograms; local
115 StatisticsRecorder::GetHistograms(&histograms);
116 ASSERT_EQ(2U, histograms.size());
118 std::string name1 = histograms[0]->histogram_name()
    [all...]
histogram_snapshot_manager.cc 28 StatisticsRecorder::Histograms histograms; local
29 StatisticsRecorder::GetHistograms(&histograms);
30 for (StatisticsRecorder::Histograms::const_iterator it = histograms.begin();
31 histograms.end() != it;
45 // Crash if we detect that our histograms have been overwritten. This may be
  /external/webp/src/enc/
histogram.c 30 // Maximum number of histograms allowed in greedy combining algorithm.
115 sizeof(*set) + size * (sizeof(*set->histograms) +
122 set->histograms = (VP8LHistogram**)memory;
123 memory += size * sizeof(*set->histograms);
128 set->histograms[i] = (VP8LHistogram*)memory;
130 set->histograms[i]->literal_ = (uint32_t*)(memory + sizeof(VP8LHistogram));
131 VP8LHistogramInit(set->histograms[i], cache_bits);
415 // Construct the histograms from backward references.
421 VP8LHistogram** const histograms = image_histo->histograms; local
443 VP8LHistogram** const histograms = image_histo->histograms; local
457 VP8LHistogram** const histograms = image_histo->histograms; local
490 VP8LHistogram** const histograms = image_histo->histograms; local
511 VP8LHistogram** const histograms = image_histo->histograms; local
660 VP8LHistogram** const histograms = image_histo->histograms; local
752 VP8LHistogram** const histograms = image_histo->histograms; local
816 VP8LHistogram** const histograms = image_histo->histograms; local
    [all...]
histogram.h 12 // Models the histograms of literal and distance codes.
30 // A simple container for histograms of data.
41 uint32_t trivial_symbol_; // True, if histograms for Red, Blue & Alpha
49 // Collection of histograms with fixed capacity, allocated as one
54 VP8LHistogram** histograms; member in struct:__anon26153
82 // Allocate an array of pointer to histograms, allocated and initialized
vp8l.c 277 // Let's add one zero to the predicted histograms. The zeros are removed
435 // Iterate over all histograms and get the aggregate number of codes used.
437 const VP8LHistogram* const histo = histogram_image->histograms[i];
478 VP8LHistogram* const histo = histogram_image->histograms[i];
500 // and more spiking histograms.
777 VP8LHistogramStoreRefs(refs, histogram_image->histograms[0]);
897 // Free combined histograms.
901 // Free scratch histograms.
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
hist.h 34 extern histogram * histograms;
gmon_io.c 432 if (!histograms)
484 if (histograms && (tmp.low_pc != histograms->lowpc
485 || tmp.high_pc != histograms->highpc
486 || (hist_num_bins != histograms->num_bins)))
493 if (!histograms)
496 histograms = (struct histogram *) xmalloc (sizeof (struct histogram));
497 histograms->lowpc = tmp.low_pc;
498 histograms->highpc = tmp.high_pc;
499 histograms->num_bins = hist_num_bins
    [all...]
hist.c 51 histogram * histograms;
152 /* The only reason we require the same scale for histograms is that
203 histograms = (struct histogram *)
204 xrealloc (histograms, sizeof (histogram) * (num_histograms + 1));
205 memcpy (histograms + num_histograms,
207 record = &histograms[num_histograms];
245 /* Write all execution histograms file OFP. FILENAME is the name
256 histogram *record = &histograms[r];
456 hist_assign_samples_1 (&histograms[i]);
676 if (histograms[i].lowpc <= address && address < histograms[i].highpc
50 histogram * histograms; variable
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/value/
histogram_util_unittest.py 32 histograms = []
33 histograms.append("""{"count": 3, "buckets": [
37 histograms.append("""{"count": 20, "buckets": [
41 histograms.append("""{"count": 15, "buckets": [
46 histogram_util.AddHistograms(histograms))
histogram_util.py 7 The histogram data is the same data as is visible from "chrome://histograms".
57 'Trying to compare histograms from different processes (%d and %d)'
82 """Adds histograms together. Used for aggregating data.
87 Note that the histograms to be added together are typically from different
125 """Get the count of events for the given histograms."""
134 """Get the sum of events for the given histograms."""
  /external/opencv3/3rdparty/libwebp/enc/
histogram.c 61 + (uint64_t)size * sizeof(*set->histograms)
62 + (uint64_t)size * sizeof(**set->histograms);
68 set->histograms = (VP8LHistogram**)memory;
69 memory += size * sizeof(*set->histograms);
74 set->histograms[i] = bulk + i;
75 VP8LHistogramInit(set->histograms[i], cache_bits);
341 VP8LHistogram** const histograms = image->histograms; local
346 VP8LHistogramAddSinglePixOrCopy(histograms[ix], v);
378 // Copy histograms from in[] to out[]
    [all...]
histogram.h 12 // Models the histograms of literal and distance codes.
31 // A simple container for histograms of data.
45 // Collection of histograms with fixed capacity, allocated as one
50 VP8LHistogram** histograms; member in struct:__anon20452
69 // Allocate an array of pointer to histograms, allocated and initialized
vp8l.c 191 // Iterate over all histograms and get the aggregate number of codes used.
193 const VP8LHistogram* const histo = histogram_image->histograms[i];
228 VP8LHistogram* const histo = histogram_image->histograms[i];
249 // and more spiking histograms.
488 VP8LHistogramStoreRefs(&refs, histogram_image->histograms[0]);
568 // Free combined histograms.
    [all...]
  /external/pdfium/samples/
image_diff.cc 174 // "Comparing Images Using Joint Histograms" by Pass & Zabih
212 " RGBA value histograms (which is resistant to shifts in layout)\n"
318 bool histograms = false; local
330 histograms = true;
347 return CompareImages(filename1, filename2, histograms);
  /system/core/metricsd/uploader/
upload_service.cc 182 base::StatisticsRecorder::Histograms histograms; local
183 base::StatisticsRecorder::GetHistograms(&histograms);
  /external/ImageMagick/MagickCore/
paint.c 712 **histograms,
745 histograms=AcquireHistogramThreadSet(NumberPaintBins);
746 if (histograms == (size_t **) NULL)
790 histogram=histograms[GetOpenMPThreadId()];
866 histograms=DestroyHistogramThreadSet(histograms);
708 **histograms, local
    [all...]
  /external/ImageMagick/www/api/
segment.php 59 <p>SegmentImage() segment an image by analyzing the histograms of the color components and identifying units that are homogeneous with the fuzzy C-means technique.</p>
magick-image.php     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
TelephonyMetrics.java 466 // Build histogram. Currently we only support RIL histograms.
468 log.histograms = new TelephonyProto.TelephonyHistogram[rilHistograms.size()];
470 log.histograms[i] = new TelephonyProto.TelephonyHistogram();
472 TelephonyProto.TelephonyHistogram histogramProto = log.histograms[i];
    [all...]

Completed in 513 milliseconds