8 references to UInt32ToDecChars
System.Private.CoreLib (8)
src\runtime\src\libraries\Common\src\System\Number.Formatting.Common.cs (1)
1251
int pos =
UInt32ToDecChars
(digits, digitCount, (uint)value, minDigits);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\DateTimeFormat.cs (1)
187
int pos = Number.
UInt32ToDecChars
(buffer, digitCount, (uint)value, minimumLength);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (6)
581
index =
UInt32ToDecChars
(digits, index, decimal.DecDivMod1E9(ref d), 9);
583
UInt32ToDecChars
(digits, index, d.Low, 0);
1764
UInt32ToDecChars
(digits, i, (uint)value, 0);
1836
int pos =
UInt32ToDecChars
<TChar>(destination, bufferLength, (uint)(-value), digits);
1947
UInt32ToDecChars
(digits, i, value, 0);
2050
UInt32ToDecChars
<TChar>(destination, bufferLength, value, digits) :