Lines Matching refs:new_table
317 struct type **new_table; \
328 if ((new_table = mallocfn(new_len*sizeof(struct type*)))) { \
330 memset(new_table, 0, new_len*sizeof(struct type*)); \
338 elm->field.hte_next = new_table[b2]; \
339 new_table[b2] = elm; \
345 head->hth_table = new_table; \
348 new_table = reallocfn(head->hth_table, new_len*sizeof(struct type*)); \
349 if (!new_table) return -1; \
350 memset(new_table + head->hth_table_length, 0, \
354 for (pE = &new_table[b], e = *pE; e != NULL; e = *pE) { \
360 e->field.hte_next = new_table[b2]; \
361 new_table[b2] = e; \
365 head->hth_table = new_table; \