Lines Matching refs:value
147 BrotliEncoderState* state, BrotliEncoderParameter p, uint32_t value) {
153 state->params.mode = (BrotliEncoderMode)value;
157 state->params.quality = (int)value;
161 state->params.lgwin = (int)value;
165 state->params.lgblock = (int)value;
169 if ((value != 0) && (value != 1)) return BROTLI_FALSE;
170 state->params.disable_literal_context_modeling = TO_BROTLI_BOOL(!!value);
174 state->params.size_hint = value;
178 state->params.large_window = TO_BROTLI_BOOL(!!value);
182 state->params.dist.distance_postfix_bits = value;
186 state->params.dist.num_direct_distance_codes = value;
190 if (value > (1u << 30)) return BROTLI_FALSE;
191 state->params.stream_offset = value;
431 without context and 13 additional histograms for each context value. */