Searched refs:VP8LHistogram (Results 1 – 7 of 7) sorted by relevance
/external/webp/src/enc/ |
D | histogram_enc.h | 48 } VP8LHistogram; typedef 55 VP8LHistogram** histograms; 63 void VP8LHistogramCreate(VP8LHistogram* const p, 72 void VP8LHistogramInit(VP8LHistogram* const p, int palette_code_bits, 77 VP8LHistogram* const histo); 80 void VP8LFreeHistogram(VP8LHistogram* const histo); 95 VP8LHistogram* VP8LAllocateHistogram(int cache_bits); 98 void VP8LHistogramAddSinglePixOrCopy(VP8LHistogram* const histo, 114 VP8LHistogram* const tmp_histo, 122 double VP8LHistogramEstimateBits(VP8LHistogram* const p);
|
D | histogram_enc.c | 34 static void HistogramClear(VP8LHistogram* const p) { in HistogramClear() 44 static void HistogramSwap(VP8LHistogram** const A, VP8LHistogram** const B) { in HistogramSwap() 45 VP8LHistogram* const tmp = *A; in HistogramSwap() 50 static void HistogramCopy(const VP8LHistogram* const src, in HistogramCopy() 51 VP8LHistogram* const dst) { in HistogramCopy() 64 const size_t total_size = sizeof(VP8LHistogram) + sizeof(int) * literal_size; in VP8LGetHistogramSize() 69 void VP8LFreeHistogram(VP8LHistogram* const histo) { in VP8LFreeHistogram() 78 VP8LHistogram* const histo) { in VP8LHistogramStoreRefs() 86 void VP8LHistogramCreate(VP8LHistogram* const p, in VP8LHistogramCreate() 96 void VP8LHistogramInit(VP8LHistogram* const p, int palette_code_bits, in VP8LHistogramInit() [all …]
|
D | backward_references_enc.c | 735 VP8LHistogram* histos[MAX_COLOR_CACHE_BITS + 1] = { NULL }; in CalculateBestCacheSize() 889 VP8LHistogram* histo = NULL; in GetBackwardReferences()
|
D | vp8l_enc.c | 485 const VP8LHistogram* const histo = histogram_image->histograms[i]; in GetHuffBitLengthsAndCodes() 527 VP8LHistogram* const histo = histogram_image->histograms[i]; in GetHuffBitLengthsAndCodes() 889 VP8LHistogram* tmp_histo = NULL; in EncodeImageInternal()
|
D | backward_references_cost_enc.c | 65 VP8LHistogram* const histo = VP8LAllocateHistogram(cache_bits); in CostModelBuild()
|
/external/webp/src/dsp/ |
D | lossless.h | 217 void VP8LHistogramAdd(const VP8LHistogram* const a, 218 const VP8LHistogram* const b, 219 VP8LHistogram* const out);
|
D | lossless_enc.c | 675 void VP8LHistogramAdd(const VP8LHistogram* const a, in VP8LHistogramAdd() 676 const VP8LHistogram* const b, VP8LHistogram* const out) { in VP8LHistogramAdd()
|