• Home
  • Raw
  • Download

Lines Matching refs:alphabet_size

473     uint32_t alphabet_size, uint32_t max_symbol, BrotliDecoderState* s) {  in ReadSimpleHuffmanSymbols()  argument
476 uint32_t max_bits = Log2Floor(alphabet_size - 1); in ReadSimpleHuffmanSymbols()
541 uint32_t repeat_delta, uint32_t alphabet_size, uint32_t* symbol, in ProcessRepeatedCodeLength() argument
563 if (*symbol + repeat_delta > alphabet_size) { in ProcessRepeatedCodeLength()
565 *symbol = alphabet_size; in ProcessRepeatedCodeLength()
589 uint32_t alphabet_size, BrotliDecoderState* s) { in ReadSymbolCodeLengths() argument
602 while (symbol < alphabet_size && space > 0) { in ReadSymbolCodeLengths()
628 ProcessRepeatedCodeLength(code_len, repeat_delta, alphabet_size, in ReadSymbolCodeLengths()
638 uint32_t alphabet_size, BrotliDecoderState* s) { in SafeReadSymbolCodeLengths() argument
641 while (s->symbol < alphabet_size && s->space > 0) { in SafeReadSymbolCodeLengths()
674 ProcessRepeatedCodeLength(code_len, repeat_delta, alphabet_size, in SafeReadSymbolCodeLengths()
740 static BrotliDecoderErrorCode ReadHuffmanCode(uint32_t alphabet_size, in ReadHuffmanCode() argument
747 alphabet_size &= 0x7FF; in ReadHuffmanCode()
782 ReadSimpleHuffmanSymbols(alphabet_size, max_symbol, s); in ReadHuffmanCode()
963 ReadHuffmanCode(group->alphabet_size, group->max_symbol, in HuffmanTreeGroupDecode()
1031 uint32_t alphabet_size = *num_htrees + s->max_run_length_prefix; in DecodeContextMap() local
1032 result = ReadHuffmanCode(alphabet_size, alphabet_size, in DecodeContextMap()
2218 uint32_t alphabet_size = s->num_block_types[s->loop_counter] + 2; in BrotliDecoderDecompressStream() local
2220 result = ReadHuffmanCode(alphabet_size, alphabet_size, in BrotliDecoderDecompressStream()
2228 uint32_t alphabet_size = BROTLI_NUM_BLOCK_LEN_SYMBOLS; in BrotliDecoderDecompressStream() local
2230 result = ReadHuffmanCode(alphabet_size, alphabet_size, in BrotliDecoderDecompressStream()