Searched defs:resize (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DThreadLocal.java335 * The next size value at which to resize.
340 * Set the resize threshold to maintain at worst a 2/3 load factor.
675 resize();
681 private void resize() { method in class:ThreadLocal.ThreadLocalMap
/libcore/ojluni/src/main/java/java/util/
H A DIdentityHashMap.java440 if (s + (s << 1) > len && resize(len))
455 * @return whether a resize did in fact take place
457 private boolean resize(int newCapacity) { method in class:IdentityHashMap
503 resize(capacity(n)); // conservatively pre-expand
1320 * The put method for readObject. It does not resize the table,
H A DWeakHashMap.java168 * The next size value at which to resize (capacity * load factor).
466 resize(tab.length * 2);
476 * resize the map, but sets threshold to Integer.MAX_VALUE.
484 void resize(int newCapacity) { method in class:WeakHashMap
552 * to at most one extra resize.
562 resize(newCapacity);
H A DHashMap.java261 * resize operation. Should be less than TREEIFY_THRESHOLD, and at
418 * The next size value at which to resize (capacity * load factor).
510 resize();
628 n = (tab = resize()).length;
662 resize();
676 final Node<K,V>[] resize() { method in class:HashMap
757 resize();
1108 n = (tab = resize()).length;
1182 n = (tab = resize()).length;
1237 n = (tab = resize())
[all...]

Completed in 34 milliseconds