Home
last modified time | relevance | path

Searched refs:DEFAULT_LOAD_FACTOR (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
DWeakHashMap.java155 private static final float DEFAULT_LOAD_FACTOR = 0.75f; field in WeakHashMap
233 this(initialCapacity, DEFAULT_LOAD_FACTOR); in WeakHashMap()
241 this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR); in WeakHashMap()
255 this(Math.max((int) (m.size() / DEFAULT_LOAD_FACTOR) + 1, in WeakHashMap()
257 DEFAULT_LOAD_FACTOR); in WeakHashMap() local
DHashMap.java247 static final float DEFAULT_LOAD_FACTOR = 0.75f; field in HashMap
467 this(initialCapacity, DEFAULT_LOAD_FACTOR); in HashMap()
475 this.loadFactor = DEFAULT_LOAD_FACTOR; // all other fields defaulted in HashMap()
488 this.loadFactor = DEFAULT_LOAD_FACTOR; in HashMap()
694 newThr = (int)(DEFAULT_LOAD_FACTOR * DEFAULT_INITIAL_CAPACITY); in resize()
/libcore/ojluni/annotations/hiddenapi/java/util/
DHashMap.java259 static final float DEFAULT_LOAD_FACTOR = 0.75f; field in HashMap