Lines Matching refs:dynhash
58 /* Hash and eq functions for the dynhash and hash. */
140 /* The dynhash, used for hashes whose size is not known at creation time. */
161 ctf_dynhash_t *dynhash;
165 dynhash = malloc (sizeof (ctf_dynhash_t));
169 dynhash = p;
171 if (!dynhash)
177 if ((dynhash->htab = htab_create_alloc (nelems, (htab_hash) hash_fun, eq_fun,
180 free (dynhash);
186 dynhash->key_free = key_free;
187 dynhash->value_free = value_free;
190 return dynhash;
407 /* Traverse a dynhash in arbitrary order, in _next iterator form.
409 Adding entries to the dynhash while iterating is not supported (just as it
514 /* Traverse a sorted dynhash, in _next iterator form.