(uint hash)
| 95 | } |
| 96 | |
| 97 | [MethodImpl(MethodImplOptions.AggressiveInlining)] |
| 98 | private static uint MixFinal(uint hash) |
| 99 | { |
| 100 | hash ^= hash >> 15; |
| 101 | hash *= Prime2; |
| 102 | hash ^= hash >> 13; |
| 103 | hash *= Prime3; |
| 104 | hash ^= hash >> 16; |
| 105 | return hash; |
| 106 | } |
| 107 | |
| 108 | [MethodImpl(MethodImplOptions.AggressiveInlining)] |
| 109 | public static uint RotateLeft(uint value, int offset) |
nothing calls this directly
no outgoing calls
no test coverage detected