7 references to Log10
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
279
public static byte Log10(byte value) => (byte)uint.
Log10
(value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1233
static char IBinaryInteger<char>.Log10(char value) => (char)uint.
Log10
(value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
288
return (short)uint.
Log10
((uint)value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
305
return (int)uint.
Log10
((uint)value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
291
return (sbyte)uint.
Log10
((uint)value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
276
public static ushort Log10(ushort value) => (ushort)uint.
Log10
(value);
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3348
return uint.
Log10
((uint)value._sign);