6 references to Pow
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2171
public static Half Pow(Half x, Half y) => (Half)MathF.
Pow
((float)x, (float)y);
src\libraries\System.Private.CoreLib\src\System\Single.cs (5)
634
public static float Exp2(float x) => MathF.
Pow
(2, x);
637
public static float Exp2M1(float x) => MathF.
Pow
(2, x) - 1;
640
public static float Exp10(float x) => MathF.
Pow
(10, x);
643
public static float Exp10M1(float x) => MathF.
Pow
(10, x) - 1;
1499
public static float Pow(float x, float y) => MathF.
Pow
(x, y);