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

  /external/libchrome/base/metrics/
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
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...]
  /external/opencv3/3rdparty/libwebp/enc/
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
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...]
  /external/webp/src/enc/
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
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...]
  /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/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);
  /toolchain/binutils/binutils-2.25/gprof/
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...]

Completed in 147 milliseconds