11 references to RotateLeft
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\NodeFactory.NativeLayout.cs (2)
270hashcode = int.RotateLeft(hashcode, 5); 303hashcode = int.RotateLeft(hashcode, 5);
System.Private.CoreLib (9)
Internal\Runtime\CompilerServices\OpenMethodResolver.cs (6)
182hash1 = (hash1 + int.RotateLeft(hash1, 5)) ^ hashCode1; 183hash2 = (hash2 + int.RotateLeft(hash2, 5)) ^ hashCode2; 184hash1 = (hash1 + int.RotateLeft(hash1, 5)) ^ hashCode3; 185hash2 = (hash2 + int.RotateLeft(hash2, 5)) ^ hashCode4; 187hash1 += int.RotateLeft(hash1, 8); 188hash2 += int.RotateLeft(hash2, 8);
System\RuntimeFieldHandle.cs (1)
56return (hashcode + int.RotateLeft(hashcode, 13)) ^ info->Handle.GetHashCode();
System\RuntimeMethodHandle.cs (2)
74hashcode = (hashcode + int.RotateLeft(hashcode, 13)) ^ info->Handle.GetHashCode(); 78hashcode = (hashcode + int.RotateLeft(hashcode, 13)) ^ argumentHashCode;