Searched refs:LZ4_compress_HC (Results 1 – 10 of 10) sorted by relevance
/external/lz4/ossfuzz/ |
D | round_trip_hc_fuzzer.c | 27 int const dstSize = LZ4_compress_HC((const char*)data, dst, size, in LLVMFuzzerTestOneInput()
|
D | compress_hc_fuzzer.c | 29 int const dstSize = LZ4_compress_HC((const char*)data, dst, size, in LLVMFuzzerTestOneInput()
|
/external/squashfs-tools/squashfs-tools/ |
D | lz4_wrapper.c | 229 res = LZ4_compress_HC(src, dest, size, block_size, in lz4_compress()
|
/external/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 | 920 int LZ4_compress_HC(const char* src, char* dst, int srcSize, int dstCapacity, int compressionLevel) in LZ4_compress_HC() function 1153 int LZ4_compressHC(const char* src, char* dst, int srcSize) { return LZ4_compress_HC (src, dst, src… in LZ4_compressHC() 1154 …ut(const char* src, char* dst, int srcSize, int maxDstSize) { return LZ4_compress_HC(src, dst, src… in LZ4_compressHC_limitedOutput() 1155 int LZ4_compressHC2(const char* src, char* dst, int srcSize, int cLevel) { return LZ4_compress_HC (… in LZ4_compressHC2() 1156 …r* src, char* dst, int srcSize, int maxDstSize, int cLevel) { return LZ4_compress_HC(src, dst, src… in LZ4_compressHC2_limitedOutput()
|
/external/lz4/tests/ |
D | roundTripTest.c | 108 compressFn compress = selected_clevel >= LZ4HC_CLEVEL_MIN ? LZ4_compress_HC : LZ4_compress_fast; in roundTripTest()
|
D | fuzzer.c | 461 …HCcompressedSize = LZ4_compress_HC(block, compressedBuffer, blockSize, (int)compressedBufferSize, … in FUZ_test() 644 … ret = LZ4_compress_HC(block, compressedBuffer, blockSize, HCcompressedSize, compressionLevel); in FUZ_test() 670 …{ int const hcSize = LZ4_compress_HC(block, compressedBuffer, blockSize, HCcompressedSize-missin… in FUZ_test()
|
D | fullbench.c | 259 return LZ4_compress_HC(in, out, inSize, LZ4_compressBound(inSize), 9); in local_LZ4_compress_HC()
|
/external/lz4/programs/ |
D | bench.c | 57 #define COMPRESSOR1 LZ4_compress_HC
|
D | lz4io.c | 397 …mpress_f const compressionFunction = (compressionlevel < 3) ? LZ4IO_LZ4_compress : LZ4_compress_HC; in LZ4IO_compressFilename_Legacy()
|