Home
last modified time | relevance | path

Searched refs:targetDstSize (Results 1 – 2 of 2) sorted by relevance

/DragonOS-0.1.8/kernel/src/common/
Dlz4.h223 …4LIB_API int LZ4_compress_destSize(const char *src, char *dst, int *srcSizePtr, int targetDstSize);
/DragonOS-0.1.8/kernel/src/libs/
Dlz4.c1793 …tSize_extState(LZ4_stream_t *state, const char *src, char *dst, int *srcSizePtr, int targetDstSize) in LZ4_compress_destSize_extState() argument
1799 if (targetDstSize >= LZ4_compressBound(*srcSizePtr)) in LZ4_compress_destSize_extState()
1801 return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, 1); in LZ4_compress_destSize_extState()
1807 …generic(&state->internal_donotuse, src, dst, *srcSizePtr, srcSizePtr, targetDstSize, fillOutput, b… in LZ4_compress_destSize_extState()
1812 …generic(&state->internal_donotuse, src, dst, *srcSizePtr, srcSizePtr, targetDstSize, fillOutput, a… in LZ4_compress_destSize_extState()
1817 int LZ4_compress_destSize(const char *src, char *dst, int *srcSizePtr, int targetDstSize) in LZ4_compress_destSize() argument
1828 int result = LZ4_compress_destSize_extState(ctx, src, dst, srcSizePtr, targetDstSize); in LZ4_compress_destSize()