17 references to Min
System.Linq (1)
System\Linq\Min.cs (1)
19public static Vector128<T> Compare(Vector128<T> left, Vector128<T> right) => Vector128.Min(left, right);
System.Numerics.Tensors (2)
System\Numerics\Tensors\netcore\TensorPrimitives.ConvertHelpers.cs (1)
595value = Vector128.Min(Vector128.Create(MaxHalfValueBelowInfinity), value);
System\Numerics\Tensors\netcore\TensorPrimitives.Min.cs (1)
122return Vector128.Min(x, y);
System.Private.CoreLib (14)
src\libraries\Common\src\System\HexConverter.cs (1)
297Vector128<byte> nibbles = Vector128.Min(t2 - Vector128.Create((byte)0xF0), t4);
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (1)
2127/// <inheritdoc cref="Vector128.Min{T}(Vector128{T}, Vector128{T})" />
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector2.cs (1)
754public static Vector2 Min(Vector2 value1, Vector2 value2) => Vector128.Min(value1.AsVector128Unsafe(), value2.AsVector128Unsafe()).AsVector2();
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector3.cs (1)
787public static Vector3 Min(Vector3 value1, Vector3 value2) => Vector128.Min(value1.AsVector128Unsafe(), value2.AsVector128Unsafe()).AsVector3();
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (2)
831/// <inheritdoc cref="Vector128.Min{T}(Vector128{T}, Vector128{T})" /> 834public static Vector4 Min(Vector4 value1, Vector4 value2) => Vector128.Min(value1.AsVector128(), value2.AsVector128()).AsVector4();
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (1)
350return Min(Max(value, min), max);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
768static Vector128<T> ISimdVector<Vector128<T>, T>.Min(Vector128<T> left, Vector128<T> right) => Vector128.Min(left, right);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (3)
2557/// <inheritdoc cref="Vector128.Min{T}(Vector128{T}, Vector128{T})" /> 2569Vector128.Min(left._lower, right._lower), 2570Vector128.Min(left._upper, right._upper)
src\libraries\System.Private.CoreLib\src\System\SearchValues\IndexOfAnyAsciiSearcher.cs (2)
1368Vector128<short> lowerMin = Vector128.Min(lower, Vector128.Create((ushort)255)).AsInt16(); 1369Vector128<short> upperMin = Vector128.Min(upper, Vector128.Create((ushort)255)).AsInt16();
src\libraries\System.Private.CoreLib\src\System\Text\Unicode\Utf16Utility.Validation.cs (1)
86Vector128<ushort> charIsNonAscii = Vector128.Min(utf16Data, vector0080);