Home | History | Annotate | Download | only in enc

Lines Matching defs:symbols

243                                    size_t symbols[4],
257 if (depths[symbols[j]] < depths[symbols[i]]) {
258 BROTLI_SWAP(size_t, symbols, j, i);
265 BrotliWriteBits(max_bits, symbols[0], storage_ix, storage);
266 BrotliWriteBits(max_bits, symbols[1], storage_ix, storage);
268 BrotliWriteBits(max_bits, symbols[0], storage_ix, storage);
269 BrotliWriteBits(max_bits, symbols[1], storage_ix, storage);
270 BrotliWriteBits(max_bits, symbols[2], storage_ix, storage);
272 BrotliWriteBits(max_bits, symbols[0], storage_ix, storage);
273 BrotliWriteBits(max_bits, symbols[1], storage_ix, storage);
274 BrotliWriteBits(max_bits, symbols[2], storage_ix, storage);
275 BrotliWriteBits(max_bits, symbols[3], storage_ix, storage);
277 BrotliWriteBits(1, depths[symbols[0]] == 1 ? 1 : 0, storage_ix, storage);
411 size_t symbols[4] = { 0 };
417 symbols[count] = length;
427 BrotliWriteBits(max_bits, symbols[0], storage_ix, storage);
428 depth[symbols[0]] = 0;
429 bits[symbols[0]] = 0;
516 if (depth[symbols[j]] < depth[symbols[i]]) {
517 BROTLI_SWAP(size_t, symbols, j, i);
523 BrotliWriteBits(max_bits, symbols[0], storage_ix, storage);
524 BrotliWriteBits(max_bits, symbols[1], storage_ix, storage);
526 BrotliWriteBits(max_bits, symbols[0], storage_ix, storage);
527 BrotliWriteBits(max_bits, symbols[1], storage_ix, storage);
528 BrotliWriteBits(max_bits, symbols[2], storage_ix, storage);
530 BrotliWriteBits(max_bits, symbols[0], storage_ix, storage);
531 BrotliWriteBits(max_bits, symbols[1], storage_ix, storage);
532 BrotliWriteBits(max_bits, symbols[2], storage_ix, storage);
533 BrotliWriteBits(max_bits, symbols[3], storage_ix, storage);
535 BrotliWriteBits(1, depth[symbols[0]] == 1 ? 1 : 0, storage_ix, storage);