Home
last modified time | relevance | path

Searched refs:DISPLAYLEVEL (Results 1 – 7 of 7) sorted by relevance

/third_party/lz4/tests/
Dframetest.c84 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro
196 DISPLAYLEVEL(3, "LZ4F_compressBound(0) = "); in basicTests()
199 DISPLAYLEVEL(3, " %u \n", (U32)cBound); in basicTests()
203 DISPLAYLEVEL(3, "LZ4F_compressBound(1 KB, autoFlush=1) = "); in basicTests()
210 DISPLAYLEVEL(3, " %u \n", (U32)cBound); in basicTests()
214 DISPLAYLEVEL(3, "LZ4F_compressBound(1 KB, autoFlush=0) = "); in basicTests()
217 DISPLAYLEVEL(3, " %u \n", (U32)cBound); in basicTests()
222 DISPLAYLEVEL(3, "LZ4F_compressFrame, compress null content : "); in basicTests()
224 DISPLAYLEVEL(3, "null content encoded into a %u bytes frame \n", (unsigned)cSize); in basicTests()
226 DISPLAYLEVEL(3, "LZ4F_createDecompressionContext \n"); in basicTests()
[all …]
Ddatagencli.c52 #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()
Dfuzzer.c95 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro
272 DISPLAYLEVEL(2, "generating low buffer at address %p \n", lowBuff); in FUZ_createLowAddr()
407DISPLAYLEVEL(5, "destSize : %7i/%7i; content%7i/%7i ", cSize, targetSize, srcSize, blockSize); in FUZ_test()
423 DISPLAYLEVEL(5, " OK \n"); in FUZ_test()
435 DISPLAYLEVEL(5, "LZ4_compress_HC_destSize(%i): destSize : %7i/%7i; content%7i/%7i ", in FUZ_test()
456 DISPLAYLEVEL(5, " OK \n"); in FUZ_test()
725DISPLAYLEVEL(5, " compress %i bytes from buffer(%p) into dst(%p) using dict(%p) of size %i \n", in FUZ_test()
734 DISPLAYLEVEL(5, " decoding %i bytes from buffer(%p) using dict(%p) of size %i \n", in FUZ_test()
961DISPLAYLEVEL(5, " LZ4_compress_HC_continue_destSize : compressed %6i/%6i into %6i/%6i at cLevel=%i… in FUZ_test()
1037 DISPLAYLEVEL(3, "LZ4_decompress_safe() with empty input \n"); in FUZ_unitTests()
[all …]
DcheckFrame.c57 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro
69 DISPLAYLEVEL(1, "Error %i : ", error); \
70 DISPLAYLEVEL(1, __VA_ARGS__); \
71 DISPLAYLEVEL(1, " \n"); \
/third_party/lz4/programs/
Dlz4cli.c72 #define DISPLAYLEVEL(l, ...) if (displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro
84 DISPLAYLEVEL(1, "Error %i : ", error); \
85 DISPLAYLEVEL(1, __VA_ARGS__); \
86 DISPLAYLEVEL(1, "\n"); \
230 DISPLAYLEVEL(1, "Incorrect parameters\n"); in badusage()
527DISPLAYLEVEL(2, "using blocks of size %u KB \n", (U32)(blockSize>>10));
533DISPLAYLEVEL(2, "using blocks of size %u KB \n", (U32)(blockSize>>10));
535DISPLAYLEVEL(2, "using blocks of size %u bytes \n", (U32)(blockSize));
597DISPLAYLEVEL(1, "Warning : %s won't be used ! Do you want multiple input files (-m) ? \n", argumen…
600 DISPLAYLEVEL(3, WELCOME_MESSAGE);
[all …]
Dlz4io.c94 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro
140 DISPLAYLEVEL(1, "Error %i : ", error); \
141 DISPLAYLEVEL(1, __VA_ARGS__); \
142 DISPLAYLEVEL(1, " \n"); \
317 DISPLAYLEVEL(4,"Using stdin for input\n"); in LZ4IO_openSrcFile()
322 if ( f==NULL ) DISPLAYLEVEL(1, "%s: %s \n", srcFileName, strerror(errno)); in LZ4IO_openSrcFile()
338 DISPLAYLEVEL(4, "Using stdout for output \n"); in LZ4IO_openDstFile()
342 DISPLAYLEVEL(4, "Sparse File Support automatically disabled on stdout ;" in LZ4IO_openDstFile()
363 if (f==NULL) DISPLAYLEVEL(1, "%s: %s\n", dstFileName, strerror(errno)); in LZ4IO_openDstFile()
464 DISPLAYLEVEL(2, "\r%79s\r", ""); /* blank line */ in LZ4IO_compressFilename_Legacy()
[all …]
Dbench.c252 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); } macro
273 DISPLAYLEVEL(1, "Error %i : ", error); \
274 DISPLAYLEVEL(1, __VA_ARGS__); \
275 DISPLAYLEVEL(1, "\n"); \
295 DISPLAYLEVEL(3, "- test >= %u seconds per compression / decompression -\n", g_nbSeconds); in BMK_setNbSeconds()
384 DISPLAYLEVEL(2, "\r%79s\r", ""); in BMK_benchMem()
388 DISPLAYLEVEL(2, "\rcooling down ... \r"); in BMK_benchMem()
394 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->\r", marks[markNb], displayName, (U32)srcSize); in BMK_benchMem()
433 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s\r", in BMK_benchMem()
476 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s ,%6.1f MB/s\r", in BMK_benchMem()
[all …]