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