7 references to Log10
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
285public static byte Log10(byte value) => (byte)uint.Log10(value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1218static char IBinaryInteger<char>.Log10(char value) => (char)uint.Log10(value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
294return (short)uint.Log10((uint)value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
311return (int)uint.Log10((uint)value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
297return (sbyte)uint.Log10((uint)value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
282public static ushort Log10(ushort value) => (ushort)uint.Log10(value);
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3156return uint.Log10((uint)value._sign);