Home
last modified time | relevance | path

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

/DragonOS-0.1.3/kernel/src/libs/
Dlz4.c908 const void *dictStart, size_t dictSize);
1133 cctx->dictSize = 0; in LZ4_prepareTable()
1165 const U32 dictSize = in LZ4_compress_generic_validated() local
1166 dictDirective == usingDictCtx ? dictCtx->dictSize : cctx->dictSize; in LZ4_compress_generic_validated()
1170 U32 const prefixIdxLimit = startIndex - dictSize; /* used when dictDirective == dictSmall */ in LZ4_compress_generic_validated()
1171 const BYTE *const dictEnd = dictionary ? dictionary + dictSize : dictionary; in LZ4_compress_generic_validated()
1179 …e = !dictionary ? NULL : (dictDirective == usingDictCtx) ? dictionary + dictSize - dictCtx->curren… in LZ4_compress_generic_validated()
1180 … : dictionary + dictSize - startIndex; in LZ4_compress_generic_validated()
1204 lowLimit = (const BYTE *)source - (dictDirective == withPrefix64k ? dictSize : 0); in LZ4_compress_generic_validated()
1212 cctx->dictSize = (U32)inputSize; in LZ4_compress_generic_validated()
[all …]
/DragonOS-0.1.3/kernel/src/common/
Dlz4.h304 LZ4LIB_API int LZ4_loadDict(LZ4_stream_t *streamPtr, const char *dictionary, int dictSize);
360 …nt LZ4_setStreamDecode(LZ4_streamDecode_t *LZ4_streamDecode, const char *dictionary, int dictSize);
411 …Dict(const char *src, char *dst, int srcSize, int dstCapcity, const char *dictStart, int dictSize);
589 LZ4_u32 dictSize; member
757 …_fast_usingDict(const char *src, char *dst, int originalSize, const char *dictStart, int dictSize);