Lines Matching refs:ht
61 hashtab_T *ht; in find_prop_hi() local
67 ht = global_proptypes; in find_prop_hi()
69 ht = buf->b_proptypes; in find_prop_hi()
71 if (ht == NULL) in find_prop_hi()
73 hi = hash_find(ht, name); in find_prop_hi()
572 find_type_by_id(hashtab_T *ht, int id) in find_type_by_id() argument
577 if (ht == NULL) in find_type_by_id()
583 todo = (long)ht->ht_used; in find_type_by_id()
584 for (hi = ht->ht_array; todo > 0; ++hi) in find_type_by_id()
1262 hashtab_T *ht; in f_prop_type_delete() local
1266 ht = global_proptypes; in f_prop_type_delete()
1268 ht = buf->b_proptypes; in f_prop_type_delete()
1269 hash_remove(ht, hi); in f_prop_type_delete()
1325 list_types(hashtab_T *ht, list_T *l) in list_types() argument
1330 todo = (long)ht->ht_used; in list_types()
1331 for (hi = ht->ht_array; todo > 0; ++hi) in list_types()
1375 clear_ht_prop_types(hashtab_T *ht) in clear_ht_prop_types() argument
1380 if (ht == NULL) in clear_ht_prop_types()
1383 todo = (long)ht->ht_used; in clear_ht_prop_types()
1384 for (hi = ht->ht_array; todo > 0; ++hi) in clear_ht_prop_types()
1395 hash_clear(ht); in clear_ht_prop_types()
1396 vim_free(ht); in clear_ht_prop_types()