Lines Matching defs:newValue
537 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next());
538 if (newValue < decimalValue) {
542 decimalValue = newValue;
579 uint32_t newValue = octalValue * 8 + DigitValue(Peek());
582 if (newValue <= MAX_OCTAL_VALUE) {
583 octalValue = newValue;
767 uint32_t newValue = leftValue * MULTIPLIER + DigitValue(Next());
768 if (newValue < leftValue) {
773 leftValue = newValue;
788 uint32_t newValue = rightValue * MULTIPLIER + DigitValue(Next());
789 if (newValue < rightValue) {
794 rightValue = newValue;