17 references to Hypot
System.Numerics.Tensors (2)
System\Numerics\Tensors\netcore\TensorOperation.cs (1)
1165
destination = T.
Hypot
(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Hypot.cs (1)
41
public static T Invoke(T x, T y) => T.
Hypot
(x, y);
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1542
/// <inheritdoc cref="IRootFunctions{TSelf}.
Hypot
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2263
/// <inheritdoc cref="IRootFunctions{TSelf}.
Hypot
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1986
/// <inheritdoc cref="IRootFunctions{TSelf}.
Hypot
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1000
/// <inheritdoc cref="IRootFunctions{TSelf}.
Hypot
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1011
/// <inheritdoc cref="IRootFunctions{TSelf}.
Hypot
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1004
/// <inheritdoc cref="IRootFunctions{TSelf}.
Hypot
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
1661
T value = T.
Hypot
(x.GetElementUnsafe(index), y.GetElementUnsafe(index));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1761
/// <inheritdoc cref="IRootFunctions{TSelf}.
Hypot
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
2105
T value = T.
Hypot
(x.GetElementUnsafe(index), y.GetElementUnsafe(index));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1559
/// <inheritdoc cref="IRootFunctions{TSelf}.
Hypot
(TSelf, TSelf)" />
System.Runtime.Numerics (5)
System\Numerics\Complex.Generic.cs (5)
366
return T.
Hypot
(value.m_real, value.m_imaginary);
879
T r = T.
Hypot
(x + T.One, y);
880
T s = T.
Hypot
(x - T.One, y);
1068
x = T.Sqrt((T.
Hypot
(realCopy, imaginaryCopy) + realCopy) * half);
1073
y = T.Sqrt((T.
Hypot
(realCopy, imaginaryCopy) - realCopy) * half);