Home | History | Annotate | Download | only in util

Lines Matching defs:buckets

46      * @param initialCapacity initial number of hash buckets in the table [may not be negative, 0 is equivalent to 1].
85 final Entry [] buckets = m_buckets;
86 final int bucketIndex = (key & 0x7FFFFFFF) % buckets.length;
89 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
145 Entry [] buckets = m_buckets;
146 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
161 buckets = m_buckets;
162 bucketIndex = (key & 0x7FFFFFFF) % buckets.length;
163 final Entry bucketListHead = buckets [bucketIndex];
165 buckets [bucketIndex] = newEntry;
212 * Re-hashes the table into a new array of buckets.
220 final Entry [] buckets = m_buckets;
226 for (int b = 0; b < buckets.length; ++ b)
228 for (Entry entry = buckets [b]; entry != null; )
252 private Entry [] m_buckets; // table of buckets