Home
last modified time | relevance | path

Searched refs:cache_bits_max (Results 1 – 2 of 2) sorted by relevance

/external/webp/src/enc/
Dbackward_references_enc.c730 const int cache_bits_max = (quality <= 25) ? 0 : *best_cache_bits; in CalculateBestCacheSize() local
738 assert(cache_bits_max >= 0 && cache_bits_max <= MAX_COLOR_CACHE_BITS); in CalculateBestCacheSize()
740 if (cache_bits_max == 0) { in CalculateBestCacheSize()
747 for (i = 0; i <= cache_bits_max; ++i) { in CalculateBestCacheSize()
768 int key = VP8LHashPix(pix, 32 - cache_bits_max); in CalculateBestCacheSize()
775 for (i = cache_bits_max; i >= 1; --i, key >>= 1) { in CalculateBestCacheSize()
796 for (i = 0; i <= cache_bits_max; ++i) { in CalculateBestCacheSize()
803 int key = VP8LHashPix(*argb, 32 - cache_bits_max); in CalculateBestCacheSize()
804 for (i = cache_bits_max; i >= 1; --i, key >>= 1) { in CalculateBestCacheSize()
815 for (i = 0; i <= cache_bits_max; ++i) { in CalculateBestCacheSize()
[all …]
Dbackward_references_enc.h232 int low_effort, int lz77_types_to_try, int cache_bits_max, int do_no_cache,