Searched refs:dstCapacity (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); 218 LZ4LIB_API int LZ4_decompress_safe (const char* src, char* dst, int compressedSize, int dstCapacity… 246 LZ4LIB_API int LZ4_compress_fast (const char* src, char* dst, int srcSize, int dstCapacity, int acc… 256 …st_extState (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int accelerati… 319 …ress_safe_partial (const char* src, char* dst, int srcSize, int targetOutputSize, int dstCapacity); 407 …(LZ4_stream_t* streamPtr, const char* src, char* dst, int srcSize, int dstCapacity, int accelerati… 500 int srcSize, int dstCapacity); 513 int srcSize, int dstCapacity, 577 …e_fastReset (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int accelerati…
|
D | lz4.c | 758 int compressedSize, int targetOutputSize, int dstCapacity, 1335 const int dstCapacity, in LZ4_compress_generic() argument 1343 srcSize, dstCapacity); in LZ4_compress_generic() 1347 …if (outputDirective != notLimited && dstCapacity <= 0) return 0; /* no output, can't write anythi… in LZ4_compress_generic() 1349 assert(outputDirective == notLimited || dstCapacity >= 1); in LZ4_compress_generic() 1362 dstCapacity, outputDirective, in LZ4_compress_generic() 1399 …te_fastReset(void* state, const char* src, char* dst, int srcSize, int dstCapacity, int accelerati… in LZ4_compress_fast_extState_fastReset() argument 1406 if (dstCapacity >= LZ4_compressBound(srcSize)) { in LZ4_compress_fast_extState_fastReset() 1425 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset() 1427 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset() [all …]
|