Home | History | Annotate | Download | only in vm

Lines Matching refs:item

25 /* compute the hash of an item with a specific type */
26 typedef u4 (*HashCompute)(const void* item);
29 * Compare a hash entry with a "loose" item after their hash values match.
138 * If "item" is not found, and "doAdd" is false, NULL is returned.
139 * Otherwise, a pointer to the found or added item is returned. (You can
140 * tell the difference by seeing if return value == item.)
145 void* dvmHashTableLookup(HashTable* pHashTable, u4 itemHash, void* item,
149 * Remove an item from the hash table, given its "data" pointer. Does not
152 bool dvmHashTableRemove(HashTable* pHashTable, u4 hash, void* item);
217 typedef u4 (*HashCalcFunc)(const void* item);