Searched refs:cmd_depth (Results 1 – 4 of 4) sorted by relevance
/external/brotli/c/enc/ |
D | compress_fragment.c | 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() [all …]
|
D | compress_fragment_two_pass.c | 75 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS] = { 0 }; in BuildAndStoreCommandPrefixCode() local 84 memcpy(cmd_depth, depth + 24, 24); in BuildAndStoreCommandPrefixCode() 85 memcpy(cmd_depth + 24, depth, 8); in BuildAndStoreCommandPrefixCode() 86 memcpy(cmd_depth + 32, depth + 48, 8); in BuildAndStoreCommandPrefixCode() 87 memcpy(cmd_depth + 40, depth + 8, 8); in BuildAndStoreCommandPrefixCode() 88 memcpy(cmd_depth + 48, depth + 56, 8); in BuildAndStoreCommandPrefixCode() 89 memcpy(cmd_depth + 56, depth + 16, 8); in BuildAndStoreCommandPrefixCode() 90 BrotliConvertBitDepthsToSymbols(cmd_depth, 64, cmd_bits); in BuildAndStoreCommandPrefixCode() 101 memset(cmd_depth, 0, 64); /* only 64 first values were used */ in BuildAndStoreCommandPrefixCode() 102 memcpy(cmd_depth, depth + 24, 8); in BuildAndStoreCommandPrefixCode() [all …]
|
D | compress_fragment.h | 50 uint8_t cmd_depth[128],
|
D | brotli_bit_stream.c | 1101 const uint8_t* cmd_depth, in StoreDataWithHuffmanCodes() argument 1114 cmd_depth[cmd_code], cmd_bits[cmd_code], storage_ix, storage); in StoreDataWithHuffmanCodes() 1144 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS]; in BrotliStoreMetaBlockTrivial() local 1170 cmd_depth, cmd_bits, in BrotliStoreMetaBlockTrivial() 1179 cmd_depth, cmd_bits, in BrotliStoreMetaBlockTrivial() 1237 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS]; in BrotliStoreMetaBlockFast() local 1255 cmd_depth, cmd_bits, in BrotliStoreMetaBlockFast() 1267 cmd_depth, cmd_bits, in BrotliStoreMetaBlockFast()
|