Lines Matching refs:DISPLAYOUT
103 #define DISPLAYOUT(...) DISPLAY_F(stdout, __VA_ARGS__) macro
160 DISPLAYOUT(WELCOME_MESSAGE); in usage_advanced()
162 DISPLAYOUT( "\n"); in usage_advanced()
163 DISPLAYOUT( "Advanced arguments : \n"); in usage_advanced()
164 DISPLAYOUT( " -V : display Version number and exit \n"); in usage_advanced()
166 DISPLAYOUT( " -c : write to standard output (even if it is the console) \n"); in usage_advanced()
168 DISPLAYOUT( " -v : verbose mode; specify multiple times to increase verbosity \n"); in usage_advanced()
169 DISPLAYOUT( " -q : suppress warnings; specify twice to suppress errors too \n"); in usage_advanced()
170 DISPLAYOUT( "--[no-]progress : forcibly display, or never display the progress counter.\n"); in usage_advanced()
171 …DISPLAYOUT( " note: any (de)compressed output to terminal will mix with progress … in usage_advanced()
174 DISPLAYOUT( " -r : operate recursively on directories \n"); in usage_advanced()
175 DISPLAYOUT( "--filelist FILE : read list of files to operate upon from FILE \n"); in usage_advanced()
176 DISPLAYOUT( "--output-dir-flat DIR : processed files are stored into DIR \n"); in usage_advanced()
180 …DISPLAYOUT( "--output-dir-mirror DIR : processed files are stored into DIR respecting original dir… in usage_advanced()
185 …DISPLAYOUT( "--[no-]check : during compression, add XXH64 integrity checksum to frame (default: en… in usage_advanced()
187 …DISPLAYOUT( ". If specified with -d, decompressor will ignore/validate checksums in compressed fra… in usage_advanced()
191 …DISPLAYOUT( "--[no-]check : during decompression, ignore/validate checksums in compressed frame (d… in usage_advanced()
196 DISPLAYOUT( "\n"); in usage_advanced()
197 DISPLAYOUT( "--trace FILE : log tracing information to FILE."); in usage_advanced()
199 DISPLAYOUT( "\n"); in usage_advanced()
201 DISPLAYOUT( "-- : All arguments after \"--\" are treated as files \n"); in usage_advanced()
204 DISPLAYOUT( "\n"); in usage_advanced()
205 DISPLAYOUT( "Advanced compression arguments : \n"); in usage_advanced()
206 …DISPLAYOUT( "--ultra : enable levels beyond %i, up to %i (requires more memory) \n", ZSTDCLI_CLEVE… in usage_advanced()
207 …DISPLAYOUT( "--long[=#]: enable long distance matching with given window log (default: %u) \n", g_… in usage_advanced()
208 DISPLAYOUT( "--fast[=#]: switch to very fast compression levels (default: %u) \n", 1); in usage_advanced()
209 DISPLAYOUT( "--adapt : dynamically adapt compression level to I/O conditions \n"); in usage_advanced()
210 …DISPLAYOUT( "--[no-]row-match-finder : force enable/disable usage of fast row-based matchfinder fo… in usage_advanced()
211 …DISPLAYOUT( "--patch-from=FILE : specify the file to be used as a reference point for zstd's diff … in usage_advanced()
213 DISPLAYOUT( " -T# : spawns # compression threads (default: 1, 0==# cores) \n"); in usage_advanced()
214 DISPLAYOUT( " -B# : select size of each job (default: 0==automatic) \n"); in usage_advanced()
215 …DISPLAYOUT( "--single-thread : use a single thread for both I/O and compression (result slightly d… in usage_advanced()
216 …DISPLAYOUT( "--auto-threads={physical,logical} (default: physical} : use either physical cores or … in usage_advanced()
217 DISPLAYOUT( "--rsyncable : compress using a rsync-friendly method (-B sets block size) \n"); in usage_advanced()
219 DISPLAYOUT( "--exclude-compressed: only compress files that are not already compressed \n"); in usage_advanced()
220 DISPLAYOUT( "--stream-size=# : specify size of streaming input from `stdin` \n"); in usage_advanced()
221 …DISPLAYOUT( "--size-hint=# optimize compression parameters for streaming input of approximately th… in usage_advanced()
222 …DISPLAYOUT( "--target-compressed-block-size=# : generate compressed block of approximately targete… in usage_advanced()
223 DISPLAYOUT( "--no-dictID : don't write dictID into header (dictionary compression only) \n"); in usage_advanced()
224 DISPLAYOUT( "--[no-]compress-literals : force (un)compressed literals \n"); in usage_advanced()
226 DISPLAYOUT( "--format=zstd : compress files to the .zst format (default) \n"); in usage_advanced()
228 DISPLAYOUT( "--format=gzip : compress files to the .gz format \n"); in usage_advanced()
231 DISPLAYOUT( "--format=xz : compress files to the .xz format \n"); in usage_advanced()
232 DISPLAYOUT( "--format=lzma : compress files to the .lzma format \n"); in usage_advanced()
235 DISPLAYOUT( "--format=lz4 : compress files to the .lz4 format \n"); in usage_advanced()
240 DISPLAYOUT( "\n"); in usage_advanced()
241 DISPLAYOUT( "Advanced decompression arguments : \n"); in usage_advanced()
242 DISPLAYOUT( " -l : print information about zstd compressed files \n"); in usage_advanced()
243 DISPLAYOUT( "--test : test compressed file integrity \n"); in usage_advanced()
244 DISPLAYOUT( " -M# : Set a memory usage limit for decompression \n"); in usage_advanced()
246 DISPLAYOUT( "--[no-]sparse : sparse mode (default: enabled on file, disabled on stdout) \n"); in usage_advanced()
248 DISPLAYOUT( "--[no-]sparse : sparse mode (default: disabled) \n"); in usage_advanced()
253 DISPLAYOUT( "\n"); in usage_advanced()
254 DISPLAYOUT( "Dictionary builder : \n"); in usage_advanced()
255 DISPLAYOUT( "--train ## : create a dictionary from a training set of files \n"); in usage_advanced()
256 …DISPLAYOUT( "--train-cover[=k=#,d=#,steps=#,split=#,shrink[=#]] : use the cover algorithm with opt… in usage_advanced()
257 …DISPLAYOUT( "--train-fastcover[=k=#,d=#,f=#,steps=#,split=#,accel=#,shrink[=#]] : use the fast cov… in usage_advanced()
258 …DISPLAYOUT( "--train-legacy[=s=#] : use the legacy algorithm with selectivity (default: %u) \n", g… in usage_advanced()
259 DISPLAYOUT( " -o DICT : DICT is dictionary name (default: %s) \n", g_defaultDictName); in usage_advanced()
260 …DISPLAYOUT( "--maxdict=# : limit dictionary to specified size (default: %u) \n", g_defaultMaxDictS… in usage_advanced()
261 DISPLAYOUT( "--dictID=# : force dictionary ID to specified value (default: random) \n"); in usage_advanced()
265 DISPLAYOUT( "\n"); in usage_advanced()
266 DISPLAYOUT( "Benchmark arguments : \n"); in usage_advanced()
267 …DISPLAYOUT( " -b# : benchmark file(s), using # compression level (default: %d) \n", ZSTDCLI_CLE… in usage_advanced()
268 … DISPLAYOUT( " -e# : test all compression levels successively from -b# to -e# (default: 1) \n"); in usage_advanced()
269 DISPLAYOUT( " -i# : minimum evaluation time in seconds (default: 3s) \n"); in usage_advanced()
270 DISPLAYOUT( " -B# : cut file into independent blocks of size # (default: no block) \n"); in usage_advanced()
271 …DISPLAYOUT( " -S : output one benchmark result per input file (default: consolidated result) \… in usage_advanced()
272 DISPLAYOUT( "--priority=rt : set process priority to real-time \n"); in usage_advanced()
615 DISPLAYOUT("%s\n", ZSTD_VERSION_STRING); in printVersion()
619 DISPLAYOUT(WELCOME_MESSAGE); in printVersion()
622 DISPLAYOUT("*** supports: zstd"); in printVersion()
624 DISPLAYOUT(", zstd legacy v0.%d+", ZSTD_LEGACY_SUPPORT); in printVersion()
627 DISPLAYOUT(", gzip"); in printVersion()
630 DISPLAYOUT(", lz4"); in printVersion()
633 DISPLAYOUT(", lzma, xz "); in printVersion()
635 DISPLAYOUT("\n"); in printVersion()
639 DISPLAYOUT("_POSIX_C_SOURCE defined: %ldL\n", (long) _POSIX_C_SOURCE); in printVersion()
642 DISPLAYOUT("_POSIX_VERSION defined: %ldL \n", (long) _POSIX_VERSION); in printVersion()
645 DISPLAYOUT("PLATFORM_POSIX_VERSION defined: %ldL\n", (long) PLATFORM_POSIX_VERSION); in printVersion()