1 implementation of RotateRight
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1242
static char IBinaryInteger<char>.
RotateRight
(char value, int rotateAmount) => (char)((value >> (rotateAmount & 15)) | (value << ((16 - rotateAmount) & 15)));
16 references to RotateRight
System.Numerics.Tensors (2)
System\Numerics\Tensors\netcore\TensorOperation.cs (1)
1852
destination = T.
RotateRight
(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Rotate.cs (1)
60
public T Invoke(T x) => T.
RotateRight
(x, _amount);
System.Private.CoreLib (13)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
287
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1241
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
741
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
297
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
316
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
313
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
346
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
300
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1089
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
284
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
329
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
336
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
341
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3470
/// <inheritdoc cref="IBinaryInteger{TSelf}.
RotateRight
(TSelf, int)" />