Lines Matching defs:MULTIPLIER
534 constexpr auto MULTIPLIER = 10;
537 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next());
598 constexpr auto MULTIPLIER = 16;
599 uint32_t cpValue = HexValue(digit) * MULTIPLIER;
621 constexpr auto MULTIPLIER = 16;
622 value = value * MULTIPLIER + HexValue(digit);
639 constexpr auto MULTIPLIER = 16;
640 value = value * MULTIPLIER + HexValue(Next());
764 constexpr auto MULTIPLIER = 10;
767 uint32_t newValue = leftValue * MULTIPLIER + DigitValue(Next());
788 uint32_t newValue = rightValue * MULTIPLIER + DigitValue(Next());