(int h1, int k1)
| 131 | } |
| 132 | |
| 133 | private static int mixH1(int h1, int k1){ |
| 134 | h1 ^= k1; |
| 135 | h1 = Integer.rotateLeft(h1, 13); |
| 136 | h1 = h1 * 5 + 0xe6546b64; |
| 137 | return h1; |
| 138 | } |
| 139 | |
| 140 | // Finalization mix - force all bits of a hash block to avalanche |
| 141 | private static int fmix(int h1, int length){ |
no outgoing calls
no test coverage detected