HomeSort by relevance Sort by last modified time
    Searched refs:cmd_depth (Results 1 - 4 of 4) sorted by null

  /external/brotli/c/enc/
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],
compress_fragment.c 132 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS] = { 0 }; local
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)
    [all...]
compress_fragment_two_pass.c 75 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS] = { 0 }; local
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, depth + 24, 8)
    [all...]
brotli_bit_stream.c 1161 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS]; local
1254 uint8_t cmd_depth[BROTLI_NUM_COMMAND_SYMBOLS]; local
    [all...]

Completed in 185 milliseconds