HomeSort by relevance Sort by last modified time
    Searched defs:HashTable (Results 1 - 9 of 9) sorted by null

  /bootable/recovery/minzip/
Hash.h 61 typedef struct HashTable {
67 } HashTable;
70 * Create and initialize a HashTable structure, using "initialSize" as
77 HashTable* mzHashTableCreate(size_t initialSize, HashFreeFunc freeFunc);
90 void mzHashTableClear(HashTable* pHashTable);
95 void mzHashTableFree(HashTable* pHashTable);
100 INLINE int mzHashTableNumEntries(HashTable* pHashTable) {
107 INLINE int mzHashTableMemUsage(HashTable* pHashTable) {
108 return sizeof(HashTable) + pHashTable->tableSize * sizeof(HashEntry);
120 void* mzHashTableLookup(HashTable* pHashTable, unsigned int itemHash, void* item
    [all...]
  /external/llvm/lib/Support/
StringMap.cpp 66 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1);
77 HashTable[FirstTombstone] = FullHashValue;
81 HashTable[BucketNo] = FullHashValue;
88 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
121 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1);
132 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
183 /// the appropriate mod-of-hashtable-size.
186 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1);
214 unsigned FullHash = HashTable[I];
  /external/giflib/
gif_lib_private.h 53 GifHashTableType *HashTable;
  /bionic/libc/bionic/
malloc_debug_common.h 69 struct HashTable {
108 typedef bool (*MallocDebugInit)(HashTable*, const MallocDebug*);
  /external/chromium_org/base/
id_map.h 39 typedef base::hash_map<KeyType, T*> HashTable;
83 typename HashTable::iterator i = data_.find(id);
102 for (typename HashTable::iterator i = data_.begin();
115 typename HashTable::const_iterator i = data_.find(id);
204 typename HashTable::const_iterator iter_;
216 static inline void release_all(HashTable* table) {}
221 static inline void release_all(HashTable* table) {
222 for (typename HashTable::iterator i = table->begin();
251 HashTable data_;
  /external/clang/include/clang/Basic/
IdentifierTable.h 420 HashTableTy HashTable;
441 return HashTable.getAllocator();
448 HashTable.GetOrCreateValue(Name);
490 HashTable.GetOrCreateValue(Name);
515 iterator begin() const { return HashTable.begin(); }
516 iterator end() const { return HashTable.end(); }
517 unsigned size() const { return HashTable.size(); }
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashTable.h 93 class HashTable;
108 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator> HashTableType;
115 friend class HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>;
148 // HashTable and collections that build on it do not support
209 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator> HashTableType;
216 friend class HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>;
364 class HashTable : public HashTableDestructorBase<HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>, Allocator::isGarbageCollected> {
377 typedef HashTableAddResult<HashTable, ValueType> AddResult;
411 dataLogF("\nWTF::HashTable::Stats dump\n\n")
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 561 llvm::Type *HashTable = llvm::ArrayType::get(IntPtrTy, CacheSize);
562 llvm::Value *Cache = CGM.CreateRuntimeVariable(HashTable,
    [all...]
  /external/chromium_org/v8/src/
objects.h 73 // - HashTable
    [all...]

Completed in 1010 milliseconds