Lines Matching refs:lgwin
65 if (params->lgwin < BROTLI_MIN_WINDOW_BITS) {
66 params->lgwin = BROTLI_MIN_WINDOW_BITS;
70 if (params->lgwin > max_lgwin) params->lgwin = max_lgwin;
79 lgblock = params->lgwin;
84 if (params->quality >= 9 && params->lgwin > lgblock) {
85 lgblock = BROTLI_MIN(int, 18, params->lgwin);
95 Allocate at least lgwin + 1 bits for the ring buffer so that the newly
96 added block fits there completely and we still get lgwin bits and at least
100 return 1 + BROTLI_MAX(int, params->lgwin, params->lgblock);
129 } else if (params->lgwin <= 16) {
131 } else if (params->size_hint >= (1 << 20) && params->lgwin >= 19) {
146 if (params->lgwin > 24) {