Home
last modified time | relevance | path

Searched refs:dictLimit (Results 1 – 3 of 3) sorted by relevance

/external/lz4/lib/
Dlz4hc.c107 hc4->dictLimit = (U32) startingOffset; in LZ4HC_init()
224 const U32 dictLimit = hc4->dictLimit; in LZ4HC_InsertAndGetWiderMatch() local
225 const BYTE* const lowPrefixPtr = base + dictLimit; in LZ4HC_InsertAndGetWiderMatch()
251 } else if (matchIndex >= dictLimit) { /* within current Prefix */ in LZ4HC_InsertAndGetWiderMatch()
271 const BYTE* vLimit = ip + (dictLimit - matchIndex); in LZ4HC_InsertAndGetWiderMatch()
314 && (matchCandidateIdx >= dictLimit) ) { /* same segment only */ in LZ4HC_InsertAndGetWiderMatch()
364 … lookBackLength ? LZ4HC_countBack(ip, matchPtr, iLowLimit, dictCtx->base + dictCtx->dictLimit) : 0; in LZ4HC_InsertAndGetWiderMatch()
944 if (ctxPtr->end >= ctxPtr->base + ctxPtr->dictLimit + 4) in LZ4HC_setExternalDict()
948 ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4HC_setExternalDict()
949 ctxPtr->dictLimit = (U32)(ctxPtr->end - ctxPtr->base); in LZ4HC_setExternalDict()
[all …]
Dlz4hc.h152 uint32_t dictLimit; /* below that point, need extDict */ member
170 unsigned int dictLimit; /* below that point, need extDict */ member
/external/u-boot/lib/zstd/
Dzstd_opt.h239 const U32 dictLimit = zc->dictLimit; in ZSTD_insertBtAndGetAllMatches() local
240 const BYTE *const dictEnd = dictBase + dictLimit; in ZSTD_insertBtAndGetAllMatches()
241 const BYTE *const prefixStart = base + dictLimit; in ZSTD_insertBtAndGetAllMatches()
258 if ((!extDict) || matchIndex3 >= dictLimit) { in ZSTD_insertBtAndGetAllMatches()
290 if ((!extDict) || (matchIndex + matchLength >= dictLimit)) { in ZSTD_insertBtAndGetAllMatches()
298 if (matchIndex + matchLength >= dictLimit) in ZSTD_insertBtAndGetAllMatches()
406 const BYTE *const prefixStart = base + ctx->dictLimit; in ZSTD_compressBlock_opt_generic()
700 const U32 dictLimit = ctx->dictLimit; in ZSTD_compressBlock_opt_extDict_generic() local
701 const BYTE *const prefixStart = base + dictLimit; in ZSTD_compressBlock_opt_extDict_generic()
703 const BYTE *const dictEnd = dictBase + dictLimit; in ZSTD_compressBlock_opt_extDict_generic()
[all …]