Searched refs:srcSize (Results 1 – 2 of 2) sorted by relevance
/DragonOS-0.1.2/kernel/src/common/ |
D | lz4.h | 146 LZ4LIB_API int LZ4_compress_default(const char *src, char *dst, int srcSize, int dstCapacity); 189 …LZ4LIB_API int LZ4_compress_fast(const char *src, char *dst, int srcSize, int dstCapacity, int acc… 198 …LZ4LIB_API int LZ4_compress_fast_extState(void *state, const char *src, char *dst, int srcSize, in… 259 …LZ4LIB_API int LZ4_decompress_safe_partial(const char *src, char *dst, int srcSize, int targetOutp… 329 …s_fast_continue(LZ4_stream_t *streamPtr, const char *src, char *dst, int srcSize, int dstCapacity,… 401 …ue(LZ4_streamDecode_t *LZ4_streamDecode, const char *src, char *dst, int srcSize, int dstCapacity); 411 …LZ4LIB_API int LZ4_decompress_safe_usingDict(const char *src, char *dst, int srcSize, int dstCapci… 460 …ess_fast_extState_fastReset(void *state, const char *src, char *dst, int srcSize, int dstCapacity,… 683 LZ4LIB_API int LZ4_compress(const char *src, char *dest, int srcSize); 685 …LZ4LIB_API int LZ4_compress_limitedOutput(const char *src, char *dest, int srcSize, int maxOutputS…
|
/DragonOS-0.1.2/kernel/src/libs/ |
D | lz4.c | 904 …int LZ4_compress_forceExtDict(LZ4_stream_t *LZ4_dict, const char *source, char *dest, int srcSize); 1630 const int srcSize, in LZ4_compress_generic() argument 1640 srcSize, dstCapacity); in LZ4_compress_generic() 1642 if ((U32)srcSize > (U32)LZ4_MAX_INPUT_SIZE) in LZ4_compress_generic() 1646 if (srcSize == 0) in LZ4_compress_generic() 1663 return LZ4_compress_generic_validated(cctx, src, dst, srcSize, in LZ4_compress_generic() 1712 int LZ4_compress_fast_extState_fastReset(void *state, const char *src, char *dst, int srcSize, int … in LZ4_compress_fast_extState_fastReset() argument 1720 if (dstCapacity >= LZ4_compressBound(srcSize)) in LZ4_compress_fast_extState_fastReset() 1722 if (srcSize < LZ4_64Klimit) in LZ4_compress_fast_extState_fastReset() 1725 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset() [all …]
|