Home
last modified time | relevance | path

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

/DragonOS-0.1.3/kernel/src/common/
Dlz4.h179 LZ4LIB_API int LZ4_compressBound(int inputSize);
687 … LZ4LIB_API int LZ4_compress_withState(void *state, const char *source, char *dest, int inputSize);
689 …imitedOutput_withState(void *state, const char *source, char *dest, int inputSize, int maxOutputSi…
691 … LZ4_compress_continue(LZ4_stream_t *LZ4_streamPtr, const char *source, char *dest, int inputSize);
693 …ntinue(LZ4_stream_t *LZ4_streamPtr, const char *source, char *dest, int inputSize, int maxOutputSi…
/DragonOS-0.1.3/kernel/src/libs/
Dlz4.c1097 const int inputSize, in LZ4_prepareTable() argument
1106 assert(inputSize >= 0); in LZ4_prepareTable()
1107 …tOffset + (unsigned)inputSize >= 0xFFFFU) || ((tableType == byU32) && cctx->currentOffset > 1 GB) … in LZ4_prepareTable()
1146 const int inputSize, in LZ4_compress_generic_validated() argument
1173 const BYTE *const iend = ip + inputSize; in LZ4_compress_generic_validated()
1188 DEBUGLOG(5, "LZ4_compress_generic_validated: srcSize=%i, tableType=%u", inputSize, tableType); in LZ4_compress_generic_validated()
1196 if ((tableType == byU16) && (inputSize >= LZ4_64Klimit)) in LZ4_compress_generic_validated()
1212 cctx->dictSize = (U32)inputSize; in LZ4_compress_generic_validated()
1216 cctx->dictSize += (U32)inputSize; in LZ4_compress_generic_validated()
1218 cctx->currentOffset += (U32)inputSize; in LZ4_compress_generic_validated()
[all …]