Lines Matching defs:value
62 BrotliDecoderState* state, BrotliDecoderParameter p, uint32_t value) {
66 state->canny_ringbuffer_allocation = !!value ? 0 : 1;
70 state->large_window = TO_BROTLI_BOOL(!!value);
182 BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) {
190 *value = 0;
201 *value = 1;
205 /* Use output value as a temporary storage. It MUST be persisted. */
206 *value = bits;
210 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, *value, &bits))) {
214 *value = (1U << *value) + bits;
430 uint32_t* value) {
437 *value = BROTLI_HC_FAST_LOAD_VALUE(table);
445 uint32_t* value) {
446 uint32_t result = *value;
449 const HuffmanCode* ext = table + (val & HUFFMAN_TABLE_MASK) + *value;
459 PreloadSymbol(0, table, br, bits, value);
537 value is not BROTLI_REPEAT_PREVIOUS_CODE_LENGTH, then it is a new
763 /* The value is used as follows:
948 uint8_t value = mtf_u8[index];
950 v[i] = value;
951 mtf_u8[-1] = value;
1336 /* Restore previous value. */
1538 ... to get the actual value of the parameter NDIRECT, left-shift this
1791 uint32_t value;
1792 PreloadSymbol(safe, s->literal_htree, br, &bits, &value);
1801 PreloadSymbol(safe, s->literal_htree, br, &bits, &value);
1806 (uint8_t)ReadPreloadedSymbol(s->literal_htree, br, &bits, &value);