Searched refs:hash_tbl (Results 1 - 1 of 1) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/dhcp6/
H A Dhash.c55 struct hash_table *hash_tbl; local
56 hash_tbl = malloc(sizeof(struct hash_table));
57 if (!hash_tbl) {
61 hash_tbl->hash_list = malloc(sizeof(struct hashlist_element *)*hash_size);
63 hash_tbl->hash_list[i] = NULL;
65 hash_tbl->hash_count = 0;
66 hash_tbl->hash_size = hash_size;
67 hash_tbl->hash_function = hash_function;
68 hash_tbl->find_hashkey = find_hashkey;
69 hash_tbl
73 hash_add(struct hash_table *hash_tbl, const void *key, void *data) argument
97 hash_delete(struct hash_table *hash_tbl, const void *key) argument
121 hash_search(struct hash_table *hash_tbl, const void *key) argument
136 hash_full(struct hash_table *hash_tbl) argument
142 grow_hash(struct hash_table *hash_tbl) argument
[all...]

Completed in 90 milliseconds