Home | History | Annotate | Download | only in internal

Lines Matching refs:hashCode

45         int hashCode = 0;
47 hashCode = (hashCode * 31) + array[i];
51 hashCode ^= (hashCode >>> 20) ^ (hashCode >>> 12);
52 hashCode ^= (hashCode >>> 7) ^ (hashCode >>> 4);
53 int index = hashCode & (pool.length - 1);