Searched refs:DEFAULT_LOAD_FACTOR (Results 1 – 3 of 3) sorted by relevance
155 private static final float DEFAULT_LOAD_FACTOR = 0.75f; field in WeakHashMap233 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
247 static final float DEFAULT_LOAD_FACTOR = 0.75f; field in HashMap467 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()
259 static final float DEFAULT_LOAD_FACTOR = 0.75f; field in HashMap