Searched refs:DEFAULT_LOAD_FACTOR (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DKeyIntMap.java49 static final float DEFAULT_LOAD_FACTOR = 0.75f; field in class:KeyIntMap
100 _loadFactor = DEFAULT_LOAD_FACTOR;
101 _threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR);
106 this(initialCapacity, DEFAULT_LOAD_FACTOR);
111 _loadFactor = DEFAULT_LOAD_FACTOR;
112 _threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR);
H A DFixedEntryStringIntMap.java49 this(fixedEntry, initialCapacity, DEFAULT_LOAD_FACTOR);
53 this(fixedEntry, DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
H A DCharArrayIntMap.java79 this(initialCapacity, DEFAULT_LOAD_FACTOR);
83 this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
H A DLocalNameQualifiedNamesMap.java74 this(initialCapacity, DEFAULT_LOAD_FACTOR);
78 this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
H A DStringIntMap.java64 this(initialCapacity, DEFAULT_LOAD_FACTOR);
68 this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
/openjdk7/jdk/src/share/classes/java/util/
H A DWeakHashMap.java150 private static final float DEFAULT_LOAD_FACTOR = 0.75f; field in class:WeakHashMap
290 this(initialCapacity, DEFAULT_LOAD_FACTOR);
298 this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
312 this(Math.max((int) (m.size() / DEFAULT_LOAD_FACTOR) + 1,
314 DEFAULT_LOAD_FACTOR);
H A DHashMap.java144 static final float DEFAULT_LOAD_FACTOR = 0.75f; field in class:HashMap
273 this(initialCapacity, DEFAULT_LOAD_FACTOR);
281 this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR);
294 this(Math.max((int) (m.size() / DEFAULT_LOAD_FACTOR) + 1,
295 DEFAULT_INITIAL_CAPACITY), DEFAULT_LOAD_FACTOR);
/openjdk7/hotspot/test/compiler/6865031/
H A DTest.java163 private static final float DEFAULT_LOAD_FACTOR = 0.75f; field in class:WeakPool
174 this.loadFactor = DEFAULT_LOAD_FACTOR;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DQNameMap.java81 private static final float DEFAULT_LOAD_FACTOR = 0.75f; field in class:QNameMap
91 threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DQNameMap.java81 private static final float DEFAULT_LOAD_FACTOR = 0.75f; field in class:QNameMap
91 threshold = (int)(DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentHashMap.java142 static final float DEFAULT_LOAD_FACTOR = 0.75f; field in class:ConcurrentHashMap
861 this(initialCapacity, DEFAULT_LOAD_FACTOR, DEFAULT_CONCURRENCY_LEVEL);
869 this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR, DEFAULT_CONCURRENCY_LEVEL);
881 this(Math.max((int) (m.size() / DEFAULT_LOAD_FACTOR) + 1,
883 DEFAULT_LOAD_FACTOR, DEFAULT_CONCURRENCY_LEVEL);
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java1036 private static final float DEFAULT_LOAD_FACTOR = 0.75f; field in class:MethodType.WeakInternSet
1062 this.loadFactor = DEFAULT_LOAD_FACTOR;

Completed in 53 milliseconds