Home
last modified time | relevance | path

Searched refs:posInSequence (Results 1 – 4 of 4) sorted by relevance

/dragonfly/contrib/zstd/lib/compress/
H A Dzstd_opt.c783 U32 currPos = (U32)(rawSeqStore->posInSequence + nbBytes); in ZSTD_optLdm_skipRawSeqStoreBytes()
790 rawSeqStore->posInSequence = currPos; in ZSTD_optLdm_skipRawSeqStoreBytes()
795 rawSeqStore->posInSequence = 0; in ZSTD_optLdm_skipRawSeqStoreBytes()
819 assert(optLdm->seqStore.posInSequence <= currSeq.litLength + currSeq.matchLength); in ZSTD_opt_getNextMatchAndUpdateSeqStore()
821 literalsBytesRemaining = (optLdm->seqStore.posInSequence < currSeq.litLength) ? in ZSTD_opt_getNextMatchAndUpdateSeqStore()
822 currSeq.litLength - (U32)optLdm->seqStore.posInSequence : in ZSTD_opt_getNextMatchAndUpdateSeqStore()
825 currSeq.matchLength - ((U32)optLdm->seqStore.posInSequence - currSeq.litLength) : in ZSTD_opt_getNextMatchAndUpdateSeqStore()
H A Dzstd_ldm.c581 U32 currPos = (U32)(rawSeqStore->posInSequence + nbBytes); in ZSTD_ldm_skipRawSeqStoreBytes()
588 rawSeqStore->posInSequence = currPos; in ZSTD_ldm_skipRawSeqStoreBytes()
593 rawSeqStore->posInSequence = 0; in ZSTD_ldm_skipRawSeqStoreBytes()
H A Dzstd_compress.c2983 cctx->externSeqStore.posInSequence = 0; in ZSTD_referenceExternalSequences()
4537 U32 posInSequence; /* Position within sequence at idx */ member
4650 U32 startPosInSequence = seqPos->posInSequence; in ZSTD_copySequencesToSeqStoreNoBlockDelim()
4651 U32 endPosInSequence = seqPos->posInSequence + (U32)blockSize; in ZSTD_copySequencesToSeqStoreNoBlockDelim()
4751 seqPos->posInSequence = endPosInSequence; in ZSTD_copySequencesToSeqStoreNoBlockDelim()
H A Dzstd_compress_internal.h98 size_t posInSequence; /* The position within the sequence at seq[pos] where reading member