(int h1, int length)
| 139 | |
| 140 | // Finalization mix - force all bits of a hash block to avalanche |
| 141 | private static int fmix(int h1, int length){ |
| 142 | h1 ^= length; |
| 143 | h1 ^= h1 >>> 16; |
| 144 | h1 *= 0x85ebca6b; |
| 145 | h1 ^= h1 >>> 13; |
| 146 | h1 *= 0xc2b2ae35; |
| 147 | h1 ^= h1 >>> 16; |
| 148 | return h1; |
| 149 | } |
| 150 | |
| 151 | } |
no outgoing calls
no test coverage detected