3 references to RotateRight
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
310
public static long RotateRight(long value, int rotateAmount) => (long)BitOperations.
RotateRight
((ulong)value, rotateAmount);
src\libraries\System.Private.CoreLib\src\System\Numerics\BitOperations.cs (1)
760
return (nuint)
RotateRight
((ulong)value, offset);
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
307
public static ulong RotateRight(ulong value, int rotateAmount) => BitOperations.
RotateRight
(value, rotateAmount);