Lines Matching defs:hash_index
161 int hash_index;
165 hash_index = kstat_record_hash(ks_name, ks_module, ks_instance,
174 if (hash_index >= 0 &&
176 hash_entry = hash_head[hash_index];
214 int hash_index;
235 hash_index = kstat_record_hash(ksp->ks_name, ksp->ks_module,
237 if (hash_index < 0)
250 ks_entry->next_entry = hash_head[hash_index];
252 hash_head[hash_index] = ks_entry;
259 int hash_index;
268 hash_index = kstat_record_hash(ksp->ks_name, ksp->ks_module,
272 * If hash_index < 0 then there is not enough information in the ksp to
275 if (hash_index < 0)
279 hash_entry = hash_head[hash_index];
290 hash_head[hash_index] =
291 hash_head[hash_index]->next_entry;