Home
last modified time | relevance | path

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

/external/lz4/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()
1196 …result = LZ4_compress_HC_continue(&sHC, testInput, testCompressed, testCompressedSize, testCompres… in FUZ_unitTests()
1240 …{ int const cSize = LZ4_compress_HC_continue(&sHC, testInput + 64 KB, testCompressed, testCompre… in FUZ_unitTests()
1258 …result1 = LZ4_compress_HC_continue(&sHC, testInput + segSize, testCompressed, segSize, segSize -1); in FUZ_unitTests()
[all …]
Dfullbench.c269 return LZ4_compress_HC_continue(&LZ4_streamHC, in, out, inSize, LZ4_compressBound(inSize)); in local_LZ4_compress_HC_continue()
/external/lz4/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()
/external/lz4/lib/
Dlz4hc.h158 LZ4LIB_API int LZ4_compress_HC_continue (LZ4_streamHC_t* streamHCPtr,
Dlz4hc.c1109 int LZ4_compress_HC_continue (LZ4_streamHC_t* LZ4_streamHCPtr, const char* src, char* dst, int srcS… in LZ4_compress_HC_continue() function
1161 …eamHC_t* ctx, const char* src, char* dst, int srcSize) { return LZ4_compress_HC_continue (ctx, src… in LZ4_compressHC_continue()
1162 …nst char* src, char* dst, int srcSize, int maxDstSize) { return LZ4_compress_HC_continue (ctx, src… in LZ4_compressHC_limitedOutput_continue()
Dlz4frame.c786 return LZ4_compress_HC_continue((LZ4_streamHC_t*)ctx, src, dst, srcSize, dstCapacity); in LZ4F_compressBlockHC()
794 return LZ4_compress_HC_continue((LZ4_streamHC_t*)ctx, src, dst, srcSize, dstCapacity); in LZ4F_compressBlockHC_continue()
/external/lz4/examples/
DHCStreaming_ringBuffer.c74 … const int cmpBytes = LZ4_compress_HC_continue(lz4Stream, inpPtr, cmpBuf, inpBytes, CMPBUFSIZE); in test_compress()