Lines Matching defs:oldtable
234 setentry *oldtable, *newtable, *entry;
250 oldtable = so->table;
251 assert(oldtable != NULL);
252 is_oldtable_malloced = oldtable != so->smalltable;
257 if (newtable == oldtable) {
269 memcpy(small_copy, oldtable, sizeof(small_copy));
270 oldtable = small_copy;
282 assert(newtable != oldtable);
291 for (entry = oldtable; entry <= oldtable + oldmask; entry++) {
298 for (entry = oldtable; entry <= oldtable + oldmask; entry++) {
306 PyMem_Free(oldtable);