| /xsrc/external/mit/brotli/dist/c/enc/ |
| H A D | compress_fragment.h | 28 "cmd_depth" and "cmd_bits" contain the command and distance prefix codes 37 updated to represent the updated "cmd_depth" and "cmd_bits". 50 uint8_t cmd_depth[128],
|
| H A D | compress_fragment.c | 132 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS] = { 0 }; local in function:BuildAndStoreCommandPrefixCode 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, dept 425 BrotliCompressFragmentFastImpl(MemoryManager * m,const uint8_t * input,size_t input_size,BROTLI_BOOL is_last,int * table,size_t table_bits,uint8_t cmd_depth[128],uint16_t cmd_bits[128],size_t * cmd_code_numbits,uint8_t * cmd_code,size_t * storage_ix,uint8_t * storage) argument [all...] |
| H A D | compress_fragment_two_pass.c | 75 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS] = { 0 }; local in function:BuildAndStoreCommandPrefixCode 84 memcpy(cmd_depth, depth + 24, 24); 85 memcpy(cmd_depth + 24, depth, 8); 86 memcpy(cmd_depth + 32, depth + 48, 8); 87 memcpy(cmd_depth + 40, depth + 8, 8); 88 memcpy(cmd_depth + 48, depth + 56, 8); 89 memcpy(cmd_depth + 56, depth + 16, 8); 90 BrotliConvertBitDepthsToSymbols(cmd_depth, 64, cmd_bits); 101 memset(cmd_depth, 0, 64); /* only 64 first values were used */ 102 memcpy(cmd_depth, dept [all...] |
| H A D | brotli_bit_stream.c | 1101 const uint8_t* cmd_depth, 1114 cmd_depth[cmd_code], cmd_bits[cmd_code], storage_ix, storage); 1144 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS]; local in function:BrotliStoreMetaBlockTrivial 1170 cmd_depth, cmd_bits, 1179 cmd_depth, cmd_bits, 1237 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS]; local in function:BrotliStoreMetaBlockFast 1255 cmd_depth, cmd_bits, 1267 cmd_depth, cmd_bits, 1094 StoreDataWithHuffmanCodes(const uint8_t * input,size_t start_pos,size_t mask,const Command * commands,size_t n_commands,const uint8_t * lit_depth,const uint16_t * lit_bits,const uint8_t * cmd_depth,const uint16_t * cmd_bits,const uint8_t * dist_depth,const uint16_t * dist_bits,size_t * storage_ix,uint8_t * storage) argument
|