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