Lines Matching refs:dictEnd

86 	const void *dictEnd;	/* end of previous segment */  member
113 dctx->dictEnd = NULL; in ZSTD_decompressBegin()
881 const BYTE *const vBase, const BYTE *const dictEnd) in ZSTD_execSequenceLast7() argument
912 match = dictEnd - (base - match); in ZSTD_execSequenceLast7()
913 if (match + sequence.matchLength <= dictEnd) { in ZSTD_execSequenceLast7()
919 size_t const length1 = dictEnd - match; in ZSTD_execSequenceLast7()
1008 const BYTE *const vBase, const BYTE *const dictEnd) in ZSTD_execSequence() argument
1023 return ZSTD_execSequenceLast7(op, oend, sequence, litPtr, litLimit, base, vBase, dictEnd); in ZSTD_execSequence()
1038 match = dictEnd + (match - base); in ZSTD_execSequence()
1039 if (match + sequence.matchLength <= dictEnd) { in ZSTD_execSequence()
1045 size_t const length1 = dictEnd - match; in ZSTD_execSequence()
1104 const BYTE *const dictEnd = (const BYTE *)(dctx->dictEnd); in ZSTD_decompressSequences() local
1133 …_t const oneSeqSize = ZSTD_execSequence(op, oend, sequence, &litPtr, litEnd, base, vBase, dictEnd); in ZSTD_decompressSequences()
1264 const BYTE *const vBase, const BYTE *const dictEnd) in ZSTD_execSequenceLong() argument
1279 return ZSTD_execSequenceLast7(op, oend, sequence, litPtr, litLimit, base, vBase, dictEnd); in ZSTD_execSequenceLong()
1294 if (match + sequence.matchLength <= dictEnd) { in ZSTD_execSequenceLong()
1300 size_t const length1 = dictEnd - match; in ZSTD_execSequenceLong()
1359 const BYTE *const dictEnd = (const BYTE *)(dctx->dictEnd); in ZSTD_decompressSequencesLong() local
1389 seqState.gotoDict = (uPtrDiff)dictEnd - (uPtrDiff)base; /* cast to avoid undefined behaviour */ in ZSTD_decompressSequencesLong()
1406 …op, oend, sequences[(seqNb - ADVANCED_SEQS) & STOSEQ_MASK], &litPtr, litEnd, base, vBase, dictEnd); in ZSTD_decompressSequencesLong()
1419 …_execSequenceLong(op, oend, sequences[seqNb & STOSEQ_MASK], &litPtr, litEnd, base, vBase, dictEnd); in ZSTD_decompressSequencesLong()
1472 dctx->dictEnd = dctx->previousDstEnd; in ZSTD_checkContinuity()
1863 dctx->dictEnd = dctx->previousDstEnd; in ZSTD_refDictContent()
1876 const BYTE *const dictEnd = dictPtr + dictSize; in ZSTD_loadEntropy() local
1883 …size_t const hSize = HUF_readDTableX4_wksp(entropy->hufTable, dictPtr, dictEnd - dictPtr, entropy-… in ZSTD_loadEntropy()
1892 …derSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadEntropy()
1904 …E_readNCount(matchlengthNCount, &matchlengthMaxValue, &matchlengthLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadEntropy()
1916 …e = FSE_readNCount(litlengthNCount, &litlengthMaxValue, &litlengthLog, dictPtr, dictEnd - dictPtr); in ZSTD_loadEntropy()
1925 if (dictPtr + 12 > dictEnd) in ZSTD_loadEntropy()
1929 size_t const dictContentSize = (size_t)(dictEnd - (dictPtr + 12)); in ZSTD_loadEntropy()
2001 dstDCtx->dictEnd = (const BYTE *)ddict->dictContent + ddict->dictSize; in ZSTD_refDDict()
2002 dstDCtx->previousDstEnd = dstDCtx->dictEnd; in ZSTD_refDDict()