Home
last modified time | relevance | path

Searched refs:Hash_table (Results 1 – 2 of 2) sorted by relevance

/external/bison/lib/
Dhash.h69 typedef struct hash_table Hash_table; typedef
72 size_t hash_get_n_buckets (const Hash_table *) _GL_ATTRIBUTE_PURE;
73 size_t hash_get_n_buckets_used (const Hash_table *) _GL_ATTRIBUTE_PURE;
74 size_t hash_get_n_entries (const Hash_table *) _GL_ATTRIBUTE_PURE;
75 size_t hash_get_max_bucket_length (const Hash_table *) _GL_ATTRIBUTE_PURE;
76 bool hash_table_ok (const Hash_table *) _GL_ATTRIBUTE_PURE;
77 void hash_print_statistics (const Hash_table *, FILE *);
78 void *hash_lookup (const Hash_table *, const void *);
81 void *hash_get_first (const Hash_table *) _GL_ATTRIBUTE_PURE;
82 void *hash_get_next (const Hash_table *, const void *);
[all …]
Dhash.c150 hash_get_n_buckets (const Hash_table *table) in hash_get_n_buckets()
158 hash_get_n_buckets_used (const Hash_table *table) in hash_get_n_buckets_used()
166 hash_get_n_entries (const Hash_table *table) in hash_get_n_entries()
174 hash_get_max_bucket_length (const Hash_table *table) in hash_get_max_bucket_length()
201 hash_table_ok (const Hash_table *table) in hash_table_ok()
230 hash_print_statistics (const Hash_table *table, FILE *stream) in hash_print_statistics()
249 safe_hasher (const Hash_table *table, const void *key) in safe_hasher()
261 hash_lookup (const Hash_table *table, const void *entry) in hash_lookup()
288 hash_get_first (const Hash_table *table) in hash_get_first()
307 hash_get_next (const Hash_table *table, const void *entry) in hash_get_next()
[all …]