Home
last modified time | relevance | path

Searched refs:DISPLAYOUT (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/contrib/zstd/programs/
H A Dzstdcli.c178 DISPLAYOUT(WELCOME_MESSAGE); in usageAdvanced()
179 DISPLAYOUT("\n"); in usageAdvanced()
181 DISPLAYOUT("Advanced options:\n"); in usageAdvanced()
182 …DISPLAYOUT(" -c, --stdout Write to STDOUT (even if it is a console) and keep the… in usageAdvanced()
184 …DISPLAYOUT(" -v, --verbose Enable verbose output; pass multiple times to increase… in usageAdvanced()
185 … DISPLAYOUT(" -q, --quiet Suppress warnings; pass twice to suppress errors.\n"); in usageAdvanced()
187 DISPLAYOUT(" --trace LOG Log tracing information to LOG.\n"); in usageAdvanced()
189 DISPLAYOUT("\n"); in usageAdvanced()
190 …DISPLAYOUT(" --[no-]progress Forcibly show/hide the progress counter. NOTE: Any (de… in usageAdvanced()
191 …DISPLAYOUT(" output to terminal will mix with progress counter text… in usageAdvanced()
[all …]
H A Dfileio.c3316 DISPLAYOUT("%6d %5d %6.*f%4s %8.*f%4s %5.3f %5s %s\n", in displayInfo()
3323 DISPLAYOUT("%6d %5d %6.*f%4s %5s %s\n", in displayInfo()
3330 DISPLAYOUT("%s \n", inFileName); in displayInfo()
3331 DISPLAYOUT("# Zstandard Frames: %d\n", info->numActualFrames); in displayInfo()
3333 DISPLAYOUT("# Skippable Frames: %d\n", info->numSkippableFrames); in displayInfo()
3334 DISPLAYOUT("DictID: %u\n", info->dictID); in displayInfo()
3335 DISPLAYOUT("Window Size: %.*f%s (%llu B)\n", in displayInfo()
3338 DISPLAYOUT("Compressed Size: %.*f%s (%llu B)\n", in displayInfo()
3342 DISPLAYOUT("Decompressed Size: %.*f%s (%llu B)\n", in displayInfo()
3345 DISPLAYOUT("Ratio: %.4f\n", ratio); in displayInfo()
[all …]
H A Dfileio_common.h33 #define DISPLAYOUT(...) DISPLAY_F(stdout, __VA_ARGS__) macro