6 references to RotateLeft
Microsoft.AspNetCore.App.CodeFixes (6)
src\Shared\HashCode.cs (6)
271
return BitOperations.
RotateLeft
(hash + (input * Prime2), 13) * Prime1;
277
return BitOperations.
RotateLeft
(hash + (queuedValue * Prime3), 17) * Prime4;
283
return BitOperations.
RotateLeft
(v1, 1) + BitOperations.
RotateLeft
(v2, 7) + BitOperations.
RotateLeft
(v3, 12) + BitOperations.
RotateLeft
(v4, 18);