HomeSort by relevance Sort by last modified time
    Searched refs:rehash (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/libcxx/test/std/containers/unord/unord.map/
rehash.pass.cpp 16 // void rehash(size_type n);
58 c.rehash(3);
63 c.rehash(3);
67 c.rehash(31);
89 c.rehash(3);
94 c.rehash(3);
98 c.rehash(31);
eq.pass.cpp 84 c2.rehash(30);
152 c2.rehash(30);
  /external/libcxx/test/std/containers/unord/unord.multiset/
rehash.pass.cpp 16 // void rehash(size_type n);
57 c.rehash(3);
62 c.rehash(3);
66 c.rehash(31);
88 c.rehash(3);
93 c.rehash(3);
97 c.rehash(31);
eq.pass.cpp 92 c2.rehash(30);
169 c2.rehash(30);
  /external/libcxx/test/std/containers/unord/unord.set/
rehash.pass.cpp 16 // void rehash(size_type n);
57 c.rehash(3);
62 c.rehash(3);
66 c.rehash(31);
88 c.rehash(3);
93 c.rehash(3);
97 c.rehash(31);
eq.pass.cpp 83 c2.rehash(30);
148 c2.rehash(30);
  /external/libcxx/test/std/containers/unord/unord.multimap/
rehash.pass.cpp 16 // void rehash(size_type n);
102 c.rehash(3);
107 c.rehash(3);
111 c.rehash(31);
133 c.rehash(3);
138 c.rehash(3);
142 c.rehash(31);
eq.pass.cpp 93 c2.rehash(30);
170 c2.rehash(30);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CalendarCache.java 50 rehash(); method
73 private void rehash() method in class:CalendarCache
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarCache.java 48 rehash(); method
71 private void rehash() method in class:CalendarCache
  /external/mesa3d/src/util/
set.c 43 * From Knuth -- a good choice for hash/rehash values is p, p-2 where
52 uint32_t max_entries, size, rehash; member in struct:__anon34488
119 ht->rehash = hash_sizes[ht->size_index].rehash;
182 double_hash = 1 + hash % ht->rehash;
228 ht->rehash = hash_sizes[ht->size_index].rehash;
247 * Note that insertion may rearrange the table on a resize or rehash,
292 double_hash = 1 + hash % ht->rehash;
set.h 49 uint32_t rehash; member in struct:set
88 * insertion (which may rehash the set, making entry a dangling
hash_table.c 55 * From Knuth -- a good choice for hash/rehash values is p, p-2 where
60 uint32_t max_entries, size, rehash; member in struct:__anon34483
127 ht->rehash = hash_sizes[ht->size_index].rehash;
228 double_hash = 1 + hash % ht->rehash;
280 ht->rehash = hash_sizes[ht->size_index].rehash;
341 double_hash = 1 + hash % ht->rehash;
365 * Note that insertion may rearrange the table on a resize or rehash,
hash_table.h 53 uint32_t rehash; member in struct:hash_table
136 * (which may rehash the table, making entry a dangling pointer).
  /external/emma/core/java12/com/vladium/util/
IntObjectMap.java 187 if (m_size >= m_sizeThreshold) rehash (); method
242 private void rehash () method in class:IntObjectMap
253 // rehash all entry chains in every bucket:
IntSet.java 159 if (m_size >= m_sizeThreshold) rehash (); method
214 private void rehash () method in class:IntSet
225 // rehash all entry chains in every bucket:
IntIntMap.java 198 if (m_size >= m_sizeThreshold) rehash (); method
284 private void rehash () method in class:IntIntMap
295 // rehash all entry chains in every bucket:
ObjectIntMap.java 191 if (m_size >= m_sizeThreshold) rehash (); method
280 private void rehash () method in class:ObjectIntMap
291 // rehash all entry chains in every bucket:
SoftValueMap.java 278 if (m_size >= m_sizeThreshold) rehash (); method
470 private void rehash () method in class:SoftValueMap
483 // rehash all entry chains in every bucket:
529 if (m_size > newSize) System.out.println ("DEBUG: rehash() cleared " + (m_size - newSize) + " values, new size = " + newSize);
540 * See comments below for why this is safe wrt to rehash().
553 if (bucketIndex >= 0) // skip keys that were already removed by rehash()
555 // [assertion: this reference was not cleared when the last rehash() ran and so its m_bucketIndex is correct]
590 // else: it has already been removed by rehash() or other methods
  /external/libcxx/benchmarks/
ContainerBenchmarks.hpp 42 c.rehash(16);
98 c.rehash(8);
  /external/mesa3d/src/mesa/program/
prog_cache.c 83 rehash(struct gl_program_cache *cache) function
221 rehash(cache);
250 rehash(cache);
  /external/apache-http/src/org/apache/commons/logging/impl/
WeakHashtable.java 315 protected void rehash() {
318 super.rehash();