Searched refs:compressed (Results 1 – 6 of 6) sorted by relevance
/systemd-251/src/test/ |
D | test-compress.c | 57 char compressed[512]; in test_compress_decompress() local 65 r = compress(data, data_len, compressed, sizeof(compressed), &csize); in test_compress_decompress() 71 r = decompress(compressed, csize, in test_compress_decompress() 101 char *compressed; in test_decompress_startswith() local 112 compressed = compressed1 = malloc(BUFSIZE_1); in test_decompress_startswith() 114 r = compress(data, data_len, compressed, BUFSIZE_1, &csize); in test_decompress_startswith() 119 compressed = compressed2 = malloc(BUFSIZE_2); in test_decompress_startswith() 121 r = compress(data, data_len, compressed, BUFSIZE_2, &csize); in test_decompress_startswith() 127 r = decompress_sw(compressed, csize, (void **) &decompressed, data, len, '\0'); in test_decompress_startswith() 129 r = decompress_sw(compressed, csize, (void **) &decompressed, data, len, 'w'); in test_decompress_startswith() [all …]
|
D | test-compress-benchmark.c | 83 size_t skipped = 0, compressed = 0, total = 0; in test_compress_decompress() local 125 compressed += j; in test_compress_decompress() 138 100 - compressed * 100. / total, in test_compress_decompress()
|
/systemd-251/src/import/ |
D | qcow2-util.c | 151 bool *compressed, in normalize_offset() argument 161 if (!compressed) in normalize_offset() 172 *compressed = true; in normalize_offset() 175 if (compressed) { in normalize_offset() 176 *compressed = false; in normalize_offset() 294 bool compressed; in qcow2_convert() local 298 … r = normalize_offset(&header, l2_table[j], &data_begin, &compressed, &compressed_size); in qcow2_convert() 304 if (compressed) in qcow2_convert()
|
/systemd-251/src/boot/efi/ |
D | test-bcd.c | 14 _cleanup_free_ char *fn = NULL, *compressed = NULL; in load_bcd() local 17 …assert_se(read_full_file_full(AT_FDCWD, fn, UINT64_MAX, SIZE_MAX, 0, NULL, &compressed, &len) >= 0… in load_bcd() 18 assert_se(decompress_blob_zstd(compressed, len, ret_bcd, ret_bcd_len, SIZE_MAX) >= 0); in load_bcd()
|
/systemd-251/docs/ |
D | JOURNAL_FILE_FORMAT.md | 270 that are compressed using XZ. Similarly, HEADER_INCOMPATIBLE_COMPRESSED_LZ4 271 indicates that the file includes DATA objects that are compressed with the LZ4 273 objects compressed with ZSTD. 377 the data payload is compressed with XZ/LZ4/ZSTD. If one of the 426 `ObjectHeader`, in which case the payload is compressed with the indicated
|
/systemd-251/ |
D | NEWS | 1394 archived journal files will now get compressed on btrfs filesystems 1941 the core file uncompressed, systemd-coredump will skip to compressed 3554 (i.e. are compressed in an unsupported format or such), 3560 * coredumps collected by systemd-coredump may now be compressed using 5866 will be compressed, smaller ones will not. Previously this threshold 8397 collected it is now written to disk, compressed and processed 9678 decompress bz2, xz, gzip compressed downloads if necessary, 10694 on disk (in /var/lib/systemd/coredump, possibly compressed),
|