Lines Matching defs:hash
39 struct hash { struct
44 struct hash_bucket buckets[]; argument
47 struct hash *hash_new(unsigned int n_buckets, in hash_new() argument
50 struct hash *hash; in hash_new() local
67 void hash_free(struct hash *hash) in hash_free()
95 unsigned int tmp, hash = len, rem = len & 3; in hash_superfast() local
146 int hash_add(struct hash *hash, const char *key, const void *value) in hash_add()
189 int hash_add_unique(struct hash *hash, const char *key, const void *value) in hash_add_unique()
234 void *hash_find(const struct hash *hash, const char *key) in hash_find()
252 int hash_del(struct hash *hash, const char *key) in hash_del()
295 unsigned int hash_get_count(const struct hash *hash) in hash_get_count()
300 void hash_iter_init(const struct hash *hash, struct hash_iter *iter) in hash_iter_init()