5 references to Min
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (3)
2737/// <inheritdoc cref="Vector64.Min{T}(Vector64{T}, Vector64{T})" /> 2749Vector64.Min(left._lower, right._lower), 2750Vector64.Min(left._upper, right._upper)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
825static Vector64<T> ISimdVector<Vector64<T>, T>.Min(Vector64<T> left, Vector64<T> right) => Vector64.Min(left, right);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
424return Min(Max(value, min), max);