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

  /external/libchrome/base/metrics/
histogram_snapshot_manager_unittest.cc 83 // kNoFlags filter should record all histograms.
91 const std::vector<std::string>& histograms = local
93 EXPECT_EQ(2U, histograms.size());
94 EXPECT_EQ("UmaHistogram", histograms[0]);
95 EXPECT_EQ("UmaStabilityHistogram", histograms[1]);
107 const std::vector<std::string>& histograms = local
109 EXPECT_EQ(2U, histograms.size());
110 EXPECT_EQ("UmaHistogram", histograms[0]);
111 EXPECT_EQ("UmaStabilityHistogram", histograms[1]);
123 const std::vector<std::string>& histograms local
    [all...]
sparse_histogram_unittest.cc 23 // for histogram allocation. False will allocate histograms from the process
156 StatisticsRecorder::Histograms histograms; local
157 StatisticsRecorder::GetHistograms(&histograms);
159 ASSERT_EQ(1U, histograms.size());
160 HistogramBase* sparse_histogram = histograms[0];
185 StatisticsRecorder::Histograms histograms; local
186 StatisticsRecorder::GetHistograms(&histograms);
187 ASSERT_EQ(2U, histograms.size())
    [all...]
  /external/webp/src/enc/
histogram_enc.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:__anon38552
82 // Allocate an array of pointer to histograms, allocated and initialized
histogram_enc.c 31 // Maximum number of histograms allowed in greedy combining algorithm.
116 sizeof(*set) + size * (sizeof(*set->histograms) +
123 set->histograms = (VP8LHistogram**)memory;
124 memory += size * sizeof(*set->histograms);
129 set->histograms[i] = (VP8LHistogram*)memory;
131 set->histograms[i]->literal_ = (uint32_t*)(memory + sizeof(VP8LHistogram));
132 VP8LHistogramInit(set->histograms[i], cache_bits);
249 // trivial_at_end is 1 if the two histograms only have one element that is
258 // BitsEntropyRefine is 0 for histograms with only one non-zero value.
464 // Construct the histograms from backward references
470 VP8LHistogram** const histograms = image_histo->histograms; local
492 VP8LHistogram** const histograms = image_histo->histograms; local
507 VP8LHistogram** const histograms = image_histo->histograms; local
531 VP8LHistogram** const histograms = image_histo->histograms; local
701 VP8LHistogram** const histograms = image_histo->histograms; local
794 VP8LHistogram** const histograms = image_histo->histograms; local
    [all...]
  /external/brotli/enc/
metablock_inc.h 19 /* We merge histograms A and B if
37 /* Offset of the histograms of the previous two block types. */
48 BlockSplit* split, HistogramType** histograms, size_t* histograms_size) {
70 assert(*histograms == 0);
72 *histograms = BROTLI_ALLOC(m, HistogramType, *histograms_size);
73 self->histograms_ = *histograms;
88 HistogramType* histograms = self->histograms_; variable
96 BitsEntropy(histograms[0].data_, self->alphabet_size_);
102 FN(HistogramClear)(&histograms[self->curr_histogram_ix_]);
105 double entropy = BitsEntropy(histograms[self->curr_histogram_ix_].data_
    [all...]
metablock.c 162 Gathers histograms for all context buckets. */
170 /* We merge histograms A and B if
188 /* Offset of the histograms of the previous two block types. */
199 size_t num_symbols, BlockSplit* split, HistogramLiteral** histograms,
229 assert(*histograms == 0);
231 *histograms = BROTLI_ALLOC(m, HistogramLiteral, *histograms_size);
232 self->histograms_ = *histograms;
248 HistogramLiteral* histograms = self->histograms_; local
261 BitsEntropy(histograms[i].data_, self->alphabet_size_);
273 /* Try merging the set of histograms for the current block type with th
    [all...]
  /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 1246 milliseconds