Lines Matching defs:currSeq
5687 const ZSTD_Sequence currSeq = inSeqs[idx];
5688 U32 litLength = currSeq.litLength;
5689 U32 matchLength = currSeq.matchLength;
5690 U32 const rawOffset = currSeq.offset;
5694 if (endPosInSequence >= currSeq.litLength + currSeq.matchLength) {
5703 endPosInSequence -= currSeq.litLength + currSeq.matchLength;
5710 currSeq.litLength + currSeq.matchLength - endPosInSequence, idx, endPosInSequence);
5717 U32 secondHalfMatchLength = currSeq.matchLength + currSeq.litLength - endPosInSequence;
5730 * the last literals. We use the original currSeq.litLength as a marker for where endPosInSequence
5734 bytesAdjustment = endPosInSequence - currSeq.litLength;
5735 endPosInSequence = currSeq.litLength;