5 implementations of ClampNative
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
879
static Vector<T> ISimdVector<Vector<T>, T>.
ClampNative
(Vector<T> value, Vector<T> min, Vector<T> max) => Vector.ClampNative(value, min, max);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
530
static Vector128<T> ISimdVector<Vector128<T>, T>.
ClampNative
(Vector128<T> value, Vector128<T> min, Vector128<T> max) => Vector128.ClampNative(value, min, max);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
519
static Vector256<T> ISimdVector<Vector256<T>, T>.
ClampNative
(Vector256<T> value, Vector256<T> min, Vector256<T> max) => Vector256.ClampNative(value, min, max);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
519
static Vector512<T> ISimdVector<Vector512<T>, T>.
ClampNative
(Vector512<T> value, Vector512<T> min, Vector512<T> max) => Vector512.ClampNative(value, min, max);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
587
static Vector64<T> ISimdVector<Vector64<T>, T>.
ClampNative
(Vector64<T> value, Vector64<T> min, Vector64<T> max) => Vector64.ClampNative(value, min, max);
6 references to ClampNative
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
877
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ClampNative
(TSelf, TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
528
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ClampNative
(TSelf, TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
517
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ClampNative
(TSelf, TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
517
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ClampNative
(TSelf, TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
355
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ClampNative
(TSelf, TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
585
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ClampNative
(TSelf, TSelf, TSelf)" />