Lines Matching defs:newValue
541 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next());
542 if (newValue < decimalValue) {
546 decimalValue = newValue;
582 uint32_t newValue = octalValue * 8 + DigitValue(Peek());
585 if (newValue <= MAX_OCTAL_VALUE) {
586 octalValue = newValue;
788 uint32_t newValue = leftValue * MULTIPLIER + DigitValue(Next());
789 if (newValue < leftValue) {
794 leftValue = newValue;
809 uint32_t newValue = rightValue * MULTIPLIER + DigitValue(Next());
810 if (newValue < rightValue) {
815 rightValue = newValue;