Home
last modified time | relevance | path

Searched refs:mhi_next (Results 1 – 2 of 2) sorted by relevance

/vim-8.2.3635/src/
H A Dmemfile.c1355 next = mhi->mhi_next; in mf_hash_free_all()
1373 mhi = mhi->mhi_next; in mf_hash_find()
1388 mhi->mhi_next = mht->mht_buckets[idx]; in mf_hash_add_item()
1390 if (mhi->mhi_next != NULL) in mf_hash_add_item()
1391 mhi->mhi_next->mhi_prev = mhi; in mf_hash_add_item()
1419 mht->mht_buckets[mhi->mhi_key & mht->mht_mask] = mhi->mhi_next; in mf_hash_rem_item()
1421 mhi->mhi_prev->mhi_next = mhi->mhi_next; in mf_hash_rem_item()
1423 if (mhi->mhi_next != NULL) in mf_hash_rem_item()
1424 mhi->mhi_next->mhi_prev = mhi->mhi_prev; in mf_hash_rem_item()
1482 tails[j]->mhi_next = mhi; in mf_hash_grow()
[all …]
H A Dstructs.h485 mf_hashitem_T *mhi_next; member