Searched refs:DISPLAYLEVEL (Results 1 – 6 of 6) sorted by relevance
/external/lz4/tests/ |
D | frametest.c | 81 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro 190 DISPLAYLEVEL(3, "LZ4F_compressBound(0) = "); in basicTests() 193 DISPLAYLEVEL(3, " %u \n", (U32)cBound); in basicTests() 198 DISPLAYLEVEL(3, "LZ4F_compressFrame, compress null content : \n"); in basicTests() 201 DISPLAYLEVEL(3, "Compressed null content into a %i bytes frame \n", (int)cSize); in basicTests() 203 DISPLAYLEVEL(3, "LZ4F_createDecompressionContext \n"); in basicTests() 207 DISPLAYLEVEL(3, "LZ4F_getFrameInfo on null-content frame (#157) \n"); in basicTests() 214 DISPLAYLEVEL(3, "LZ4F_freeDecompressionContext \n"); in basicTests() 221 DISPLAYLEVEL(3, "LZ4F_compressFrame, using default preferences : \n"); in basicTests() 224 DISPLAYLEVEL(3, "Compressed %u bytes into a %u bytes frame \n", (U32)testSize, (U32)cSize); in basicTests() [all …]
|
D | datagencli.c | 52 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro 164 DISPLAYLEVEL(4, "Data Generator %s \n", LZ4_VERSION_STRING); in main() 165 DISPLAYLEVEL(3, "Seed = %u \n", seed); in main() 166 … if (proba!=COMPRESSIBILITY_DEFAULT) DISPLAYLEVEL(3, "Compressibility : %i%%\n", (U32)(proba*100)); in main() 169 DISPLAYLEVEL(1, "\n"); in main()
|
D | fuzzer.c | 79 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro 329 … DISPLAYLEVEL(5, "destSize : %7i/%7i; content%7i/%7i ", ret, targetSize, srcSize, blockSize); in FUZ_test() 345 DISPLAYLEVEL(5, " OK \n"); in FUZ_test() 348 DISPLAYLEVEL(5, " \n"); in FUZ_test()
|
/external/lz4/programs/ |
D | lz4cli.c | 77 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro 89 DISPLAYLEVEL(1, "Error %i : ", error); \ 90 DISPLAYLEVEL(1, __VA_ARGS__); \ 91 DISPLAYLEVEL(1, "\n"); \ 231 DISPLAYLEVEL(1, "Incorrect parameters\n"); in badusage() 430 … DISPLAYLEVEL(2, "using blocks of size %u KB \n", (U32)(blockSize>>10)); in main() 435 … DISPLAYLEVEL(2, "bench: using blocks of size %u KB \n", (U32)(B>>10)); in main() 437 … DISPLAYLEVEL(2, "bench: using blocks of size %u bytes \n", (U32)(B)); in main() 497 …DISPLAYLEVEL(1, "Warning : %s won't be used ! Do you want multiple input files (-m) ? \n", argumen… in main() 500 DISPLAYLEVEL(3, WELCOME_MESSAGE); in main() [all …]
|
D | lz4io.c | 102 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro 136 DISPLAYLEVEL(1, "Error %i : ", error); \ 137 DISPLAYLEVEL(1, __VA_ARGS__); \ 138 DISPLAYLEVEL(1, " \n"); \ 243 DISPLAYLEVEL(4,"Using stdin for input\n"); in LZ4IO_openSrcFile() 248 if ( f==NULL ) DISPLAYLEVEL(1, "%s: %s \n", srcFileName, strerror(errno)); in LZ4IO_openSrcFile() 262 DISPLAYLEVEL(4,"Using stdout for output\n"); in LZ4IO_openDstFile() 267 … DISPLAYLEVEL(4, "Sparse File Support is automatically disabled on stdout ; try --sparse \n"); in LZ4IO_openDstFile() 287 if (f==NULL) DISPLAYLEVEL(1, "%s: %s\n", dstFileName, strerror(errno)); in LZ4IO_openDstFile() 377 DISPLAYLEVEL(2, "\r%79s\r", ""); /* blank line */ in LZ4IO_compressFilename_Legacy() [all …]
|
D | bench.c | 86 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro 107 DISPLAYLEVEL(1, "Error %i : ", error); \ 108 DISPLAYLEVEL(1, __VA_ARGS__); \ 109 DISPLAYLEVEL(1, "\n"); \ 128 DISPLAYLEVEL(3, "- test >= %u seconds per compression / decompression -\n", g_nbSeconds); in BMK_SetNbSeconds() 233 DISPLAYLEVEL(2, "\r%79s\r", ""); in BMK_benchMem() 240 DISPLAYLEVEL(2, "\rcooling down ... \r"); in BMK_benchMem() 246 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->\r", marks[markNb], displayName, (U32)srcSize); in BMK_benchMem() 275 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s\r", in BMK_benchMem() 311 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s ,%6.1f MB/s\r", in BMK_benchMem() [all …]
|