5 implementations of ShiftRightLogical
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1176
static Vector<T> ISimdVector<Vector<T>, T>.
ShiftRightLogical
(Vector<T> vector, int shiftCount) => vector >>> shiftCount;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
828
static Vector128<T> ISimdVector<Vector128<T>, T>.
ShiftRightLogical
(Vector128<T> vector, int shiftCount) => vector >>> shiftCount;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
816
static Vector256<T> ISimdVector<Vector256<T>, T>.
ShiftRightLogical
(Vector256<T> vector, int shiftCount) => vector >>> shiftCount;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
816
static Vector512<T> ISimdVector<Vector512<T>, T>.
ShiftRightLogical
(Vector512<T> vector, int shiftCount) => vector >>> shiftCount;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
885
static Vector64<T> ISimdVector<Vector64<T>, T>.
ShiftRightLogical
(Vector64<T> vector, int shiftCount) => vector >>> shiftCount;
5 references to ShiftRightLogical
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1174
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ShiftRightLogical
(TSelf, int)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
826
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ShiftRightLogical
(TSelf, int)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
814
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ShiftRightLogical
(TSelf, int)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
814
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ShiftRightLogical
(TSelf, int)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
883
/// <inheritdoc cref="ISimdVector{TSelf, T}.
ShiftRightLogical
(TSelf, int)" />