HomeSort by: relevance | last modified time | path
    Searched refs:posInSequence (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_opt.c 916 * which will update the fields 'pos' and 'posInSequence'.
920 U32 currPos = (U32)(rawSeqStore->posInSequence + nbBytes);
927 rawSeqStore->posInSequence = currPos;
932 rawSeqStore->posInSequence = 0;
938 * Updates 'pos' and 'posInSequence' of the ldmSeqStore.
956 * after adjusting based on ldmSeqStore->posInSequence */
958 assert(optLdm->seqStore.posInSequence <= currSeq.litLength + currSeq.matchLength);
960 literalsBytesRemaining = (optLdm->seqStore.posInSequence < currSeq.litLength) ?
961 currSeq.litLength - (U32)optLdm->seqStore.posInSequence :
964 currSeq.matchLength - ((U32)optLdm->seqStore.posInSequence - currSeq.litLength)
    [all...]
zstd_ldm.c 665 U32 currPos = (U32)(rawSeqStore->posInSequence + nbBytes);
672 rawSeqStore->posInSequence = currPos;
677 rawSeqStore->posInSequence = 0;
zstd_compress_internal.h 208 size_t posInSequence; /* The position within the sequence at seq[pos] where reading
209 stopped. posInSequence <= seq[pos].litLength + seq[pos].matchLength */
1519 U32 posInSequence; /* Position within sequence at idx */
zstd_compress.c 4788 cctx->externSeqStore.posInSequence = 0;
6752 U32 startPosInSequence = seqPos->posInSequence;
6753 U32 endPosInSequence = seqPos->posInSequence + (U32)blockSize;
6854 seqPos->posInSequence = endPosInSequence;

Completed in 39 milliseconds