Lines Matching defs:symbol
91 next processed symbol. */
108 int symbol; /* symbol index in original or sorted table */
121 /* Generate offsets into sorted symbol table by code length. */
122 symbol = -1;
125 symbol += count[bits];
126 offset[bits] = symbol;
132 /* Sort symbols by length, by symbol order within each length. */
133 symbol = BROTLI_CODE_LENGTH_CODES;
136 symbol--;
137 sorted[offset[code_lengths[symbol]]--] = symbol;
139 } while (symbol != 0);
155 symbol = 0;
160 code = ConstructHuffmanCode((uint8_t)bits, (uint16_t)sorted[symbol++]);
176 int symbol; /* symbol index in original or sorted table */
212 symbol = bits - (BROTLI_HUFFMAN_MAX_CODE_LENGTH + 1);
214 symbol = symbol_lists[symbol];
215 code = ConstructHuffmanCode((uint8_t)bits, (uint16_t)symbol);
235 symbol = len - (BROTLI_HUFFMAN_MAX_CODE_LENGTH + 1);
249 symbol = symbol_lists[symbol];
250 code = ConstructHuffmanCode((uint8_t)(len - root_bits), (uint16_t)symbol);