Lines Matching refs:cmd_depth
132 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS] = { 0 }; in BuildAndStoreCommandPrefixCode() local
142 memcpy(cmd_depth, depth, 24); in BuildAndStoreCommandPrefixCode()
143 memcpy(cmd_depth + 24, depth + 40, 8); in BuildAndStoreCommandPrefixCode()
144 memcpy(cmd_depth + 32, depth + 24, 8); in BuildAndStoreCommandPrefixCode()
145 memcpy(cmd_depth + 40, depth + 48, 8); in BuildAndStoreCommandPrefixCode()
146 memcpy(cmd_depth + 48, depth + 32, 8); in BuildAndStoreCommandPrefixCode()
147 memcpy(cmd_depth + 56, depth + 56, 8); in BuildAndStoreCommandPrefixCode()
148 BrotliConvertBitDepthsToSymbols(cmd_depth, 64, cmd_bits); in BuildAndStoreCommandPrefixCode()
159 memset(cmd_depth, 0, 64); /* only 64 first values were used */ in BuildAndStoreCommandPrefixCode()
160 memcpy(cmd_depth, depth, 8); in BuildAndStoreCommandPrefixCode()
161 memcpy(cmd_depth + 64, depth + 8, 8); in BuildAndStoreCommandPrefixCode()
162 memcpy(cmd_depth + 128, depth + 16, 8); in BuildAndStoreCommandPrefixCode()
163 memcpy(cmd_depth + 192, depth + 24, 8); in BuildAndStoreCommandPrefixCode()
164 memcpy(cmd_depth + 384, depth + 32, 8); in BuildAndStoreCommandPrefixCode()
166 cmd_depth[128 + 8 * i] = depth[40 + i]; in BuildAndStoreCommandPrefixCode()
167 cmd_depth[256 + 8 * i] = depth[48 + i]; in BuildAndStoreCommandPrefixCode()
168 cmd_depth[448 + 8 * i] = depth[56 + i]; in BuildAndStoreCommandPrefixCode()
171 cmd_depth, BROTLI_NUM_COMMAND_SYMBOLS, tree, storage_ix, storage); in BuildAndStoreCommandPrefixCode()
427 BROTLI_BOOL is_last, int* table, size_t table_bits, uint8_t cmd_depth[128], 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()
736 BROTLI_BOOL is_last, int* table, uint8_t cmd_depth[128], \
740 cmd_depth, cmd_bits, cmd_code_numbits, cmd_code, storage_ix, storage); \
747 BROTLI_BOOL is_last, int* table, size_t table_size, uint8_t cmd_depth[128], in FOR_TABLE_BITS_()
765 m, input, input_size, is_last, table, cmd_depth, cmd_bits, \ in FOR_TABLE_BITS_()