13 references to Log
CodeGenerator (3)
HttpUtilities\HttpUtilities.cs (1)
34var maskLength = (byte)Math.Ceiling(Math.Log(httpMethods.Length, 2));
HttpUtilities\HttpUtilitiesGeneratorHelpers.cs (2)
191var maskSizeInBIts = Math.Log(mask, 2); 210var maskSizeInBIts = Math.Log(mask, 2);
PresentationCore (1)
System\Windows\Media\Animation\BounceEase.cs (1)
105double bounceAtT = Math.Log(-unitAtT * (1.0-bounciness) + 1.0, bounciness);
PresentationFramework (4)
System\Windows\Controls\Grid.cs (4)
1778double power = Math.Floor(Math.Log(Double.MaxValue / maxStar / starCount, 2.0)); 2357double power = Math.Floor(Math.Log(Double.MaxValue / maxStar / starCount, 2.0)); 2797double minPower = Math.Floor(Math.Log(minRatio, 2.0)); 2798double maxPower = Math.Floor(Math.Log(maxRatio, 2.0));
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\Metrics\ExponentialHistogramAggregator.cs (1)
77int mantissaBits = (int)Math.Ceiling(Math.Log(1 / _config.MaxRelativeError, 2)) - 1;
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
937public static double Log(double x, double newBase) => Math.Log(x, newBase);
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (3)
841return Math.Log(value._sign, baseValue); 856return Math.Log(x, baseValue) + (b - 64) / Math.Log(baseValue, 2);