Lines Matching refs:DISPLAY
30 #define DISPLAY(...) fprintf(stderr, __VA_ARGS__) macro
46 DISPLAY("ERROR: Not enough memory!\n"); in testSimpleAPI()
54 DISPLAY("ERROR: Invalid frame magic number, was this compiled " in testSimpleAPI()
57 DISPLAY("ERROR: %s\n", ZSTD_getErrorName(ret)); in testSimpleAPI()
62 DISPLAY("ERROR: Wrong decoded size\n"); in testSimpleAPI()
66 DISPLAY("ERROR: Wrong decoded output produced\n"); in testSimpleAPI()
71 DISPLAY("Simple API OK\n"); in testSimpleAPI()
87 DISPLAY("ERROR: Could not allocate memory\n"); in testStreamingAPI()
91 DISPLAY("ERROR: Could not create dstream\n"); in testStreamingAPI()
101 DISPLAY("ERROR: ZSTD_initDStream: %s\n", ZSTD_getErrorName(ret)); in testStreamingAPI()
108 DISPLAY("ERROR: ZSTD_decompressStream: %s\n", ZSTD_getErrorName(ret)); in testStreamingAPI()
118 DISPLAY("ERROR: Wrong decoded output produced\n"); in testStreamingAPI()
130 if (error_code == 0) DISPLAY("Streaming API OK\n"); in testStreamingAPI()
137 DISPLAY("ERROR: ZSTD_decompressBound: decompressed bound too small\n"); in testFrameDecoding()
145 DISPLAY("ERROR: ZSTD_findFrameCompressedSize: %s\n", ZSTD_getErrorName(frameSize)); in testFrameDecoding()
149 … DISPLAY("ERROR: ZSTD_findFrameCompressedSize: expected frameSize to align with src buffer"); in testFrameDecoding()
157 DISPLAY("Frame Decoding OK\n"); in testFrameDecoding()
170 DISPLAY("OK\n"); in main()