Home | History | Annotate | Download | only in util

Lines Matching refs:bucketIndex

88         final int bucketIndex = (key & 0x7FFFFFFF) % buckets.length;
91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
112 final int bucketIndex = (key & 0x7FFFFFFF) % buckets.length;
115 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
131 final int bucketIndex = (key & 0x7FFFFFFF) % buckets.length;
134 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
175 int bucketIndex = (key & 0x7FFFFFFF) % m_buckets.length;
179 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
201 bucketIndex = (key & 0x7FFFFFFF) % buckets.length;
202 final Entry bucketListHead = buckets [bucketIndex];
204 buckets [bucketIndex] = newEntry;
218 final int bucketIndex = (key & 0x7FFFFFFF) % m_buckets.length;
222 for (Entry entry = buckets [bucketIndex], prev = entry; entry != null; )
229 buckets [bucketIndex] = next;