7 references to Pow
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
1741result = Pow(Abs(x), 1.0 / n); 1786result = Pow(Abs(x), 1.0 / n);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.Transcendental.cs (1)
752double result = double.Pow(xValue, yValue);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1752public static NFloat Pow(NFloat x, NFloat y) => new NFloat(NativeType.Pow(x._value, y._value));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Scalar.cs (1)
1379return (T)(object)double.Pow((double)(object)left, (double)(object)right);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (2)
1655result = (float)double.Pow(Abs(x), 1.0 / n); 1700result = (float)double.Pow(Abs(x), 1.0 / n);