Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/lz4/
Dlz4.h236 LZ4LIB_API int LZ4_compressBound(int inputSize);
799 … LZ4_compress_withState (void* state, const char* source, char* dest, int inputSize);
800 …mitedOutput_withState (void* state, const char* source, char* dest, int inputSize, int maxOutputSi…
801 …ntinue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize);
802 …inue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int inputSize, int maxOutputSi…
Dlz4.c870 const int inputSize, in LZ4_prepareTable() argument
877 assert(inputSize >= 0); in LZ4_prepareTable()
879 || ((tableType == byU16) && cctx->currentOffset + (unsigned)inputSize >= 0xFFFFU) in LZ4_prepareTable()
882 || inputSize >= 4 KB) in LZ4_prepareTable()
919 const int inputSize, in LZ4_compress_generic_validated() argument
947 const BYTE* const iend = ip + inputSize; in LZ4_compress_generic_validated()
964 DEBUGLOG(5, "LZ4_compress_generic_validated: srcSize=%i, tableType=%u", inputSize, tableType); in LZ4_compress_generic_validated()
966 …if (tableType == byU16) assert(inputSize<LZ4_64Klimit); /* Size too large (not within 64K limit) … in LZ4_compress_generic_validated()
980 cctx->dictSize = (U32)inputSize; in LZ4_compress_generic_validated()
982 cctx->dictSize += (U32)inputSize; in LZ4_compress_generic_validated()
[all …]