| 32 | } |
| 33 | |
| 34 | __forceinline unsigned int MurmurHash3_finalize(unsigned int hash) |
| 35 | { |
| 36 | hash ^= hash >> 16; |
| 37 | hash *= 0x85ebca6b; |
| 38 | hash ^= hash >> 13; |
| 39 | hash *= 0xc2b2ae35; |
| 40 | hash ^= hash >> 16; |
| 41 | |
| 42 | return hash; |
| 43 | } |
| 44 | |
| 45 | __forceinline unsigned int LCG_next(unsigned int value) |
| 46 | { |
no outgoing calls
no test coverage detected