Home
last modified time | relevance | path

Searched refs:LZ4_compress_HC_continue (Results 1 – 8 of 8) sorted by relevance

/lz4-3.4.0-2.7.6/tests/
Dfuzzer.c876 …blockContinueCompressedSize = LZ4_compress_HC_continue(LZ4dictHC, block, compressedBuffer, blockSi… in FUZ_test()
882 …ret = LZ4_compress_HC_continue(LZ4dictHC, block, compressedBuffer, blockSize, blockContinueCompres… in FUZ_test()
888 …ret = LZ4_compress_HC_continue(LZ4dictHC, block, compressedBuffer, blockSize, blockContinueCompres… in FUZ_test()
911 …blockContinueCompressedSize = LZ4_compress_HC_continue(LZ4_streamHC, block, compressedBuffer, bloc… in FUZ_test()
918 …ret = LZ4_compress_HC_continue(LZ4_streamHC, block, compressedBuffer, blockSize, blockContinueComp… in FUZ_test()
925 …ret = LZ4_compress_HC_continue(LZ4_streamHC, block, compressedBuffer, blockSize, blockContinueComp… in FUZ_test()
933 …ret = LZ4_compress_HC_continue(LZ4_streamHC, block, compressedBuffer, blockSize, blockContinueComp… in FUZ_test()
1277 …result = LZ4_compress_HC_continue(&sHC, testInput, testCompressed, testCompressedSize, testCompres… in FUZ_unitTests()
1342 …{ int const cSize = LZ4_compress_HC_continue(&sHC, testInput + 64 KB, testCompressed, testCompre… in FUZ_unitTests()
1360 …result1 = LZ4_compress_HC_continue(&sHC, testInput + segSize, testCompressed, segSize, segSize -1); in FUZ_unitTests()
[all …]
Dfullbench.c277 return LZ4_compress_HC_continue(&LZ4_streamHC, in, out, inSize, LZ4_compressBound(inSize)); in local_LZ4_compress_HC_continue()
/lz4-3.4.0-2.7.6/lib/
Dlz4hc.h158 LZ4LIB_API int LZ4_compress_HC_continue (LZ4_streamHC_t* streamHCPtr,
Dlz4hc.c1142 int LZ4_compress_HC_continue (LZ4_streamHC_t* LZ4_streamHCPtr, const char* src, char* dst, int srcS… in LZ4_compress_HC_continue() function
1201 …eamHC_t* ctx, const char* src, char* dst, int srcSize) { return LZ4_compress_HC_continue (ctx, src… in LZ4_compressHC_continue()
1202 …nst char* src, char* dst, int srcSize, int maxDstSize) { return LZ4_compress_HC_continue (ctx, src… in LZ4_compressHC_limitedOutput_continue()
Dlz4frame.c788 return LZ4_compress_HC_continue((LZ4_streamHC_t*)ctx, src, dst, srcSize, dstCapacity); in LZ4F_compressBlockHC()
796 return LZ4_compress_HC_continue((LZ4_streamHC_t*)ctx, src, dst, srcSize, dstCapacity); in LZ4F_compressBlockHC_continue()
/lz4-3.4.0-2.7.6/ossfuzz/
Dround_trip_stream_fuzzer.c217 int const cSize = LZ4_compress_HC_continue(state->cstreamHC, src, dst, in state_prefixHCRoundTrip()
239 int const cSize = LZ4_compress_HC_continue(state->cstreamHC, src, dst, in state_extDictHCRoundTrip()
/lz4-3.4.0-2.7.6/examples/
DHCStreaming_ringBuffer.c74 … const int cmpBytes = LZ4_compress_HC_continue(lz4Stream, inpPtr, cmpBuf, inpBytes, CMPBUFSIZE); in test_compress()
/lz4-3.4.0-2.7.6/programs/
Dbench.c162 return LZ4_compress_HC_continue(pThis->LZ4_streamHC, src, dst, srcSize, dstSize); in LZ4_compressBlockStreamHC()