Lines Matching defs:remaining
529 size_t const remaining = (size_t)(iend - chunkStart);
531 (remaining < kMaxChunkSize) ? iend : chunkStart + kMaxChunkSize;
613 * If the sequence length is longer than remaining then the sequence is split
620 U32 const remaining, U32 const minMatch)
625 if (remaining >= sequence.litLength + sequence.matchLength) {
630 if (remaining <= sequence.litLength) {
632 } else if (remaining < sequence.litLength + sequence.matchLength) {
633 sequence.matchLength = remaining - sequence.litLength;
638 /* Skip past `remaining` bytes for the future sequences. */
639 ZSTD_ldm_skipSequences(rawSeqStore, remaining, minMatch);