Lines Matching refs:stringtable_entry
61 struct stringtable_entry **new_entries in stringtable_rehash()
66 for (struct stringtable_entry *e = table->entries[i]; e != NULL; ) in stringtable_rehash()
68 struct stringtable_entry *next = e->next; in stringtable_rehash()
81 struct stringtable_entry *
94 for (struct stringtable_entry *e in stringtable_add()
109 struct stringtable_entry *e in stringtable_add()
110 = xmalloc (offsetof (struct stringtable_entry, string) + length + 1); in stringtable_add()
125 struct stringtable_entry *left = *(struct stringtable_entry **) l; in finalize_compare()
126 struct stringtable_entry *right = *(struct stringtable_entry **) r; in finalize_compare()
160 struct stringtable_entry **array = xcalloc (table->count, sizeof (*array)); in stringtable_finalize()
164 for (struct stringtable_entry *e = table->entries[i]; e != NULL; in stringtable_finalize()
178 struct stringtable_entry *previous = array[j - 1]; in stringtable_finalize()
179 struct stringtable_entry *current = array[j]; in stringtable_finalize()
193 struct stringtable_entry *last = array[table->count - 1]; in stringtable_finalize()
205 for (struct stringtable_entry *e = table->entries[i]; e != NULL; in stringtable_finalize()