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