Searched defs:HashTable (Results 1 - 7 of 7) sorted by relevance

/external/giflib/
H A Dgif_lib_private.h53 GifHashTableType *HashTable; member in struct:GifFilePrivateType
/external/llvm/lib/Support/
H A DStringMap.cpp66 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); local
77 HashTable[FirstTombstone] = FullHashValue;
81 HashTable[BucketNo] = FullHashValue;
88 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
121 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); local
132 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
186 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); local
214 unsigned FullHash = HashTable[I];
/external/chromium_org/base/
H A Did_map.h39 typedef base::hash_map<KeyType, T*> HashTable; typedef in class:IDMap
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/
H A DIdentifierTable.h420 HashTableTy HashTable; member in class:clang::IdentifierTable
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/
H A DHashTable.h93 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> { class in namespace:WTF
377 typedef HashTableAddResult<HashTable, ValueType> AddResult;
411 dataLogF("\nWTF::HashTable
609 inline HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::HashTable() function in class:WTF::HashTable
1104 HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::HashTable(const HashTable& other) function in class:WTF::HashTable
[all...]
/external/clang/lib/CodeGen/
H A DCGExpr.cpp561 llvm::Type *HashTable = llvm::ArrayType::get(IntPtrTy, CacheSize); local
562 llvm::Value *Cache = CGM.CreateRuntimeVariable(HashTable,
/external/chromium_org/v8/src/
H A Dobjects.h73 // - HashTable
965 V(HashTable) \
3137 // HashTable is a subclass of FixedArray that implements a hash table
3187 class HashTable: public FixedArray { class in namespace:v8::internal
3236 // Returns a new HashTable object.
3244 // number of elements. May be more than HashTable::kMaxCapacity.
3260 DECLARE_CAST(HashTable)
3282 // Maximal capacity of HashTable. Based on maximal length of underlying
3408 class StringTable: public HashTable<StringTable,
3468 class MapCache: public HashTable<MapCach
[all...]

Completed in 2949 milliseconds