Lines Matching full:item
175 void* dvmHashTableLookup(HashTable* pHashTable, u4 itemHash, void* item,
183 assert(item != HASH_TOMBSTONE);
184 assert(item != NULL);
192 (*cmpFunc)(pEntry->data, item) == 0)
212 pEntry->data = item;
235 result = item;
249 * Does NOT invoke the "free" function on the item.
251 bool dvmHashTableRemove(HashTable* pHashTable, u4 itemHash, void* item)
262 if (pEntry->data == item) {
288 * Does NOT invoke the "free" function on the item.
343 static int countProbes(HashTable* pHashTable, u4 itemHash, const void* item,
351 assert(item != HASH_TOMBSTONE);
352 assert(item != NULL);
360 (*cmpFunc)(pEntry->data, item) == 0)