Lines Matching full:commands

119     uint32_t insertlen, uint32_t** commands) {  in EmitInsertLen()  argument
121 **commands = insertlen; in EmitInsertLen()
128 **commands = inscode | (extra << 8); in EmitInsertLen()
134 **commands = code | (extra << 8); in EmitInsertLen()
137 **commands = 21 | (extra << 8); in EmitInsertLen()
140 **commands = 22 | (extra << 8); in EmitInsertLen()
143 **commands = 23 | (extra << 8); in EmitInsertLen()
145 ++(*commands); in EmitInsertLen()
148 static BROTLI_INLINE void EmitCopyLen(size_t copylen, uint32_t** commands) { in EmitCopyLen() argument
150 **commands = (uint32_t)(copylen + 38); in EmitCopyLen()
157 **commands = (uint32_t)(code | (extra << 8)); in EmitCopyLen()
163 **commands = (uint32_t)(code | (extra << 8)); in EmitCopyLen()
166 **commands = (uint32_t)(63 | (extra << 8)); in EmitCopyLen()
168 ++(*commands); in EmitCopyLen()
172 size_t copylen, uint32_t** commands) { in EmitCopyLenLastDistance() argument
174 **commands = (uint32_t)(copylen + 20); in EmitCopyLenLastDistance()
175 ++(*commands); in EmitCopyLenLastDistance()
182 **commands = (uint32_t)(code | (extra << 8)); in EmitCopyLenLastDistance()
183 ++(*commands); in EmitCopyLenLastDistance()
188 **commands = (uint32_t)(code | (extra << 8)); in EmitCopyLenLastDistance()
189 ++(*commands); in EmitCopyLenLastDistance()
190 **commands = 64; in EmitCopyLenLastDistance()
191 ++(*commands); in EmitCopyLenLastDistance()
197 **commands = (uint32_t)(code | (extra << 8)); in EmitCopyLenLastDistance()
198 ++(*commands); in EmitCopyLenLastDistance()
199 **commands = 64; in EmitCopyLenLastDistance()
200 ++(*commands); in EmitCopyLenLastDistance()
203 **commands = (uint32_t)(63 | (extra << 8)); in EmitCopyLenLastDistance()
204 ++(*commands); in EmitCopyLenLastDistance()
205 **commands = 64; in EmitCopyLenLastDistance()
206 ++(*commands); in EmitCopyLenLastDistance()
210 static BROTLI_INLINE void EmitDistance(uint32_t distance, uint32_t** commands) { in EmitDistance() argument
217 **commands = distcode | (extra << 8); in EmitDistance()
218 ++(*commands); in EmitDistance()
242 uint8_t** literals, uint32_t** commands) { in CreateCommands() argument
332 EmitInsertLen((uint32_t)insert, commands); in CreateCommands()
336 **commands = 64; in CreateCommands()
337 ++(*commands); in CreateCommands()
339 EmitDistance((uint32_t)distance, commands); in CreateCommands()
342 EmitCopyLenLastDistance(matched, commands); in CreateCommands()
396 EmitCopyLen(matched, commands); in CreateCommands()
397 EmitDistance((uint32_t)last_distance, commands); in CreateCommands()
449 EmitInsertLen(insert, commands); in CreateCommands()
457 const uint32_t* commands, const size_t num_commands, in StoreCommands() argument
490 const uint32_t code = commands[i] & 0xFF; in StoreCommands()
502 const uint32_t cmd = commands[i]; in StoreCommands()
570 uint32_t* commands = command_buf; in BrotliCompressFragmentTwoPassImpl() local
574 table_bits, min_match, &literals, &commands); in BrotliCompressFragmentTwoPassImpl()
577 const size_t num_commands = (size_t)(commands - command_buf); in BrotliCompressFragmentTwoPassImpl()