Home
last modified time | relevance | path

Searched refs:Radix (Results 1 – 2 of 2) sorted by relevance

/reactos/sdk/lib/rtl/
H A Dunicode.c777 ULONG Radix; in RtlIntegerToUnicode() local
784 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()
/reactos/sdk/lib/ucrt/inc/
H A Dcorecrt_internal_stdio_output.h2630 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;