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