Lines Matching refs:cache_bits
35 const int cache_bits = p->palette_code_bits_; in HistogramClear() local
36 const int histo_size = VP8LGetHistogramSize(cache_bits); in HistogramClear()
38 p->palette_code_bits_ = cache_bits; in HistogramClear()
59 int VP8LGetHistogramSize(int cache_bits) { in VP8LGetHistogramSize() argument
60 const int literal_size = VP8LHistogramNumCodes(cache_bits); in VP8LGetHistogramSize()
98 VP8LHistogram* VP8LAllocateHistogram(int cache_bits) { in VP8LAllocateHistogram() argument
100 const int total_size = VP8LGetHistogramSize(cache_bits); in VP8LAllocateHistogram()
106 VP8LHistogramInit(histo, cache_bits); in VP8LAllocateHistogram()
110 VP8LHistogramSet* VP8LAllocateHistogramSet(int size, int cache_bits) { in VP8LAllocateHistogramSet() argument
113 const int histo_size = VP8LGetHistogramSize(cache_bits); in VP8LAllocateHistogramSet()
131 VP8LHistogramInit(set->histograms[i], cache_bits); in VP8LAllocateHistogramSet()
867 int histo_bits, int cache_bits, in VP8LGetHistoImageSymbols() argument
885 VP8LAllocateHistogramSet(image_histo_raw_size, cache_bits); in VP8LGetHistoImageSymbols()