Searched refs:Radix (Results 1 – 2 of 2) sorted by relevance
777 ULONG Radix; in RtlIntegerToUnicode() local784 Radix = Base; in RtlIntegerToUnicode()786 if (Radix == 0) Radix = 10; in RtlIntegerToUnicode()788 if ((Radix != 2) && (Radix != 8) && in RtlIntegerToUnicode()789 (Radix != 10) && (Radix != 16)) in RtlIntegerToUnicode()798 i = v % Radix; in RtlIntegerToUnicode()799 v = v / Radix; in RtlIntegerToUnicode()
2630 template <unsigned Radix>2712 type_case_integer_parse_into_buffer<uint64_t, Radix>(number, capital_hexits);2716 …type_case_integer_parse_into_buffer<uint32_t, Radix>(static_cast<uint32_t>(number), capital_hexits…2734 template <typename UnsignedInteger, unsigned Radix>2753 Character digit{static_cast<Character>(number % Radix + '0')};2754 number /= Radix;