MCPcopy Create free account
hub / github.com/AngusJohnson/Clipper2 / MixFinal

Method MixFinal

CSharp/Clipper2Lib/HashCode.cs:97–106  ·  view source on GitHub ↗
(uint hash)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected