Here you can find the source of hash16(int hash)
public static int hash16(int hash)
//package com.java2s; //License from project: Open Source License public class Main { public static int hash16(int hash) { return hash & 0xffff ^ hash >>> 16; }/* w w w .j a va2 s. c o m*/ }