Searched refs:newtable (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Objects/ |
D | setobject.c | 234 setentry *oldtable, *newtable, *entry; in set_table_resize() local 256 newtable = so->smalltable; in set_table_resize() 257 if (newtable == oldtable) { in set_table_resize() 274 newtable = PyMem_NEW(setentry, newsize); in set_table_resize() 275 if (newtable == NULL) { in set_table_resize() 282 assert(newtable != oldtable); in set_table_resize() 283 memset(newtable, 0, sizeof(setentry) * newsize); in set_table_resize() 285 so->table = newtable; in set_table_resize() 293 set_insert_clean(newtable, newmask, entry->key, entry->hash); in set_table_resize() 300 set_insert_clean(newtable, newmask, entry->key, entry->hash); in set_table_resize() [all …]
|