Searched defs:total_out (Results 1 - 1 of 1) sorted by relevance

/systemd/src/journal/
H A Dcompress.c431 s.total_in, s.total_out,
432 (double) s.total_out / s.total_in * 100);
452 size_t size, n, total_in = 0, total_out, offset = 0, frame_size; local
475 n = offset = total_out = LZ4F_compressBegin(ctx, buf, size, &preferences);
498 total_out += n;
500 if (max_bytes != (uint64_t) -1 && total_out > (size_t) max_bytes) {
522 total_out += n;
528 total_in, total_out,
529 (double) total_out / total_in * 100);
600 s.total_in, s.total_out,
621 size_t total_in = 0, total_out = 0; local
[all...]

Completed in 9 milliseconds