Lines Matching refs:new_table
322 struct type **new_table; \
333 if ((new_table = mallocfn(new_len*sizeof(struct type*)))) { \
335 memset(new_table, 0, new_len*sizeof(struct type*)); \
343 elm->field.hte_next = new_table[b2]; \
344 new_table[b2] = elm; \
350 head->hth_table = new_table; \
353 new_table = reallocfn(head->hth_table, new_len*sizeof(struct type*)); \
354 if (!new_table) return -1; \
355 memset(new_table + head->hth_table_length, 0, \
359 for (pE = &new_table[b], e = *pE; e != NULL; e = *pE) { \
365 e->field.hte_next = new_table[b2]; \
366 new_table[b2] = e; \
370 head->hth_table = new_table; \