2 references to RotateRight
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
315public static nint RotateRight(nint value, int rotateAmount) => (nint)BitOperations.RotateRight((nuint)value, rotateAmount);
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
311public static nuint RotateRight(nuint value, int rotateAmount) => BitOperations.RotateRight(value, rotateAmount);