Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/compress/
H A Dzstd_fast.c411 const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_fast_extDict_generic() local
412 const BYTE* match = matchBase + matchIndex; in ZSTD_compressBlock_fast_extDict_generic()
H A Dzstd_double_fast.c396 const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic() local
397 const BYTE* match = matchBase + matchIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()
/dragonfly/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c1019 … const BYTE* const matchBase = (seq.offset > pos) ? seqState->dictEnd : seqState->prefixStart; in ZSTD_decodeSequence() local
1020 …seq.match = matchBase + pos - seq.offset; /* note : this operation can overflow when seq.offset i… in ZSTD_decodeSequence()