4 references to RuntimeBitOperations
Microsoft.CodeAnalysis.Workspaces (4)
src\Compilers\Core\Portable\Hashing\XxHash128.cs (1)
270
uint combinedh =
RuntimeBitOperations
.RotateLeft(BinaryPrimitives.ReverseEndianness(combinedl), 13);
Workspace\Solution\SolutionState.CachingFilePathComparer.cs (3)
99
hash1 = (
RuntimeBitOperations
.RotateLeft(hash1, 5) + hash1) ^ (p0 | NormalizeToLowercase);
100
hash2 = (
RuntimeBitOperations
.RotateLeft(hash2, 5) + hash2) ^ (p1 | NormalizeToLowercase);
112
hash2 = (
RuntimeBitOperations
.RotateLeft(hash2, 5) + hash2) ^ (p0 | NormalizeToLowercase);