Searched refs:LZ4F_compressFrameBound (Results 1 – 7 of 7) sorted by relevance
/external/lz4/tests/ |
D | frametest.c | 177 size_t const cBuffSize = LZ4F_compressFrameBound(COMPRESSIBLE_NOISE_LENGTH, NULL); in basicTests() 206 …CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, NULL), CNBuf… in basicTests() 233 …CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, NULL), CNBuf… in basicTests() 238 …CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, NULL), CNBuf… in basicTests() 359 …CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNB… in basicTests() 364 …CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNB… in basicTests() 370 …CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNB… in basicTests() 404 …CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNB… in basicTests() 410 …CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNB… in basicTests() 415 …CHECK_V(cSize, LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNB… in basicTests() [all …]
|
D | fullbench.c | 333 …return (int)LZ4F_compressFrame(out, LZ4F_compressFrameBound((size_t)inSize, NULL), in, (size_t)inS… in local_LZ4F_compressFrame()
|
/external/lz4/ossfuzz/ |
D | round_trip_frame_fuzzer.c | 20 size_t const dstCapacity = LZ4F_compressFrameBound(size, &prefs); in LLVMFuzzerTestOneInput()
|
D | compress_frame_fuzzer.c | 21 size_t const compressBound = LZ4F_compressFrameBound(size, &prefs); in LLVMFuzzerTestOneInput()
|
/external/lz4/lib/ |
D | lz4frame.h | 209 LZ4FLIB_API size_t LZ4F_compressFrameBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr…
|
D | lz4frame.c | 351 size_t LZ4F_compressFrameBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr) in LZ4F_compressFrameBound() function 400 … if (dstCapacity < LZ4F_compressFrameBound(srcSize, &prefs)) /* condition to guarantee success */ in LZ4F_compressFrame_usingCDict()
|
/external/lz4/programs/ |
D | lz4io.c | 574 ress.dstBufferSize = LZ4F_compressFrameBound(blockSize, NULL); /* cover worst case */ in LZ4IO_createCResources()
|