Home | History | Annotate | Download | only in shared

Lines Matching full:hash_entry

28 struct hash_entry {
34 struct hash_entry *entries;
78 struct hash_entry *entry, *entry_end;
152 struct hash_entry *entry, *entry_end;
156 size_t size = new_total * sizeof(struct hash_entry);
157 struct hash_entry *tmp = realloc(bucket->entries, size);
176 (entry_end - entry) * sizeof(struct hash_entry));
195 struct hash_entry *entry, *entry_end;
199 size_t size = new_total * sizeof(struct hash_entry);
200 struct hash_entry *tmp = realloc(bucket->entries, size);
215 (entry_end - entry) * sizeof(struct hash_entry));
229 const struct hash_entry *a = pa;
230 const struct hash_entry *b = pb;
240 const struct hash_entry se = {
244 const struct hash_entry *entry = bsearch(
246 sizeof(struct hash_entry), hash_entry_cmp);
259 struct hash_entry *entry, *entry_end;
260 const struct hash_entry se = {
266 sizeof(struct hash_entry), hash_entry_cmp);
275 (entry_end - entry) * sizeof(struct hash_entry));
284 hash->step * sizeof(struct hash_entry);
285 struct hash_entry *tmp = realloc(bucket->entries, size);
311 const struct hash_entry *e;