Lines Matching refs:endIdx
3917 size_t startIdx, size_t endIdx) in ZSTD_deriveSeqStoreChunk() argument
3927 … if (originalSeqStore->longLengthPos < startIdx || originalSeqStore->longLengthPos > endIdx) { in ZSTD_deriveSeqStoreChunk()
3934 resultSeqStore->sequences = originalSeqStore->sequencesStart + endIdx; in ZSTD_deriveSeqStoreChunk()
3935 if (endIdx == (size_t)(originalSeqStore->sequences - originalSeqStore->sequencesStart)) { in ZSTD_deriveSeqStoreChunk()
4111 ZSTD_deriveBlockSplitsHelper(seqStoreSplits* splits, size_t startIdx, size_t endIdx, in ZSTD_deriveBlockSplitsHelper() argument
4120 size_t midIdx = (startIdx + endIdx)/2; in ZSTD_deriveBlockSplitsHelper()
4122 DEBUGLOG(5, "ZSTD_deriveBlockSplitsHelper: startIdx=%zu endIdx=%zu", startIdx, endIdx); in ZSTD_deriveBlockSplitsHelper()
4123 assert(endIdx >= startIdx); in ZSTD_deriveBlockSplitsHelper()
4124 …if (endIdx - startIdx < MIN_SEQUENCES_BLOCK_SPLITTING || splits->idx >= ZSTD_MAX_NB_BLOCK_SPLITS) { in ZSTD_deriveBlockSplitsHelper()
4125 DEBUGLOG(6, "ZSTD_deriveBlockSplitsHelper: Too few sequences (%zu)", endIdx - startIdx); in ZSTD_deriveBlockSplitsHelper()
4128 ZSTD_deriveSeqStoreChunk(fullSeqStoreChunk, origSeqStore, startIdx, endIdx); in ZSTD_deriveBlockSplitsHelper()
4130 ZSTD_deriveSeqStoreChunk(secondHalfSeqStore, origSeqStore, midIdx, endIdx); in ZSTD_deriveBlockSplitsHelper()
4144 ZSTD_deriveBlockSplitsHelper(splits, midIdx, endIdx, zc, origSeqStore); in ZSTD_deriveBlockSplitsHelper()