Lines Matching refs:hashidx
544 uint_t hashidx; in i_mod_hash_insert_nosync() local
563 hashidx = i_mod_hash(hash, key); in i_mod_hash_insert_nosync()
566 entry->mhe_next = hash->mh_entries[hashidx]; in i_mod_hash_insert_nosync()
568 hash->mh_entries[hashidx] = entry; in i_mod_hash_insert_nosync()
669 int hashidx; in i_mod_hash_remove_nosync() local
672 hashidx = i_mod_hash(hash, key); in i_mod_hash_remove_nosync()
675 for (e = hash->mh_entries[hashidx]; e != NULL; e = e->mhe_next) { in i_mod_hash_remove_nosync()
686 hash->mh_entries[hashidx] = e->mhe_next; in i_mod_hash_remove_nosync()
773 uint_t hashidx; in i_mod_hash_find_nosync() local
776 hashidx = i_mod_hash(hash, key); in i_mod_hash_find_nosync()
778 for (e = hash->mh_entries[hashidx]; e != NULL; e = e->mhe_next) { in i_mod_hash_find_nosync()
838 uint_t hashidx; in i_mod_hash_walk_nosync() local
841 for (hashidx = 0; in i_mod_hash_walk_nosync()
842 (hashidx < (hash->mh_nchains - 1)) && (res == MH_WALK_CONTINUE); in i_mod_hash_walk_nosync()
843 hashidx++) { in i_mod_hash_walk_nosync()
844 e = hash->mh_entries[hashidx]; in i_mod_hash_walk_nosync()