Lines Matching refs:remaining
123 int32_t remaining = MAX_UNCHANGED - last;
124 if (remaining >= unchangedLength) {
129 unchangedLength -= remaining;
136 // Write a small (remaining) length.
401 array(a), index(0), length(len), remaining(0),
462 if (remaining > 0) {
472 if (remaining >= 1) {
474 if (remaining > 1) {
475 --remaining;
478 remaining = 0;
517 remaining = num; // This is the first of two or more changes.
557 if (remaining > 0) {
568 if (remaining > 0) {
572 if (remaining <= (u & SHORT_CHANGE_NUM_MASK)) {
573 ++remaining;
577 remaining = 0;
609 remaining = 1; // This is the last of two or more changes.
676 if (remaining > 0) {
677 // Is the index in one of the remaining compressed edits?
678 // spanStart is the start of the current span, first of the remaining ones.
682 int32_t num = (u & SHORT_CHANGE_NUM_MASK) + 1 - remaining;
690 remaining += n;
697 remaining = 0;
703 index = remaining = oldLength_ = newLength_ = srcIndex = replIndex = destIndex = 0;
720 if (remaining > 1) {
721 // Is the index in one of the remaining compressed edits?
722 // spanStart is the start of the current span, first of the remaining ones.
723 int32_t len = remaining * spanLength;
725 int32_t n = (i - spanStart) / spanLength; // 1 <= n <= remaining - 1
729 remaining -= n;
733 oldLength_ *= remaining;
734 newLength_ *= remaining;
735 remaining = 0;