Searched refs:LZ4F_compressFrame (Results 1 - 6 of 6) sorted by relevance
/third_party/lz4/tests/ |
H A D | frametest.c | 270 DISPLAYLEVEL(3, "LZ4F_compressFrame, compress null content : "); in basicTests() 271 CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, NULL), CNBuffer, testSize, NULL)); in basicTests() 294 DISPLAYLEVEL(3, "LZ4F_compressFrame, using fast level -3 : "); in basicTests() 298 CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, NULL), CNBuffer, testSize, &fastCompressPrefs)); in basicTests() 302 DISPLAYLEVEL(3, "LZ4F_compressFrame, using default preferences : "); in basicTests() 303 CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, NULL), CNBuffer, testSize, NULL)); in basicTests() 424 CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNBuffer, testSize, &prefs)); in basicTests() 429 CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNBuffer, testSize, &prefs)); in basicTests() 435 CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNBuffer, testSize, &prefs)); in basicTests() 469 CHECK_V(cSize, LZ4F_compressFrame(compressedBuffe in basicTests() [all...] |
H A D | fullbench.c | 371 return (int)LZ4F_compressFrame(out, LZ4F_compressFrameBound((size_t)inSize, NULL), in, (size_t)inSize, NULL); in local_LZ4F_compressFrame() 586 case 30: compressionFunction = local_LZ4F_compressFrame; compressorName = "LZ4F_compressFrame"; in fullSpeedBench() 698 { size_t const fcsize = LZ4F_compressFrame(compressed_buff, (size_t)compressedBuffSize, orig_buff, benchedSize, NULL); in fullSpeedBench()
|
/third_party/lz4/ossfuzz/ |
H A D | compress_frame_fuzzer.c | 36 LZ4F_compressFrame(dst, dstCapacity, data, size, &prefs); in LLVMFuzzerTestOneInput()
|
H A D | round_trip_frame_fuzzer.c | 32 LZ4F_compressFrame(dst, dstCapacity, data, size, &prefs); in LLVMFuzzerTestOneInput()
|
/third_party/lz4/lib/ |
H A D | lz4frame.h | 210 * Returns the maximum possible compressed size with LZ4F_compressFrame() given srcSize and preferences. 212 * Note : this result is only usable with LZ4F_compressFrame(). 217 /*! LZ4F_compressFrame() : 224 LZ4FLIB_API size_t LZ4F_compressFrame(void* dstBuffer, size_t dstCapacity,
|
H A D | lz4frame.c | 468 /*! LZ4F_compressFrame() : 475 size_t LZ4F_compressFrame(void* dstBuffer, size_t dstCapacity, in LZ4F_compressFrame() function 500 DEBUGLOG(4, "LZ4F_compressFrame"); in LZ4F_compressFrame()
|
Completed in 9 milliseconds