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