Home
last modified time | relevance | path

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

/systemd-251/src/basic/
Dcompress.h55 int compress_stream_xz(int fdf, int fdt, uint64_t max_bytes, uint64_t *ret_uncompressed_size);
56 int compress_stream_lz4(int fdf, int fdt, uint64_t max_bytes, uint64_t *ret_uncompressed_size);
57 int compress_stream_zstd(int fdf, int fdt, uint64_t max_bytes, uint64_t *ret_uncompressed_size);
86 …inline int compress_stream(int fdf, int fdt, uint64_t max_bytes, uint64_t *ret_uncompressed_size) { in compress_stream() argument
89 return compress_stream_zstd(fdf, fdt, max_bytes, ret_uncompressed_size); in compress_stream()
91 return compress_stream_lz4(fdf, fdt, max_bytes, ret_uncompressed_size); in compress_stream()
93 return compress_stream_xz(fdf, fdt, max_bytes, ret_uncompressed_size); in compress_stream()
Dcompress.c552 int compress_stream_xz(int fdf, int fdt, uint64_t max_bytes, uint64_t *ret_uncompressed_size) { in compress_stream_xz() argument
613 if (ret_uncompressed_size) in compress_stream_xz()
614 *ret_uncompressed_size = s.total_in; in compress_stream_xz()
631 int compress_stream_lz4(int fdf, int fdt, uint64_t max_bytes, uint64_t *ret_uncompressed_size) { in compress_stream_lz4() argument
704 if (ret_uncompressed_size) in compress_stream_lz4()
705 *ret_uncompressed_size = total_in; in compress_stream_lz4()
856 int compress_stream_zstd(int fdf, int fdt, uint64_t max_bytes, uint64_t *ret_uncompressed_size) { in compress_stream_zstd() argument
945 if (ret_uncompressed_size) in compress_stream_zstd()
946 *ret_uncompressed_size = in_bytes; in compress_stream_zstd()