Home
last modified time | relevance | path

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

/systemd-251/src/basic/
Dcompress.c165 size_t dst_max) { in decompress_blob_xz() argument
181 space = MIN(src_size * 2, dst_max ?: SIZE_MAX); in decompress_blob_xz()
201 if (dst_max > 0 && (space - s.avail_out) >= dst_max) in decompress_blob_xz()
203 else if (dst_max > 0 && space == dst_max) in decompress_blob_xz()
207 space = MIN(2 * space, dst_max ?: SIZE_MAX); in decompress_blob_xz()
227 size_t dst_max) { in decompress_blob_lz4() argument
264 size_t dst_max) { in decompress_blob_zstd() argument
278 if (dst_max > 0 && size > dst_max) in decompress_blob_zstd()
279 size = dst_max; in decompress_blob_zstd()
319 size_t dst_max) { in decompress_blob() argument
[all …]
Dcompress.h28 void **dst, size_t* dst_size, size_t dst_max);
30 void **dst, size_t* dst_size, size_t dst_max);
32 void **dst, size_t* dst_size, size_t dst_max);
35 void **dst, size_t* dst_size, size_t dst_max);
/systemd-251/src/test/
Dtest-compress-benchmark.c18 void **dst, size_t* dst_size, size_t dst_max);
Dtest-compress.c38 size_t* dst_size, size_t dst_max);