5 references to RotateLeft
System.Private.CoreLib (5)
src\runtime\src\coreclr\nativeaot\Runtime.Base\src\System\Runtime\CachedInterfaceDispatch.cs (1)
54
IntPtr context = (IntPtr)System.Numerics.BitOperations.
RotateLeft
((nuint)_dispatchCell, 16);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
344
public static nint RotateLeft(nint value, int rotateAmount) => (nint)BitOperations.
RotateLeft
((nuint)value, rotateAmount);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\CastCache.cs (1)
95
nuint hash = BitOperations.
RotateLeft
(source, (nuint.Size * 8) / 2) ^ target;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
339
public static nuint RotateLeft(nuint value, int rotateAmount) => BitOperations.
RotateLeft
(value, rotateAmount);
System\Runtime\TypeLoaderExports.cs (1)
57
IntPtr context = (IntPtr)BitOperations.
RotateLeft
((nuint)_context, 16);