Lines Matching defs:originalSeqStore
3305 /* Derives the seqStore that is a chunk of the originalSeqStore from [startIdx, endIdx).
3309 const seqStore_t* originalSeqStore,
3311 BYTE* const litEnd = originalSeqStore->lit;
3315 *resultSeqStore = *originalSeqStore;
3317 resultSeqStore->sequences = originalSeqStore->sequencesStart + startIdx;
3322 if (originalSeqStore->longLengthType != ZSTD_llt_none) {
3323 if (originalSeqStore->longLengthPos < startIdx || originalSeqStore->longLengthPos > endIdx) {
3329 resultSeqStore->sequencesStart = originalSeqStore->sequencesStart + startIdx;
3330 resultSeqStore->sequences = originalSeqStore->sequencesStart + endIdx;
3333 if (endIdx == (size_t)(originalSeqStore->sequences - originalSeqStore->sequencesStart)) {