Lines Matching +defs:key +defs:c
24 char key[0]; member
125 struct dm_hash_node *c, *n; in _free_nodes() local
142 static struct dm_hash_node **_find(struct dm_hash_table *t, const char *key, in _find()
146 struct dm_hash_node **c; in _find() local
159 void *dm_hash_lookup_binary(struct dm_hash_table *t, const char *key, in dm_hash_lookup_binary()
162 struct dm_hash_node **c = _find(t, key, len); in dm_hash_lookup_binary() local
167 int dm_hash_insert_binary(struct dm_hash_table *t, const char *key, in dm_hash_insert_binary()
170 struct dm_hash_node **c = _find(t, key, len); in dm_hash_insert_binary() local
189 void dm_hash_remove_binary(struct dm_hash_table *t, const char *key, in dm_hash_remove_binary()
192 struct dm_hash_node **c = _find(t, key, len); in dm_hash_remove_binary() local
202 void *dm_hash_lookup(struct dm_hash_table *t, const char *key) in dm_hash_lookup()
207 int dm_hash_insert(struct dm_hash_table *t, const char *key, void *data) in dm_hash_insert()
212 void dm_hash_remove(struct dm_hash_table *t, const char *key) in dm_hash_remove()
224 struct dm_hash_node *c, *n; in dm_hash_iter() local
255 struct dm_hash_node *c = NULL; in _next_slot() local