6 references to Log10
Microsoft.Maui.Controls (1)
Stepper\Stepper.cs (1)
49 propertyChanged: (b, o, n) => { ((Stepper)b).digits = (int)(-Math.Log10((double)n) + 4).Clamp(1, 15); });
Microsoft.ML.TestFramework (1)
BaseTestBaseline.cs (1)
681double integralDigitCount = Math.Floor(Math.Log10(absValue) + 1);
PresentationCore (1)
System\Windows\Ink\Stroke.cs (1)
232tolerance = Math.Log10(min + min);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
903public static double Log10(double x) => Math.Log10(x); 906public static double Log10P1(double x) => Math.Log10(x + 1);
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
1614double log10 = Math.Log10(significand);