Lines Matching refs:histo_size
36 const int histo_size = VP8LGetHistogramSize(cache_bits); in HistogramClear() local
37 memset(p, 0, histo_size); in HistogramClear()
53 const int histo_size = VP8LGetHistogramSize(dst_cache_bits); in HistogramCopy() local
55 memcpy(dst, src, histo_size); in HistogramCopy()
113 const int histo_size = VP8LGetHistogramSize(cache_bits); in VP8LAllocateHistogramSet() local
116 histo_size + WEBP_ALIGN_CST); in VP8LAllocateHistogramSet()
132 memory += histo_size; in VP8LAllocateHistogramSet()
441 const int histo_size = orig_histo->size; in HistogramCopyAndAnalyze() local
444 for (i = 0; i < histo_size; ++i) { in HistogramCopyAndAnalyze()
458 const int histo_size = image_histo->size; in HistogramAnalyzeEntropyBin() local
459 const int bin_depth = histo_size + 1; in HistogramAnalyzeEntropyBin()
464 for (i = 0; i < histo_size; ++i) { in HistogramAnalyzeEntropyBin()
471 for (i = 0; i < histo_size; ++i) { in HistogramAnalyzeEntropyBin()
853 static double GetCombineCostFactor(int histo_size, int quality) { in GetCombineCostFactor() argument
856 if (histo_size > 256) combine_cost_factor /= 2.; in GetCombineCostFactor()
857 if (histo_size > 512) combine_cost_factor /= 2.; in GetCombineCostFactor()
858 if (histo_size > 1024) combine_cost_factor /= 2.; in GetCombineCostFactor()