Lines Matching defs:MULTIPLIER
538 constexpr auto MULTIPLIER = 10;
541 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next());
600 constexpr auto MULTIPLIER = 16;
601 uint32_t cpValue = HexValue(digit) * MULTIPLIER;
623 constexpr auto MULTIPLIER = 16;
624 value = value * MULTIPLIER + HexValue(digit);
641 constexpr auto MULTIPLIER = 16;
642 value = value * MULTIPLIER + HexValue(Next());
785 constexpr auto MULTIPLIER = 10;
788 uint32_t newValue = leftValue * MULTIPLIER + DigitValue(Next());
809 uint32_t newValue = rightValue * MULTIPLIER + DigitValue(Next());