Lines Matching defs:cmd_depth
132 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS] = { 0 };
142 memcpy(cmd_depth, depth, 24);
143 memcpy(cmd_depth + 24, depth + 40, 8);
144 memcpy(cmd_depth + 32, depth + 24, 8);
145 memcpy(cmd_depth + 40, depth + 48, 8);
146 memcpy(cmd_depth + 48, depth + 32, 8);
147 memcpy(cmd_depth + 56, depth + 56, 8);
148 BrotliConvertBitDepthsToSymbols(cmd_depth, 64, cmd_bits);
159 memset(cmd_depth, 0, 64); /* only 64 first values were used */
160 memcpy(cmd_depth, depth, 8);
161 memcpy(cmd_depth + 64, depth + 8, 8);
162 memcpy(cmd_depth + 128, depth + 16, 8);
163 memcpy(cmd_depth + 192, depth + 24, 8);
164 memcpy(cmd_depth + 384, depth + 32, 8);
166 cmd_depth[128 + 8 * i] = depth[40 + i];
167 cmd_depth[256 + 8 * i] = depth[48 + i];
168 cmd_depth[448 + 8 * i] = depth[56 + i];
171 cmd_depth, BROTLI_NUM_COMMAND_SYMBOLS, tree, storage_ix, storage);
427 BROTLI_BOOL is_last, int* table, size_t table_bits, uint8_t cmd_depth[128],
570 EmitInsertLen(insert, cmd_depth, cmd_bits, cmd_histo,
581 EmitLongInsertLen(insert, cmd_depth, cmd_bits, cmd_histo,
587 BrotliWriteBits(cmd_depth[64], cmd_bits[64], storage_ix, storage);
590 EmitDistance((size_t)distance, cmd_depth, cmd_bits,
594 EmitCopyLenLastDistance(matched, cmd_depth, cmd_bits, cmd_histo,
629 EmitCopyLen(matched, cmd_depth, cmd_bits, cmd_histo,
631 EmitDistance((size_t)last_distance, cmd_depth, cmd_bits,
684 EmitInsertLen(insert, cmd_depth, cmd_bits, cmd_histo,
692 EmitLongInsertLen(insert, cmd_depth, cmd_bits, cmd_histo,
716 BuildAndStoreCommandPrefixCode(cmd_histo, cmd_depth, cmd_bits,
726 BuildAndStoreCommandPrefixCode(cmd_histo, cmd_depth, cmd_bits,
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],
765 m, input, input_size, is_last, table, cmd_depth, cmd_bits, \