17 references to Hypot
System.Numerics.Tensors (2)
System\Numerics\Tensors\netcore\TensorOperation.cs (1)
1165destination = T.Hypot(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Hypot.cs (1)
41public 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)
1661T 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)
2105T 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)
366return T.Hypot(value.m_real, value.m_imaginary); 879T r = T.Hypot(x + T.One, y); 880T s = T.Hypot(x - T.One, y); 1068x = T.Sqrt((T.Hypot(realCopy, imaginaryCopy) + realCopy) * half); 1073y = T.Sqrt((T.Hypot(realCopy, imaginaryCopy) - realCopy) * half);