40 references to Log
PresentationCore (1)
Core\CSharp\System\Windows\Media\Animation\BounceEase.cs (1)
106
double bounceAtT = Math.
Log
(-unitAtT * (1.0-bounciness) + 1.0, bounciness);
PresentationFramework (4)
src\Framework\System\Windows\Controls\Grid.cs (4)
1842
double power = Math.Floor(Math.
Log
(Double.MaxValue / maxStar / starCount, 2.0));
2424
double power = Math.Floor(Math.
Log
(Double.MaxValue / maxStar / starCount, 2.0));
2855
double minPower = Math.Floor(Math.
Log
(minRatio, 2.0));
2856
double maxPower = Math.Floor(Math.
Log
(maxRatio, 2.0));
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\LoadRetryExponentialBackoffStrategy.cs (1)
13
readonly int expLimit = (int)(Math.
Log
(Int32.MaxValue, 2)) - 1;
System.Numerics (1)
System\Numerics\BigInteger.cs (1)
908
return Math.
Log
((double)value._sign, baseValue);
System.Web.DataVisualization (15)
Common\ChartTypes\FunnelChart.cs (2)
2763
yValue = Math.Abs(Math.
Log
( yValue, this.Area.AxisY.LogarithmBase ));
2786
return Math.Abs(Math.
Log
( point.XValue, this.Area.AxisX.LogarithmBase ));
Common\ChartTypes\StackedBarChart.cs (4)
759
yValue = Math.
Log
( yValue, hAxis.logarithmBase );
849
barZeroValue = Math.
Log
( barZeroValue, hAxis.logarithmBase );
1711
yValue = Math.
Log
( yValue, hAxis.logarithmBase );
1759
barZeroValue = Math.
Log
( barZeroValue, hAxis.logarithmBase );
Common\General\Axis.cs (1)
5157
yValue = Math.
Log
(yValue, this.logarithmBase);
Common\General\AxisScale.cs (4)
958
axisValue = Math.
Log
( axisValue, this.logarithmBase );
2105
crossingValue = Math.
Log
( crossingValue, this.logarithmBase );
2108
minimumValue = Math.
Log
( minimumValue, this.logarithmBase );
2109
maximumValue = Math.
Log
( maximumValue, this.logarithmBase );
Common\General\ChartAreaAxes.cs (2)
1800
prevXValue = Math.
Log
(dataSeries.Points[0].XValue, logarithmicBase);
1811
curentXValue = Math.
Log
(point.XValue, logarithmicBase);
Common\General\GridTickMarks.cs (2)
408
logInterval = Math.
Log
(1 + this.interval * logStep, Axis.logarithmBase);
1387
double logInterval = Math.
Log
( 1 + this.interval * logStep, _axis.logarithmBase );
System.Windows.Forms (3)
winforms\Managed\System\WinForms\NumericUpDown.cs (3)
823
int numDigits = (int)Math.Floor(Math.
Log
(Math.Max(-(double)Minimum, (double)Maximum), baseSize));
826
maxDigits = (int)Math.Floor(Math.
Log
(Int64.MaxValue, baseSize));
829
maxDigits = (int)Math.Floor(Math.
Log
((double)decimal.MaxValue, baseSize));
System.Windows.Forms.DataVisualization (15)
Common\ChartTypes\FunnelChart.cs (2)
2763
yValue = Math.Abs(Math.
Log
( yValue, this.Area.AxisY.LogarithmBase ));
2786
return Math.Abs(Math.
Log
( point.XValue, this.Area.AxisX.LogarithmBase ));
Common\ChartTypes\StackedBarChart.cs (4)
759
yValue = Math.
Log
( yValue, hAxis.logarithmBase );
849
barZeroValue = Math.
Log
( barZeroValue, hAxis.logarithmBase );
1711
yValue = Math.
Log
( yValue, hAxis.logarithmBase );
1759
barZeroValue = Math.
Log
( barZeroValue, hAxis.logarithmBase );
Common\General\Axis.cs (1)
5157
yValue = Math.
Log
(yValue, this.logarithmBase);
Common\General\AxisScale.cs (4)
958
axisValue = Math.
Log
( axisValue, this.logarithmBase );
2105
crossingValue = Math.
Log
( crossingValue, this.logarithmBase );
2108
minimumValue = Math.
Log
( minimumValue, this.logarithmBase );
2109
maximumValue = Math.
Log
( maximumValue, this.logarithmBase );
Common\General\ChartAreaAxes.cs (2)
1800
prevXValue = Math.
Log
(dataSeries.Points[0].XValue, logarithmicBase);
1811
curentXValue = Math.
Log
(point.XValue, logarithmicBase);
Common\General\GridTickMarks.cs (2)
408
logInterval = Math.
Log
(1 + this.interval * logStep, Axis.logarithmBase);
1387
double logInterval = Math.
Log
( 1 + this.interval * logStep, _axis.logarithmBase );