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