Searched refs:DISPLAYLEVEL (Results 1 – 5 of 5) sorted by relevance
/external/lz4/programs/ |
D | frametest.c | 93 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro 219 DISPLAYLEVEL(3, "Using NULL preferences : \n"); in basicTests() 222 DISPLAYLEVEL(3, "Compressed %i bytes into a %i bytes frame \n", (int)testSize, (int)cSize); in basicTests() 224 DISPLAYLEVEL(3, "Decompression test : \n"); in basicTests() 237 DISPLAYLEVEL(3, "Single Block : \n"); in basicTests() 241 DISPLAYLEVEL(3, "Regenerated %i bytes \n", (int)decodedBufferSize); in basicTests() 243 DISPLAYLEVEL(3, "Byte after byte : \n"); in basicTests() 256 DISPLAYLEVEL(3, "Regenerated %i bytes \n", (int)decodedBufferSize); in basicTests() 262 DISPLAYLEVEL(3, "Using 64 KB block : \n"); in basicTests() 267 DISPLAYLEVEL(3, "Compressed %i bytes into a %i bytes frame \n", (int)testSize, (int)cSize); in basicTests() [all …]
|
D | lz4io.c | 115 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro 146 DISPLAYLEVEL(1, "Error %i : ", error); \ 147 DISPLAYLEVEL(1, __VA_ARGS__); \ 148 DISPLAYLEVEL(1, "\n"); \ 231 DISPLAYLEVEL(4,"Using stdin for input\n"); in get_fileHandle() 242 DISPLAYLEVEL(4,"Using stdout for output\n"); in get_fileHandle() 257 DISPLAYLEVEL(2, "Warning : %s already exists\n", output_filename); in get_fileHandle() 258 DISPLAYLEVEL(2, "Overwrite ? (Y/N) : "); in get_fileHandle() 345 DISPLAYLEVEL(2, "\r%79s\r", ""); in LZ4IO_compressFilename_Legacy() 346 DISPLAYLEVEL(2,"Compressed %llu bytes into %llu bytes ==> %.2f%%\n", in LZ4IO_compressFilename_Legacy() [all …]
|
D | lz4cli.c | 106 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro 124 DISPLAYLEVEL(1, "Error %i : ", error); \ 125 DISPLAYLEVEL(1, __VA_ARGS__); \ 126 DISPLAYLEVEL(1, "\n"); \ 245 DISPLAYLEVEL(1, "Incorrect parameters\n"); in badusage() 428 DISPLAYLEVEL(3, WELCOME_MESSAGE); in main() 429 if (!decode) DISPLAYLEVEL(4, "Blocks size : %i KB\n", blockSize>>10); in main() 456 DISPLAYLEVEL(2, "Compressed filename will be : %s \n", output_filename); in main() 469 … if (outl != inl-5) { DISPLAYLEVEL(1, "Cannot determine an output filename\n"); badusage(); } in main() 470 DISPLAYLEVEL(2, "Decoding file %s \n", output_filename); in main() [all …]
|
D | datagen.c | 81 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro 279 DISPLAYLEVEL(4, "Data Generator %s \n", LZ4_VERSION); in main() 280 DISPLAYLEVEL(3, "Seed = %u \n", seed); in main() 281 if (proba!=CDG_COMPRESSIBILITY_DEFAULT) DISPLAYLEVEL(3, "Compressibility : %i%%\n", proba); in main()
|
D | fuzzer.c | 94 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro
|