Lines Matching refs:startIdx

3310                                      size_t startIdx, size_t endIdx) {  in ZSTD_deriveSeqStoreChunk()  argument
3316 if (startIdx > 0) { in ZSTD_deriveSeqStoreChunk()
3317 resultSeqStore->sequences = originalSeqStore->sequencesStart + startIdx; in ZSTD_deriveSeqStoreChunk()
3323 … if (originalSeqStore->longLengthPos < startIdx || originalSeqStore->longLengthPos > endIdx) { in ZSTD_deriveSeqStoreChunk()
3326 resultSeqStore->longLengthPos -= (U32)startIdx; in ZSTD_deriveSeqStoreChunk()
3329 resultSeqStore->sequencesStart = originalSeqStore->sequencesStart + startIdx; in ZSTD_deriveSeqStoreChunk()
3339 resultSeqStore->llCode += startIdx; in ZSTD_deriveSeqStoreChunk()
3340 resultSeqStore->mlCode += startIdx; in ZSTD_deriveSeqStoreChunk()
3341 resultSeqStore->ofCode += startIdx; in ZSTD_deriveSeqStoreChunk()
3495 ZSTD_deriveBlockSplitsHelper(seqStoreSplits* splits, size_t startIdx, size_t endIdx, in ZSTD_deriveBlockSplitsHelper() argument
3504 size_t midIdx = (startIdx + endIdx)/2; in ZSTD_deriveBlockSplitsHelper()
3506 …if (endIdx - startIdx < MIN_SEQUENCES_BLOCK_SPLITTING || splits->idx >= ZSTD_MAX_NB_BLOCK_SPLITS) { in ZSTD_deriveBlockSplitsHelper()
3510 DEBUGLOG(4, "ZSTD_deriveBlockSplitsHelper: startIdx=%zu endIdx=%zu", startIdx, endIdx); in ZSTD_deriveBlockSplitsHelper()
3511 ZSTD_deriveSeqStoreChunk(fullSeqStoreChunk, origSeqStore, startIdx, endIdx); in ZSTD_deriveBlockSplitsHelper()
3512 ZSTD_deriveSeqStoreChunk(firstHalfSeqStore, origSeqStore, startIdx, midIdx); in ZSTD_deriveBlockSplitsHelper()
3523 ZSTD_deriveBlockSplitsHelper(splits, startIdx, midIdx, zc, origSeqStore); in ZSTD_deriveBlockSplitsHelper()