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