Lines Matching refs:cmd_bits
133 uint16_t cmd_bits[64]; in BuildAndStoreCommandPrefixCode() local
148 BrotliConvertBitDepthsToSymbols(cmd_depth, 64, cmd_bits); in BuildAndStoreCommandPrefixCode()
149 memcpy(bits, cmd_bits, 48); in BuildAndStoreCommandPrefixCode()
150 memcpy(bits + 24, cmd_bits + 32, 16); in BuildAndStoreCommandPrefixCode()
151 memcpy(bits + 32, cmd_bits + 48, 16); in BuildAndStoreCommandPrefixCode()
152 memcpy(bits + 40, cmd_bits + 24, 16); in BuildAndStoreCommandPrefixCode()
153 memcpy(bits + 48, cmd_bits + 40, 16); in BuildAndStoreCommandPrefixCode()
154 memcpy(bits + 56, cmd_bits + 56, 16); in BuildAndStoreCommandPrefixCode()
428 uint16_t cmd_bits[128], size_t* cmd_code_numbits, uint8_t* cmd_code, in BrotliCompressFragmentFastImpl()
570 EmitInsertLen(insert, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
581 EmitLongInsertLen(insert, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
587 BrotliWriteBits(cmd_depth[64], cmd_bits[64], storage_ix, storage); in BrotliCompressFragmentFastImpl()
590 EmitDistance((size_t)distance, cmd_depth, cmd_bits, in BrotliCompressFragmentFastImpl()
594 EmitCopyLenLastDistance(matched, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
629 EmitCopyLen(matched, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
631 EmitDistance((size_t)last_distance, cmd_depth, cmd_bits, in BrotliCompressFragmentFastImpl()
684 EmitInsertLen(insert, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
692 EmitLongInsertLen(insert, cmd_depth, cmd_bits, cmd_histo, in BrotliCompressFragmentFastImpl()
716 BuildAndStoreCommandPrefixCode(cmd_histo, cmd_depth, cmd_bits, in BrotliCompressFragmentFastImpl()
726 BuildAndStoreCommandPrefixCode(cmd_histo, cmd_depth, cmd_bits, in BrotliCompressFragmentFastImpl()
737 uint16_t cmd_bits[128], size_t* cmd_code_numbits, uint8_t* cmd_code, \
740 cmd_depth, cmd_bits, cmd_code_numbits, cmd_code, storage_ix, storage); \
748 uint16_t cmd_bits[128], size_t* cmd_code_numbits, uint8_t* cmd_code, in FOR_TABLE_BITS_()
765 m, input, input_size, is_last, table, cmd_depth, cmd_bits, \ in FOR_TABLE_BITS_()