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