Lines Matching refs:new_table
323 struct type **new_table; \
334 if ((new_table = mallocfn(new_len*sizeof(struct type*)))) { \
336 memset(new_table, 0, new_len*sizeof(struct type*)); \
344 elm->field.hte_next = new_table[b2]; \
345 new_table[b2] = elm; \
351 head->hth_table = new_table; \
354 new_table = reallocfn(head->hth_table, new_len*sizeof(struct type*)); \
355 if (!new_table) return -1; \
356 memset(new_table + head->hth_table_length, 0, \
360 for (pE = &new_table[b], e = *pE; e != NULL; e = *pE) { \
366 e->field.hte_next = new_table[b2]; \
367 new_table[b2] = e; \
371 head->hth_table = new_table; \