Lines Matching defs:extra_bits
551 uint32_t extra_bits = 3; /* for BROTLI_REPEAT_ZERO_CODE_LENGTH */
555 extra_bits = 2;
564 *repeat <<= extra_bits;
628 } else { /* code_len == 16..17, extra_bits == 2..3 */
629 uint32_t extra_bits =
632 (uint32_t)BrotliGetBitsUnmasked(br) & BitMask(extra_bits);
633 BrotliDropBits(br, extra_bits);
672 } else { /* code_len == 16..17, extra_bits == 2..3 */
673 uint32_t extra_bits = code_len - 14U;
675 BitMask(extra_bits);
676 if (available_bits < BROTLI_HC_FAST_LOAD_BITS(p) + extra_bits) {
680 BrotliDropBits(br, BROTLI_HC_FAST_LOAD_BITS(p) + extra_bits);