Searched refs:LZ4_compress_HC (Results 1 – 10 of 10) sorted by relevance
/third_party/lz4/ossfuzz/ |
D | round_trip_hc_fuzzer.c | 31 int const dstSize = LZ4_compress_HC((const char*)data, dst, size, in LLVMFuzzerTestOneInput()
|
D | compress_hc_fuzzer.c | 35 int const dstSize = LZ4_compress_HC((const char*)data, dst, size, in LLVMFuzzerTestOneInput()
|
/third_party/lz4/tests/ |
D | freestanding.c | 93 const int compressedSize = LZ4_compress_HC( in test_lz4hc()
|
D | roundTripTest.c | 108 compressFn compress = selected_clevel >= LZ4HC_CLEVEL_MIN ? LZ4_compress_HC : LZ4_compress_fast; in roundTripTest()
|
D | fuzzer.c | 462 …HCcompressedSize = LZ4_compress_HC(block, compressedBuffer, blockSize, (int)compressedBufferSize, … in FUZ_test() 695 … ret = LZ4_compress_HC(block, compressedBuffer, blockSize, HCcompressedSize, compressionLevel); in FUZ_test() 721 …{ int const hcSize = LZ4_compress_HC(block, compressedBuffer, blockSize, HCcompressedSize-missin… in FUZ_test()
|
D | fullbench.c | 267 return LZ4_compress_HC(in, out, inSize, LZ4_compressBound(inSize), 9); in local_LZ4_compress_HC()
|
/third_party/lz4/lib/ |
D | lz4hc.h | 66 LZ4LIB_API int LZ4_compress_HC (const char* src, char* dst, int srcSize, int dstCapacity, int compr…
|
D | lz4hc.c | 958 int LZ4_compress_HC(const char* src, char* dst, int srcSize, int dstCapacity, int compressionLevel) in LZ4_compress_HC() function 1203 int LZ4_compressHC(const char* src, char* dst, int srcSize) { return LZ4_compress_HC (src, dst, src… in LZ4_compressHC() 1204 …ut(const char* src, char* dst, int srcSize, int maxDstSize) { return LZ4_compress_HC(src, dst, src… in LZ4_compressHC_limitedOutput() 1205 int LZ4_compressHC2(const char* src, char* dst, int srcSize, int cLevel) { return LZ4_compress_HC (… in LZ4_compressHC2() 1206 …r* src, char* dst, int srcSize, int maxDstSize, int cLevel) { return LZ4_compress_HC(src, dst, src… in LZ4_compressHC2_limitedOutput()
|
/third_party/lz4/programs/ |
D | bench.c | 236 return LZ4_compress_HC(src, dst, srcSize, dstSize, pThis->cLevel); in LZ4_compressBlockNoStreamHC()
|
D | lz4io.c | 416 …mpress_f const compressionFunction = (compressionlevel < 3) ? LZ4IO_LZ4_compress : LZ4_compress_HC; in LZ4IO_compressFilename_Legacy()
|