Lines Matching refs:total_output
379 size_t match_length, size_t total_output,
1239 size_t total_output = ctx->current_total_output; in execute_sequences() local
1245 total_output += literals_size; in execute_sequences()
1252 execute_match_copy(ctx, offset, match_length, total_output, out); 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()
1333 size_t match_length, size_t total_output, in execute_match_copy() argument
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()
1350 ctx->dict_content_len - (offset - total_output); in execute_match_copy()
1879 size_t total_output = 0; in HUF_decompress_4stream() local
1883 total_output += HUF_decompress_1stream(dtable, out, &in1); in HUF_decompress_4stream()
1884 total_output += HUF_decompress_1stream(dtable, out, &in2); in HUF_decompress_4stream()
1885 total_output += HUF_decompress_1stream(dtable, out, &in3); in HUF_decompress_4stream()
1886 total_output += HUF_decompress_1stream(dtable, out, &in4); in HUF_decompress_4stream()
1888 return total_output; in HUF_decompress_4stream()