Lines Matching refs:oldtable
220 setentry *oldtable, *newtable, *entry; in set_table_resize() local
236 oldtable = so->table; in set_table_resize()
237 assert(oldtable != NULL); in set_table_resize()
238 is_oldtable_malloced = oldtable != so->smalltable; in set_table_resize()
243 if (newtable == oldtable) { in set_table_resize()
255 memcpy(small_copy, oldtable, sizeof(small_copy)); in set_table_resize()
256 oldtable = small_copy; in set_table_resize()
268 assert(newtable != oldtable); in set_table_resize()
277 for (entry = oldtable; entry <= oldtable + oldmask; entry++) { in set_table_resize()
284 for (entry = oldtable; entry <= oldtable + oldmask; entry++) { in set_table_resize()
292 PyMem_DEL(oldtable); in set_table_resize()