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

123

/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_cache.c82 rehash(struct gl_program_cache *cache) function
215 rehash(cache);
243 rehash(cache);
/external/chromium_org/third_party/sqlite/src/src/
H A Dhash.c103 static int rehash(Hash *pH, unsigned int new_size){ function
266 if( rehash(pH, pH->count*2) ){
/external/emma/core/java12/com/vladium/util/
H A DIntObjectMap.java187 if (m_size >= m_sizeThreshold) rehash ();
242 private void rehash () method in class:IntObjectMap
253 // rehash all entry chains in every bucket:
H A DIntSet.java159 if (m_size >= m_sizeThreshold) rehash ();
214 private void rehash () method in class:IntSet
225 // rehash all entry chains in every bucket:
H A DObjectIntMap.java191 if (m_size >= m_sizeThreshold) rehash ();
280 private void rehash () method in class:ObjectIntMap
291 // rehash all entry chains in every bucket:
H A DIntIntMap.java198 if (m_size >= m_sizeThreshold) rehash ();
284 private void rehash () method in class:IntIntMap
295 // rehash all entry chains in every bucket:
H A DSoftValueMap.java278 if (m_size >= m_sizeThreshold) rehash ();
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/mesa3d/src/mesa/program/
H A Dprog_cache.c82 rehash(struct gl_program_cache *cache) function
215 rehash(cache);
243 rehash(cache);
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dft_hash.c231 static void rehash(Hash *pH, int new_size){ function
388 rehash(pH,8);
396 rehash(pH,pH->htsize*2);
H A Dfts1_hash.c189 static void rehash(fts1Hash *pH, int new_size){ function
351 rehash(pH,8);
359 rehash(pH,pH->htsize*2);
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_hash.c194 static void rehash(fts2Hash *pH, int new_size){ function
356 rehash(pH,8);
364 rehash(pH,pH->htsize*2);
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java315 protected void rehash() { method in class:WeakHashtable
318 super.rehash();
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DExpandedNameTable.java34 * code. We only need to implement the rehash() interface which is used to
212 rehash();
245 private void rehash() method in class:ExpandedNameTable
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_state_cache.c107 rehash(struct brw_cache *cache) function
305 rehash(cache);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_cache.c107 rehash(struct brw_cache *cache) function
305 rehash(cache);
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dltable.c343 static void rehash (lua_State *L, Table *t, const TValue *ek) { function
415 rehash(L, t, key); /* grow table */
/external/openfst/src/include/fst/
H A Dbi-table.h126 void rehash(size_t n) { } function in struct:fst::HashSet
200 keys_.rehash(0);
/external/stlport/stlport/stl/
H A D_hashtable.c365 ::rehash(size_type __num_buckets_hint) { function in class:_All
413 * rehash operation. */
H A D_unordered_map.h188 void rehash(size_type __hint) { _M_ht.rehash(__hint); } function in class:unordered_map
348 void rehash(size_type __hint) { _M_ht.rehash(__hint); } function in class:unordered_multimap
H A D_unordered_set.h174 void rehash(size_type __hint) { _M_ht.rehash(__hint); } function in class:unordered_set
324 void rehash(size_type __hint) { _M_ht.rehash(__hint); } function in class:unordered_multiset
/external/stlport/stlport/stl/debug/
H A D_hashtable.h305 void rehash(size_type __num_buckets_hint) { _M_non_dbg_impl.rehash(__num_buckets_hint); } function in class:hashtable
/external/ltrace/
H A Ddict.c252 * rehash. */
271 rehash(struct dict *dict, size_t nn) function
369 rehash:
370 if (rehash(dict, larger_size(n(dict))) < 0)
382 /* If rehash was requested, do that, and retry. But just live
386 goto rehash;
438 rehash(dict, smaller);
/external/dnsmasq/src/
H A Dcache.c70 static void rehash(int size);
96 rehash(daemon->cachesize);
101 will be much too small, so the hosts reading code calls rehash every 1000 addresses, to
103 static void rehash(int size) function
814 /* rehash every 1000 names. */
817 rehash(name_count);
861 rehash(name_count);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashTable.h304 // If rehash happened before accessing storedValue, it's
305 // use-after-free. Any modification may cause a rehash, so we check
522 void shrink() { rehash(m_tableSize / 2, 0); }
524 ValueType* rehash(unsigned newTableSize, ValueType* entry);
1047 return rehash(newSize, entry);
1051 Value* HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::rehash(unsigned newTableSize, Value* entry) function in class:WTF::HashTable
1190 // We don't rehash the backing until the next add
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java1846 static int rehash(int h) { method in class:LocalCache
1889 return rehash(h);

Completed in 755 milliseconds

123