Searched refs:srcSize (Results 1 – 2 of 2) sorted by relevance
/lvgl-latest/src/libs/lz4/ |
D | lz4.h | 201 LZ4LIB_API int LZ4_compress_default(const char* src, char* dst, int srcSize, int dstCapacity); 246 LZ4LIB_API int LZ4_compress_fast (const char* src, char* dst, int srcSize, int dstCapacity, int acc… 256 LZ4LIB_API int LZ4_compress_fast_extState (void* state, const char* src, char* dst, int srcSize, in… 319 LZ4LIB_API int LZ4_decompress_safe_partial (const char* src, char* dst, int srcSize, int targetOutp… 407 …_fast_continue (LZ4_stream_t* streamPtr, const char* src, char* dst, int srcSize, int dstCapacity,… 500 int srcSize, int dstCapacity); 513 int srcSize, int dstCapacity, 577 …ss_fast_extState_fastReset (void* state, const char* src, char* dst, int srcSize, int dstCapacity,… 797 …stead") LZ4LIB_API int LZ4_compress (const char* src, char* dest, int srcSize); 798 …LIB_API int LZ4_compress_limitedOutput (const char* src, char* dest, int srcSize, int maxOutputSiz…
|
D | lz4.c | 752 int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_dict, const char* source, char* dest, int srcSize); 1333 const int srcSize, in LZ4_compress_generic() argument 1343 srcSize, dstCapacity); in LZ4_compress_generic() 1345 …if ((U32)srcSize > (U32)LZ4_MAX_INPUT_SIZE) { return 0; } /* Unsupported srcSize, too large (or n… in LZ4_compress_generic() 1346 if (srcSize == 0) { /* src == NULL supported if srcSize == 0 */ in LZ4_compress_generic() 1360 return LZ4_compress_generic_validated(cctx, src, dst, srcSize, in LZ4_compress_generic() 1399 int LZ4_compress_fast_extState_fastReset(void* state, const char* src, char* dst, int srcSize, int … in LZ4_compress_fast_extState_fastReset() argument 1406 if (dstCapacity >= LZ4_compressBound(srcSize)) { in LZ4_compress_fast_extState_fastReset() 1407 if (srcSize < LZ4_64Klimit) { in LZ4_compress_fast_extState_fastReset() 1409 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset() [all …]
|