Home
last modified time | relevance | path

Searched refs:dictStart (Results 1 – 7 of 7) sorted by relevance

/f-stack/freebsd/contrib/zstd/lib/compress/
H A Dzstd_double_fast.c86 const BYTE* const dictStart = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() local
97 const U32 dictAndPrefixLength = (U32)((ip - prefixLowest) + (dictEnd - dictStart)); in ZSTD_compressBlock_doubleFast_generic()
178 if (dictMatchL > dictStart && MEM_read64(dictMatchL) == MEM_read64(ip)) { in ZSTD_compressBlock_doubleFast_generic()
181 …while (((ip>anchor) & (dictMatchL>dictStart)) && (ip[-1] == dictMatchL[-1])) { ip--; dictMatchL--;… in ZSTD_compressBlock_doubleFast_generic()
196 if (match > dictStart && MEM_read32(match) == MEM_read32(ip)) { in ZSTD_compressBlock_doubleFast_generic()
228 if (dictMatchL3 > dictStart && MEM_read64(dictMatchL3) == MEM_read64(ip+1)) { in ZSTD_compressBlock_doubleFast_generic()
240 …while (((ip>anchor) & (match>dictStart)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /… in ZSTD_compressBlock_doubleFast_generic()
382 const BYTE* const dictStart = dictBase + dictStartIndex; in ZSTD_compressBlock_doubleFast_extDict_generic() local
421 … const BYTE* const lowMatchPtr = matchLongIndex < prefixStartIndex ? dictStart : prefixStart; in ZSTD_compressBlock_doubleFast_extDict_generic()
439 … const BYTE* const lowMatchPtr = matchIndex3 < prefixStartIndex ? dictStart : prefixStart; in ZSTD_compressBlock_doubleFast_extDict_generic()
[all …]
H A Dzstd_fast.c232 const BYTE* const dictStart = dictBase + dictStartIndex; in ZSTD_compressBlock_fast_dictMatchState_generic() local
235 const U32 dictAndPrefixLength = (U32)(ip - prefixStart + dictEnd - dictStart); in ZSTD_compressBlock_fast_dictMatchState_generic()
289 while (((ip>anchor) & (dictMatch>dictStart)) in ZSTD_compressBlock_fast_dictMatchState_generic()
392 const BYTE* const dictStart = dictBase + dictStartIndex; in ZSTD_compressBlock_fast_extDict_generic() local
437 … const BYTE* const lowMatchPtr = matchIndex < prefixStartIndex ? dictStart : prefixStart; in ZSTD_compressBlock_fast_extDict_generic()
H A Dzstd_ldm.c287 BYTE const* const dictStart = extDict ? dictBase + lowestIndex : NULL; in ZSTD_ldm_generateSequences_internal() local
344 cur->offset < dictLimit ? dictStart : lowPrefixPtr; in ZSTD_ldm_generateSequences_internal()
355 dictStart, dictEnd); in ZSTD_ldm_generateSequences_internal()
H A Dzstd_lazy.c1219 const BYTE* const dictStart = dictBase + ms->window.lowLimit; in ZSTD_compressBlock_lazy_extDict_generic() local
1341 const BYTE* const mStart = (matchIndex < dictLimit) ? dictStart : prefixStart; in ZSTD_compressBlock_lazy_extDict_generic()
/f-stack/freebsd/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c1251 const BYTE* const dictStart = (const BYTE*) (dctx->virtualStart); in ZSTD_decompressSequencesLong_body() local
1288 …ences[(seqNb-ADVANCED_SEQS) & STORED_SEQS_MASK], &litPtr, litEnd, prefixStart, dictStart, dictEnd); in ZSTD_decompressSequencesLong_body()
1291 …uence(dctx, op, oend, sequences[(seqNb-ADVANCED_SEQS) & STORED_SEQS_MASK], prefixStart, dictStart); in ZSTD_decompressSequencesLong_body()
1303 …nce(op, oend, sequences[seqNb&STORED_SEQS_MASK], &litPtr, litEnd, prefixStart, dictStart, dictEnd); in ZSTD_decompressSequencesLong_body()
1306 …STD_assertValidSequence(dctx, op, oend, sequences[seqNb&STORED_SEQS_MASK], prefixStart, dictStart); in ZSTD_decompressSequencesLong_body()
H A Dzstd_decompress.c1217 const char* const dictStart = (const char*)ZSTD_DDict_dictContent(ddict); in ZSTD_decompressBegin_usingDDict() local
1219 const void* const dictEnd = dictStart + dictSize; in ZSTD_decompressBegin_usingDDict()
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c17450 const BYTE* const dictStart = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic() local
17560 if (match > dictStart && MEM_read32(match) == MEM_read32(ip)) { in ZSTD_compressBlock_doubleFast_generic()
17746 const BYTE* const dictStart = dictBase + dictStartIndex; in ZSTD_compressBlock_doubleFast_extDict_generic() local
18119 const BYTE* const dictStart = dictBase + dictStartIndex; in ZSTD_compressBlock_fast_dictMatchState_generic() local
18176 while (((ip>anchor) & (dictMatch>dictStart)) in ZSTD_compressBlock_fast_dictMatchState_generic()
18279 const BYTE* const dictStart = dictBase + dictStartIndex; in ZSTD_compressBlock_fast_extDict_generic() local
19330 const BYTE* const dictStart = dictBase + ms->window.lowLimit; in ZSTD_compressBlock_lazy_extDict_generic() local
19798 BYTE const* const dictStart = extDict ? dictBase + lowestIndex : NULL; in ZSTD_ldm_generateSequences_internal() local
19855 cur->offset < dictLimit ? dictStart : lowPrefixPtr; in ZSTD_ldm_generateSequences_internal()
25707 const void* const dictEnd = dictStart + dictSize; in ZSTD_decompressBegin_usingDDict()
[all …]