Lines Matching defs:bits
69 significant bits of value. */
116 int bits;
123 bits = 1;
125 symbol += count[bits];
126 offset[bits] = symbol;
127 bits++;
156 bits = 1;
159 for (bits_count = count[bits]; bits_count != 0; --bits_count) {
160 code = ConstructHuffmanCode((uint8_t)bits, (uint16_t)sorted[symbol++]);
166 } while (++bits <= BROTLI_HUFFMAN_MAX_CODE_LENGTH_CODE_LENGTH);
186 int bits;
209 bits = 1;
212 symbol = bits - (BROTLI_HUFFMAN_MAX_CODE_LENGTH + 1);
213 for (bits_count = count[bits]; bits_count != 0; --bits_count) {
215 code = ConstructHuffmanCode((uint8_t)bits, (uint16_t)symbol);
221 } while (++bits <= table_bits);