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)
681
double integralDigitCount = Math.Floor(Math.
Log10
(absValue) + 1);
PresentationCore (1)
System\Windows\Ink\Stroke.cs (1)
232
tolerance = Math.
Log10
(min + min);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
903
public static double Log10(double x) => Math.
Log10
(x);
906
public static double Log10P1(double x) => Math.
Log10
(x + 1);
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
1614
double log10 = Math.
Log10
(significand);