Searched defs:rehash (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DSimpleHashtable.java197 private void rehash() { method in class:SimpleHashtable
208 System.out.println("rehash old=" + oldCapacity
255 rehash();
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCache.java204 protected void rehash() { method in class:Cache
214 // System.out.println("rehash old=" + oldCapacity + ", new=" +
263 rehash();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DHashtable.java184 protected void rehash() { method in class:Hashtable
235 rehash();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DIdentityHashtable.java244 protected void rehash() { method in class:IdentityHashtable
254 //System.out.println("rehash old=" + oldCapacity + ", new=" + newCapacity + ", thresh=" + threshold + ", count=" + count);
305 rehash();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DLongHashMap.java169 * rehash). This field is used to make iterators on Collection-views of
335 rehash();
427 void rehash() { method in class:LongHashMap
/openjdk7/jdk/src/windows/native/sun/windows/
H A DHashtable.cpp98 void Hashtable::rehash() { function in class:Hashtable
143 rehash();
/openjdk7/jdk/src/share/classes/sun/text/
H A DIntHashtable.java59 rehash();
80 rehash();
91 rehash();
151 // a rehash. Can be tuned for different performance/storage characteristics.
156 // a rehash. Can be tuned for different performance/storage characteristics.
191 private void rehash() { method in class:IntHashtable
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DExpandedNameTable.java36 * code. We only need to implement the rehash() interface which is used to
214 rehash();
247 private void rehash() method in class:ExpandedNameTable
/openjdk7/jdk/src/share/classes/java/lang/
H A DThreadLocal.java446 rehash();
510 // to remove or rehash all of the other entries in run.
632 private void rehash() { method in class:ThreadLocal.ThreadLocalMap
/openjdk7/jdk/src/share/classes/java/util/
H A DLinkedHashMap.java251 void transfer(HashMap.Entry[] newTable, boolean rehash) { argument
254 if (rehash)
H A DHashtable.java46 * the implementation. The exact details as to when and whether the rehash
55 * need for <code>rehash</code> operations, which are time-consuming.
56 * No <code>rehash</code> operations will <i>ever</i> occur if the initial
118 * @see Hashtable#rehash()
158 * rehash). This field is used to make iterators on Collection-views of
459 protected void rehash() { method in class:Hashtable
475 boolean rehash = initHashSeedAsNeeded(newCapacity);
484 if (rehash) {
532 rehash();
H A DHashMap.java64 * number of rehash operations. If the initial capacity is greater
66 * rehash operations will ever occur.
180 * rehash). This field is used to make iterators on Collection-views of
593 void transfer(Entry[] newTable, boolean rehash) { argument
598 if (rehash) {
H A DWeakHashMap.java181 * (e.g., rehash). This field is used to make iterators on
564 boolean rehash = oldAltHashing ^ useAltHashing;
565 transfer(oldTable, newTable, rehash);
583 private void transfer(Entry<K,V>[] src, Entry<K,V>[] dest, boolean rehash) { argument
595 if (rehash) {
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DNameSpaceSymbTable.java337 rehash(newCapacity);
375 protected void rehash(int newCapacity) { method in class:SymbMap
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLinkedHashMap.java49 * increased by calling the rehash method which requires time proportional
126 * rehash). This field is used to make iterators on Collection-views of
285 private void rehash() { method in class:LinkedHashMap
386 rehash();
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentHashMap.java460 rehash(node);
480 private void rehash(HashEntry<K,V> node) { method in class:ConcurrentHashMap.Segment

Completed in 47 milliseconds