Searched defs:bucketIndex (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DLinkedHashMap.java443 void addEntry(int hash, K key, V value, int bucketIndex) { argument
464 super.addEntry(hash, key, value, bucketIndex);
483 void createEntry(int hash, K key, V value, int bucketIndex) { argument
484 HashMapEntry<K,V> old = table[bucketIndex];
486 table[bucketIndex] = e;
H A DHashMap.java806 void addEntry(int hash, K key, V value, int bucketIndex) { argument
807 if ((size >= threshold) && (null != table[bucketIndex])) {
810 bucketIndex = indexFor(hash, table.length);
813 createEntry(hash, key, value, bucketIndex);
824 void createEntry(int hash, K key, V value, int bucketIndex) { argument
825 HashMapEntry<K,V> e = table[bucketIndex];
826 table[bucketIndex] = new HashMapEntry<>(hash, key, value, e);
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp368 int bucketIndex = hash & (BUCKET_COUNT - 1); local
371 InternedString** bucket = buckets[bucketIndex];
395 buckets[bucketIndex] = bucket;
411 buckets[bucketIndex] = bucket;

Completed in 91 milliseconds