Searched refs:HUGE_SIZE (Results 1 - 1 of 1) sorted by relevance

/systemd/src/journal/
H A Dtest-compress.c214 #define HUGE_SIZE (4096*1024) macro
215 huge = malloc(HUGE_SIZE);
216 memset(huge, 'x', HUGE_SIZE);
219 r = LZ4_compress_limitedOutput(huge, buf, HUGE_SIZE, buf_size);
222 log_info("Compressed %i → %zu", HUGE_SIZE, compressed);
224 r = LZ4_decompress_safe(buf, huge, r, HUGE_SIZE);
230 12, HUGE_SIZE);
232 log_info("Decompressed partial %i/%i → %i", 12, HUGE_SIZE, r);
239 12, HUGE_SIZE-1);
241 log_info("Decompressed partial %i/%i → %i", 12, HUGE_SIZE
[all...]

Completed in 10 milliseconds