Home
last modified time | relevance | path

Searched refs:BROTLI_HC_FAST_LOAD_BITS (Results 1 – 2 of 2) sorted by relevance

/external/brotli/c/dec/
Dhuffman.h70 #define BROTLI_HC_FAST_LOAD_BITS(H) (H->bits) macro
86 #define BROTLI_HC_FAST_LOAD_BITS(H) ((__fastload_##H) & 0xFF)
Ddecode.c355 if (BROTLI_HC_FAST_LOAD_BITS(table) > HUFFMAN_TABLE_BITS) { in DecodeSymbol()
356 uint32_t nbits = BROTLI_HC_FAST_LOAD_BITS(table) - HUFFMAN_TABLE_BITS; in DecodeSymbol()
362 BrotliDropBits(br, BROTLI_HC_FAST_LOAD_BITS(table)); in DecodeSymbol()
381 if (BROTLI_HC_FAST_LOAD_BITS(table) == 0) { in SafeDecodeSymbol()
389 if (BROTLI_HC_FAST_LOAD_BITS(table) <= HUFFMAN_TABLE_BITS) { in SafeDecodeSymbol()
390 if (BROTLI_HC_FAST_LOAD_BITS(table) <= available_bits) { in SafeDecodeSymbol()
391 BrotliDropBits(br, BROTLI_HC_FAST_LOAD_BITS(table)); in SafeDecodeSymbol()
403 val = (val & BitMask(BROTLI_HC_FAST_LOAD_BITS(table))) >> HUFFMAN_TABLE_BITS; in SafeDecodeSymbol()
406 if (available_bits < BROTLI_HC_FAST_LOAD_BITS(table)) { in SafeDecodeSymbol()
410 BrotliDropBits(br, HUFFMAN_TABLE_BITS + BROTLI_HC_FAST_LOAD_BITS(table)); in SafeDecodeSymbol()
[all …]