Home
last modified time | relevance | path

Searched refs:total_output (Results 1 – 1 of 1) sorted by relevance

/f-stack/freebsd/contrib/zstd/doc/educational_decoder/
H A Dzstd_decompress.c1239 size_t total_output = ctx->current_total_output; in execute_sequences() local
1245 total_output += literals_size; in execute_sequences()
1254 total_output += match_length; in execute_sequences()
1261 total_output += len; in execute_sequences()
1264 ctx->current_total_output = total_output; in execute_sequences()
1336 if (total_output <= ctx->header.window_size) { in execute_match_copy()
1338 if (offset > total_output + ctx->dict_content_len) { in execute_match_copy()
1343 if (offset > total_output) { in execute_match_copy()
1348 MIN(offset - total_output, match_length); in execute_match_copy()
1879 size_t total_output = 0; in HUF_decompress_4stream() local
[all …]