Home | History | Annotate | Download | only in omapip

Lines Matching defs:hash_table

61 struct hash_table {
75 struct hash_table *hash;
96 add_hash ((struct hash_table *)table, buf, \
103 delete_hash_entry ((struct hash_table *)table, buf, len, \
111 (struct hash_table *)table, \
117 return hash_report((struct hash_table *)table); \
122 return hash_foreach ((struct hash_table *)table, \
128 return new_hash ((struct hash_table **)tp, \
135 free_hash_table ((struct hash_table **)table, file, line); \
139 int new_hash_table (struct hash_table **, unsigned, const char *, int);
140 void free_hash_table (struct hash_table **, const char *, int);
143 int new_hash(struct hash_table **,
152 unsigned char *hash_report(struct hash_table *);
153 void add_hash (struct hash_table *,
156 void delete_hash_entry (struct hash_table *, const void *,
158 int hash_lookup (hashed_object_t **, struct hash_table *,
160 int hash_foreach (struct hash_table *, hash_foreach_func);