Lines Matching refs:item
35 mf_hashitem_T *item; in test_mf_hash() local
70 item = LALLOC_CLEAR_ONE(mf_hashitem_T); in test_mf_hash()
71 assert(item != NULL); in test_mf_hash()
72 item->mhi_key = key; in test_mf_hash()
73 mf_hash_add_item(&ht, item); in test_mf_hash()
75 assert(mf_hash_find(&ht, key) == item); in test_mf_hash()
89 item = mf_hash_find(&ht, key); in test_mf_hash()
90 assert(item != NULL); in test_mf_hash()
91 assert(item->mhi_key == key); in test_mf_hash()
100 item = mf_hash_find(&ht, key); in test_mf_hash()
101 assert(item != NULL); in test_mf_hash()
102 assert(item->mhi_key == key); in test_mf_hash()
104 mf_hash_rem_item(&ht, item); in test_mf_hash()
107 mf_hash_add_item(&ht, item); in test_mf_hash()
108 assert(mf_hash_find(&ht, key) == item); in test_mf_hash()
110 mf_hash_rem_item(&ht, item); in test_mf_hash()
113 vim_free(item); in test_mf_hash()
121 item = mf_hash_find(&ht, key); in test_mf_hash()
125 assert(item == NULL); in test_mf_hash()
129 assert(item != NULL); in test_mf_hash()
130 assert(item->mhi_key == key); in test_mf_hash()