6 references to BitOperations
Microsoft.CodeAnalysis.AnalyzerUtilities (6)
src\RoslynAnalyzers\Utilities\Compiler\RoslynHashCode.cs (6)
280
return
BitOperations
.RotateLeft(hash + (input * Prime2), 13) * Prime1;
286
return
BitOperations
.RotateLeft(hash + (queuedValue * Prime3), 17) * Prime4;
292
return
BitOperations
.RotateLeft(v1, 1) +
BitOperations
.RotateLeft(v2, 7) +
BitOperations
.RotateLeft(v3, 12) +
BitOperations
.RotateLeft(v4, 18);