Lines Matching refs:ht_vec
48 ht->ht_vec = (void**) CALLOC (struct token *, ht->ht_size); in hash_init()
49 if (ht->ht_vec == 0) in hash_init()
97 slot = &ht->ht_vec[hash_1]; in hash_find_slot()
181 void **vec = ht->ht_vec; in hash_free_items()
197 void **vec = ht->ht_vec; in hash_delete_items()
218 free (ht->ht_vec); in hash_free()
219 ht->ht_vec = 0; in hash_free()
227 void **end = &ht->ht_vec[ht->ht_size]; in hash_map()
229 for (slot = ht->ht_vec; slot < end; slot++) in hash_map()
240 void **end = &ht->ht_vec[ht->ht_size]; in hash_map_arg()
242 for (slot = ht->ht_vec; slot < end; slot++) in hash_map_arg()
255 void **old_vec = ht->ht_vec; in hash_rehash()
264 ht->ht_vec = (void **) CALLOC (struct token *, ht->ht_size); in hash_rehash()
299 void **end = &ht->ht_vec[ht->ht_size]; in hash_dump()
305 for (slot = ht->ht_vec; slot < end; slot++) in hash_dump()