(long x, long seed)
| 13 | } |
| 14 | |
| 15 | public static long hash64(long x, long seed) { |
| 16 | x += seed; |
| 17 | x = (x ^ (x >>> 33)) * 0xff51afd7ed558ccdL; |
| 18 | x = (x ^ (x >>> 33)) * 0xc4ceb9fe1a85ec53L; |
| 19 | x = x ^ (x >>> 33); |
| 20 | return x; |
| 21 | } |
| 22 | |
| 23 | public static long randomSeed() { |
| 24 | return random.nextLong(); |
no outgoing calls
no test coverage detected