10 references to MinNative
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
2196
/// <inheritdoc cref="Vector128.
MinNative
{T}(Vector128{T}, Vector128{T})" />
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector2.cs (1)
769
public static Vector2 MinNative(Vector2 value1, Vector2 value2) => Vector128.
MinNative
(value1.AsVector128Unsafe(), value2.AsVector128Unsafe()).AsVector2();
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector3.cs (1)
802
public static Vector3 MinNative(Vector3 value1, Vector3 value2) => Vector128.
MinNative
(value1.AsVector128Unsafe(), value2.AsVector128Unsafe()).AsVector3();
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
846
/// <inheritdoc cref="Vector128.
MinNative
{T}(Vector128{T}, Vector128{T})" />
849
public static Vector4 MinNative(Vector4 value1, Vector4 value2) => Vector128.
MinNative
(value1.AsVector128(), value2.AsVector128()).AsVector4();
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (1)
358
return
MinNative
(MaxNative(value, min), max);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
780
static Vector128<T> ISimdVector<Vector128<T>, T>.MinNative(Vector128<T> left, Vector128<T> right) => Vector128.
MinNative
(left, right);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (3)
2611
/// <inheritdoc cref="Vector128.
MinNative
{T}(Vector128{T}, Vector128{T})" />
2623
Vector128.
MinNative
(left._lower, right._lower),
2624
Vector128.
MinNative
(left._upper, right._upper)