14 references to Pow
System.Numerics.Tensors (5)
System\Numerics\Tensors\netcore\TensorOperation.cs (3)
1743
destination = T.
Pow
(x, y);
1753
destination = T.
Pow
(x, y);
1763
destination = T.
Pow
(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Pow.cs (1)
64
public static T Invoke(T x, T y) => T.
Pow
(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.ScaleB.cs (1)
29
private readonly T _pow2n = typeof(T) == typeof(float) || typeof(T) == typeof(double) ? T.
Pow
(T.CreateTruncating(2), T.CreateTruncating(n)) : default!;
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1530
/// <inheritdoc cref="IPowerFunctions{TSelf}.
Pow
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2253
/// <inheritdoc cref="IPowerFunctions{TSelf}.
Pow
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1976
/// <inheritdoc cref="IPowerFunctions{TSelf}.
Pow
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1033
/// <inheritdoc cref="IPowerFunctions{TSelf}.
Pow
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1044
/// <inheritdoc cref="IPowerFunctions{TSelf}.
Pow
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1037
/// <inheritdoc cref="IPowerFunctions{TSelf}.
Pow
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1751
/// <inheritdoc cref="IPowerFunctions{TSelf}.
Pow
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1547
/// <inheritdoc cref="IPowerFunctions{TSelf}.
Pow
(TSelf, TSelf)" />
System.Runtime.Numerics (1)
System\Numerics\Complex.Generic.cs (1)
1116
T t = T.
Pow
(rho, powerReal) * T.Exp(-powerImaginary * theta);