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)
150
return BitOperations.
RotateRight
(value & 0x00FF00FFu, 8) // xx zz
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
313
public 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)
603
toCheck = BitOperations.
RotateRight
(toCheck, 8);
src\libraries\System.Private.CoreLib\src\System\Text\Unicode\Utf8Utility.Validation.cs (1)
608
thisDWord = BitOperations.
RotateRight
(thisDWord, 8);
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
308
public 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)));