Lines Matching refs:ht_fill
57 ht->ht_fill = 0; in hash_init()
142 ht->ht_fill++; in hash_insert_at()
171 ht->ht_fill--; in hash_delete_at()
190 ht->ht_fill = 0; in hash_free_items()
201 ht->ht_fill = 0; in hash_delete_items()
215 ht->ht_fill = 0; in hash_free()
258 if (ht->ht_fill >= ht->ht_capacity) in hash_rehash()
274 ht->ht_empty_slots = ht->ht_size - ht->ht_fill; in hash_rehash()
282 fprintf (out_FILE, _("Load=%ld/%ld=%.0f%%, "), ht->ht_fill, ht->ht_size, in hash_print_stats()
283 100.0 * (double) ht->ht_fill / (double) ht->ht_size); in hash_print_stats()
302 vector_0 = MALLOC (void *, ht->ht_fill + 1); in hash_dump()
311 qsort (vector_0, ht->ht_fill, sizeof (void *), compare); in hash_dump()