Searched refs:newtable (Results 1 – 1 of 1) sorted by relevance
245 struct Entry **oldTable = fTable,**newtable; in Rehash() local250 if (!(newtable = (struct Entry **)malloc(newCapacity * sizeof(struct Entry *)))) in Rehash()252 memset(newtable,0,newCapacity*sizeof(struct Entry *)); in Rehash()256 fTable = newtable; in Rehash()267 entry->next = newtable[index]; in Rehash()268 newtable[index] = entry; in Rehash()