7 references to Narrow
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.ConvertHelpers.cs (1)
225
public static Vector128<float> Invoke(Vector128<double> lower, Vector128<double> upper) => Vector128.
Narrow
(lower, upper);
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
2336
/// <inheritdoc cref="Vector128.
Narrow
(Vector128{double}, Vector128{double})"/>
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (1)
2729
/// <inheritdoc cref="Vector128.
Narrow
(Vector128{double}, Vector128{double})"/>
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (1)
2754
/// <inheritdoc cref="Vector128.
Narrow
(Vector128{double}, Vector128{double})"/>
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
2722
/// <inheritdoc cref="Vector128.
Narrow
(Vector128{double}, Vector128{double})"/>
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (2)
2613
result = (TVectorSingle)(object)Vector128.
Narrow
(value.GetLower(), value.GetUpper());
2658
result = (TVectorSingle)(object)Vector128.
Narrow
((Vector128<double>)(object)lower, (Vector128<double>)(object)upper);