D | lz4hc.c | 523 …_extStateHC (void* state, const char* src, char* dst, int srcSize, int maxDstSize, int compression… in LZ4_compress_HC_extStateHC() argument 528 if (maxDstSize < LZ4_compressBound(srcSize)) in LZ4_compress_HC_extStateHC() 529 …return LZ4HC_compress_generic (ctx, src, dst, srcSize, maxDstSize, compressionLevel, limitedOutput… in LZ4_compress_HC_extStateHC() 531 … return LZ4HC_compress_generic (ctx, src, dst, srcSize, maxDstSize, compressionLevel, noLimit); in LZ4_compress_HC_extStateHC() 534 int LZ4_compress_HC(const char* src, char* dst, int srcSize, int maxDstSize, int compressionLevel) in LZ4_compress_HC() argument 542 …int const cSize = LZ4_compress_HC_extStateHC(statePtr, src, dst, srcSize, maxDstSize, compressionL… in LZ4_compress_HC() 671 …nst char* src, char* dst, int srcSize, int maxDstSize) { return LZ4_compress_HC(src, dst, srcSize,… in LZ4_compressHC_limitedOutput() argument 673 …ar* src, char* dst, int srcSize, int maxDstSize, int cLevel) { return LZ4_compress_HC(src, dst, sr… in LZ4_compressHC2_limitedOutput() argument 675 … src, char* dst, int srcSize, int maxDstSize) { return LZ4_compress_HC_extStateHC (state, src, dst… in LZ4_compressHC_limitedOutput_withStateHC() argument 677 …char* dst, int srcSize, int maxDstSize, int cLevel) { return LZ4_compress_HC_extStateHC(state, src… in LZ4_compressHC2_limitedOutput_withStateHC() argument [all …]
|