7 references to Narrow
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.ConvertHelpers.cs (1)
223
public static Vector128<float> Invoke(Vector128<double> lower, Vector128<double> upper) => Vector128.
Narrow
(lower, upper);
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
2678
/// <inheritdoc cref="Vector128.
Narrow
(Vector128{double}, Vector128{double})"/>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
3001
/// <inheritdoc cref="Vector128.
Narrow
(Vector128{double}, Vector128{double})"/>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (1)
3035
/// <inheritdoc cref="Vector128.
Narrow
(Vector128{double}, Vector128{double})"/>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
3100
/// <inheritdoc cref="Vector128.
Narrow
(Vector128{double}, Vector128{double})"/>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (2)
2815
result = (TVectorSingle)(object)Vector128.
Narrow
(value.GetLower(), value.GetUpper());
2860
result = (TVectorSingle)(object)Vector128.
Narrow
((Vector128<double>)(object)lower, (Vector128<double>)(object)upper);