Home
last modified time | relevance | path

Searched refs:oldtable (Results 1 - 2 of 2) sorted by relevance

/third_party/python/Objects/
H A Dsetobject.c234 setentry *oldtable, *newtable, *entry; in set_table_resize() local
250 oldtable = so->table; in set_table_resize()
251 assert(oldtable != NULL); in set_table_resize()
252 is_oldtable_malloced = oldtable != so->smalltable; in set_table_resize()
257 if (newtable == oldtable) { in set_table_resize()
269 memcpy(small_copy, oldtable, sizeof(small_copy)); in set_table_resize()
270 oldtable = small_copy; in set_table_resize()
282 assert(newtable != oldtable); in set_table_resize()
291 for (entry = oldtable; entry <= oldtable in set_table_resize()
[all...]
/third_party/python/Modules/
H A D_pickle.c849 PyMemoEntry *oldtable = NULL; in _PyMemoTable_ResizeTable() local
869 oldtable = self->mt_table; in _PyMemoTable_ResizeTable()
872 self->mt_table = oldtable; in _PyMemoTable_ResizeTable()
882 for (oldentry = oldtable; to_process > 0; oldentry++) { in _PyMemoTable_ResizeTable()
895 PyMem_Free(oldtable); in _PyMemoTable_ResizeTable()

Completed in 11 milliseconds