(uint hash, uint queuedValue)
| 84 | } |
| 85 | |
| 86 | [MethodImpl(MethodImplOptions.AggressiveInlining)] |
| 87 | private static uint QueueRound(uint hash, uint queuedValue) |
| 88 | { |
| 89 | return RotateLeft(hash + (queuedValue * Prime3), 17) * Prime4; |
| 90 | } |
| 91 | |
| 92 | private static uint MixEmptyState() |
| 93 | { |
nothing calls this directly
no outgoing calls
no test coverage detected