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

/external/giflib/
H A Dgif_lib_private.h54 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
213 unsigned FullHash = HashTable[I];
/external/chromium/base/
H A Did_map.h38 typedef base::hash_map<KeyType, T*> HashTable; typedef in class:IDMap
82 typename HashTable::iterator i = data_.find(id);
103 typename HashTable::const_iterator i = data_.find(id);
164 typename HashTable::const_iterator iter_;
176 static inline void release_all(HashTable* table) {}
181 static inline void release_all(HashTable* table) {
182 for (typename HashTable::iterator i = table->begin();
211 HashTable data_;
/external/webkit/Source/JavaScriptCore/runtime/
H A DLookup.h123 struct HashTable { struct in namespace:JSC
190 inline bool getStaticPropertySlot(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& slot)
206 inline bool getStaticPropertyDescriptor(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertyDescriptor& descriptor)
229 inline bool getStaticFunctionSlot(ExecState* exec, const HashTable* table, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot)
248 inline bool getStaticFunctionDescriptor(ExecState* exec, const HashTable* table, JSObject* thisObj, const Identifier& propertyName, PropertyDescriptor& descriptor)
268 inline bool getStaticValueSlot(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& slot)
286 inline bool getStaticValueDescriptor(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertyDescriptor& descriptor)
306 inline bool lookupPut(ExecState* exec, const Identifier& propertyName, JSValue value, const HashTable* table, ThisImp* thisObj)
331 inline void lookupPut(ExecState* exec, const Identifier& propertyName, JSValue value, const HashTable* table, ThisImp* thisObj, PutPropertySlot& slot)
/external/clang/include/clang/Basic/
H A DIdentifierTable.h414 HashTableTy HashTable; member in class:clang::IdentifierTable
435 return HashTable.getAllocator();
442 HashTable.GetOrCreateValue(Name);
484 HashTable.GetOrCreateValue(Name);
509 iterator begin() const { return HashTable.begin(); }
510 iterator end() const { return HashTable.end(); }
511 unsigned size() const { return HashTable.size(); }
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Datom.c215 } HashTable; typedef in typeref:struct:HashTable_Rec
222 static int InitHashTable(HashTable *htable, int fsize)
245 static void FreeHashTable(HashTable *htable)
259 static int Empty(HashTable *htable, int hashloc)
274 static int Match(HashTable *htable, StringTable *stable, const char *s, int hashloc)
295 HashTable htable; // Hashes string to atom number and token value. Multiple strings can
/external/webkit/Source/JavaScriptCore/wtf/
H A DHashTable.h68 class HashTable;
75 void addIterator(const HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>*,
84 inline void addIterator(const HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>*, argument
97 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> HashTableType;
104 friend class HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>;
214 // Any modifications of the m_next or m_previous of an iterator that is in a linked list of a HashTable::m_iterator,
225 typedef HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits> HashTableType;
232 friend class HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>;
287 class HashTable { class in namespace:WTF
296 HashTable();
429 inline HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::HashTable() function in class:WTF::HashTable
953 HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::HashTable(const HashTable& other) function in class:WTF::HashTable
1066 addIterator(const HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>* table, HashTableConstIterator<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>* it) argument
[all...]
/external/v8/src/
H A Dobjects.h75 // - HashTable
833 V(HashTable) \
2652 // HashTable is a subclass of FixedArray that implements a hash table
2702 class HashTable: public FixedArray { class in namespace:v8::internal
2753 // Returns a new HashTable object. Might return Failure.
2759 // number of elements. May be more than HashTable::kMaxCapacity.
2776 static inline HashTable* cast(Object* obj);
2798 // Maximal capacity of HashTable. Based on maximal length of underlying
2854 MUST_USE_RESULT MaybeObject* Rehash(HashTable* new_table, Key key);
2906 class SymbolTable: public HashTable<SymbolTableShap
[all...]

Completed in 193 milliseconds