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

  /external/opencore/baselibs/gen_data_structures/src/
hashtable.h 100 template <class keyclass, class hashclass> class HashTable
103 HashTable(int in_hash_table_size);
105 ~HashTable();
133 template <class keyclass, class hashclass> int HashTable<keyclass, hashclass>::is_unique(const keyclass& key)
156 int HashTable<keyclass, hashclass>::add_element(const keyclass& fullkey,
169 int HashTable<keyclass, hashclass>::add_element(uint32 key,
200 int HashTable<keyclass, hashclass>::remove_element(const keyclass& fullkey)
209 int HashTable<keyclass, hashclass>::remove_element(uint32 key,
238 int HashTable<keyclass, hashclass>::get_element(const keyclass& fullkey,
250 int HashTable<keyclass, hashclass>::get_element(uint32 key
    [all...]
  /sdk/emulator/qtools/
hash_table.h 10 class HashTable {
12 HashTable(int size, T default_value = T());
13 ~HashTable();
42 HashTable<T>::HashTable(int size, T default_value)
64 HashTable<T>::~HashTable()
84 uint32_t HashTable<T>::HashFunction(const char *key)
96 void HashTable<T>::Update(const char *key, T value)
125 bool HashTable<T>::Remove(const char *key
    [all...]
  /bionic/libc/bionic/
malloc_debug_common.h 64 typedef struct HashTable HashTable;
65 struct HashTable {
  /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...]
  /dalvik/vm/
Hash.h 73 typedef struct HashTable {
80 } HashTable;
83 * Create and initialize a HashTable structure, using "initialSize" as
90 HashTable* dvmHashTableCreate(size_t initialSize, HashFreeFunc freeFunc);
103 void dvmHashTableClear(HashTable* pHashTable);
108 void dvmHashTableFree(HashTable* pHashTable);
114 INLINE void dvmHashTableLock(HashTable* pHashTable) {
117 INLINE void dvmHashTableUnlock(HashTable* pHashTable) {
124 INLINE int dvmHashTableNumEntries(HashTable* pHashTable) {
131 INLINE int dvmHashTableMemUsage(HashTable* pHashTable)
    [all...]
  /external/giflib/
gif_lib_private.h 54 GifHashTableType *HashTable;
  /external/webkit/JavaScriptCore/runtime/
Lookup.h 107 struct HashTable {
168 * This method does it all (looking in the hashtable, checking for function
174 inline bool getStaticPropertySlot(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& slot)
190 inline bool getStaticPropertyDescriptor(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertyDescriptor& descriptor)
213 inline bool getStaticFunctionSlot(ExecState* exec, const HashTable* table, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot)
232 inline bool getStaticFunctionDescriptor(ExecState* exec, const HashTable* table, JSObject* thisObj, const Identifier& propertyName, PropertyDescriptor& descriptor)
252 inline bool getStaticValueSlot(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& slot)
270 inline bool getStaticValueDescriptor(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertyDescriptor& descriptor)
290 inline bool lookupPut(ExecState* exec, const Identifier& propertyName, JSValue value, const HashTable* table, ThisImp* thisObj)
315 inline void lookupPut(ExecState* exec, const Identifier& propertyName, JSValue value, const HashTable* table, ThisImp* thisObj, PutPropertySlot& slot
    [all...]
  /external/webkit/JavaScriptCore/wtf/
HashTable.h 68 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>*,
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>;
285 class HashTable {
294 HashTable();
    [all...]
  /external/v8/src/
objects.h 71 // - HashTable
    [all...]

Completed in 266 milliseconds