Home
last modified time | relevance | path

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

/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()
896 PyDictEntry small_copy[PyDict_MINSIZE]; in PyDict_Clear() local
928 memcpy(small_copy, table, sizeof(small_copy)); in PyDict_Clear()
929 table = small_copy; in PyDict_Clear()