Searched refs:dictSize (Results 1 – 2 of 2) sorted by relevance
/lvgl-latest/src/libs/lz4/ |
D | lz4.c | 756 const void* dictStart, size_t dictSize); 759 const void* dictStart, size_t dictSize); 906 cctx->dictSize = 0; in LZ4_prepareTable() 938 const U32 dictSize = in LZ4_compress_generic_validated() local 939 dictDirective == usingDictCtx ? dictCtx->dictSize : cctx->dictSize; in LZ4_compress_generic_validated() 944 U32 const prefixIdxLimit = startIndex - dictSize; /* used when dictDirective == dictSmall */ in LZ4_compress_generic_validated() 945 const BYTE* const dictEnd = dictionary ? dictionary + dictSize : dictionary; in LZ4_compress_generic_validated() 955 dictionary + dictSize - dictCtx->currentOffset : in LZ4_compress_generic_validated() 956 dictionary + dictSize - startIndex; in LZ4_compress_generic_validated() 973 lowLimit = (const BYTE*)source - (dictDirective == withPrefix64k ? dictSize : 0); in LZ4_compress_generic_validated() [all …]
|
D | lz4.h | 382 LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, int dictSize); 443 …t LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize); 514 const char* dictStart, int dictSize); 526 const char* dictStart, int dictSize); 716 LZ4_u32 dictSize; member 858 …fast_usingDict (const char* src, char* dst, int originalSize, const char* dictStart, int dictSize);
|