5 references to MinNative
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (3)
2522/// <inheritdoc cref="Vector64.MinNative{T}(Vector64{T}, Vector64{T})" /> 2534Vector64.MinNative(left._lower, right._lower), 2535Vector64.MinNative(left._upper, right._upper)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
360return MinNative(MaxNative(value, min), max);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
837static Vector64<T> ISimdVector<Vector64<T>, T>.MinNative(Vector64<T> left, Vector64<T> right) => Vector64.MinNative(left, right);