Here you can find the source of intHash(int i)
public static int intHash(int i)
//package com.java2s; //License from project: Open Source License public class Main { public static int intHash(int i) { return (i << 16) | (i >>> 16); }//from w ww .j a v a 2s.c o m }