Lines Matching refs:alloc_f
289 htab_del del_f, htab_alloc alloc_f, htab_free free_f) in htab_create_alloc() argument
297 result = (htab_t) (*alloc_f) (1, sizeof (struct htab)); in htab_create_alloc()
300 result->entries = (PTR *) (*alloc_f) (size, sizeof (PTR)); in htab_create_alloc()
312 result->alloc_f = alloc_f; in htab_create_alloc()
323 htab_alloc_with_arg alloc_f, in htab_create_alloc_ex() argument
332 result = (htab_t) (*alloc_f) (alloc_arg, 1, sizeof (struct htab)); in htab_create_alloc_ex()
335 result->entries = (PTR *) (*alloc_f) (alloc_arg, size, sizeof (PTR)); in htab_create_alloc_ex()
348 result->alloc_with_arg_f = alloc_f; in htab_create_alloc_ex()
358 htab_alloc_with_arg alloc_f, htab_free_with_arg free_f) in htab_set_functions_ex() argument
364 htab->alloc_with_arg_f = alloc_f; in htab_set_functions_ex()
503 nentries = (PTR *) (*htab->alloc_f) (nsize, sizeof (PTR *)); in htab_expand()