6 references to RotateRight
System.Net.WebSockets (1)
System\Net\WebSockets\ManagedWebSocket.cs (1)
1499(int)BitOperations.RotateRight((uint)mask, maskIndex * 8) :
System.Private.CoreLib (5)
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)
307public 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)
601toCheck = BitOperations.RotateRight(toCheck, 8);
src\libraries\System.Private.CoreLib\src\System\Text\Unicode\Utf8Utility.Validation.cs (1)
600thisDWord = BitOperations.RotateRight(thisDWord, 8);
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
302public static uint RotateRight(uint value, int rotateAmount) => BitOperations.RotateRight(value, rotateAmount);