7 references to RotateRight
System.Net.WebSockets (1)
System\Net\WebSockets\ManagedWebSocket.cs (1)
1679(int)BitOperations.RotateRight((uint)mask, maskIndex * 8) :
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Buffers\Binary\BinaryPrimitives.ReverseEndianness.cs (1)
150return BitOperations.RotateRight(value & 0x00FF00FFu, 8) // xx zz
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
313public static int RotateRight(int value, int rotateAmount) => (int)BitOperations.RotateRight((uint)value, rotateAmount);
src\libraries\System.Private.CoreLib\src\System\Text\Unicode\Utf8Utility.Transcoding.cs (1)
603toCheck = BitOperations.RotateRight(toCheck, 8);
src\libraries\System.Private.CoreLib\src\System\Text\Unicode\Utf8Utility.Validation.cs (1)
608thisDWord = BitOperations.RotateRight(thisDWord, 8);
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
308public static uint RotateRight(uint value, int rotateAmount) => BitOperations.RotateRight(value, rotateAmount);
src\System\Runtime\CompilerServices\VirtualDispatchHelpers.cs (1)
25_hashCode = (int) ((uint)objectMethodTable + (BitOperations.RotateLeft((uint)classHandle, 5)) + (BitOperations.RotateRight((uint)methodHandle, 5)));