Lines Matching refs:ENTRY
55 } ENTRY; typedef
58 ENTRY **h_table; /* Pointer to an array of ENTRY'ies */
70 ENTRY *i_e;
110 h->h_table = exmalloc(initialCapacity * sizeof (ENTRY *)); in h_create()
112 (void) memset(h->h_table, 0, initialCapacity * sizeof (ENTRY *)); in h_create()
137 ENTRY *e; in h_get()
157 ENTRY **newtab = exmalloc(newtabSize * sizeof (ENTRY *)); in rehash()
159 (void) memset(newtab, 0, newtabSize * sizeof (ENTRY *)); in rehash()
162 ENTRY *e, *next; in rehash()
167 next = (ENTRY *) e->e_next; in rehash()
168 e->e_next = (ENTRY *) newtab[k]; in rehash()
191 ENTRY *e; in h_put()
203 e = exmalloc(sizeof (ENTRY)); in h_put()
227 ENTRY *e, *prev; in h_delete()