Home
last modified time | relevance | path

Searched refs:small_copy (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Objects/
Dsetobject.c224 setentry small_copy[PySet_MINSIZE]; in set_table_resize() local
255 memcpy(small_copy, oldtable, sizeof(small_copy)); in set_table_resize()
256 oldtable = small_copy; in set_table_resize()
390 setentry small_copy[PySet_MINSIZE]; in set_clear_internal() local
409 memcpy(small_copy, table, sizeof(small_copy)); in set_clear_internal()
410 table = small_copy; in set_clear_internal()
/external/python/cpython2/Objects/
Dsetobject.c277 setentry small_copy[PySet_MINSIZE]; in set_table_resize() local
311 memcpy(small_copy, oldtable, sizeof(small_copy)); in set_table_resize()
312 oldtable = small_copy; in set_table_resize()
454 setentry small_copy[PySet_MINSIZE]; in set_clear_internal() local
482 memcpy(small_copy, table, sizeof(small_copy)); in set_clear_internal()
483 table = small_copy; in set_clear_internal()
Ddictobject.c604 PyDictEntry small_copy[PyDict_MINSIZE]; in dictresize() local
638 memcpy(small_copy, oldtable, sizeof(small_copy)); in dictresize()
639 oldtable = small_copy; in dictresize()
941 PyDictEntry small_copy[PyDict_MINSIZE]; in PyDict_Clear() local
973 memcpy(small_copy, table, sizeof(small_copy)); in PyDict_Clear()
974 table = small_copy; in PyDict_Clear()