Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Ddictobject.c211 (mp)->ma_table = (mp)->ma_smalltable; \
216 memset((mp)->ma_smalltable, 0, sizeof((mp)->ma_smalltable)); \
271 assert (mp->ma_table == mp->ma_smalltable); in PyDict_New()
621 is_oldtable_malloced = oldtable != mp->ma_smalltable; in dictresize()
625 newtable = mp->ma_smalltable; in dictresize()
911 table_is_malloced = table != mp->ma_smalltable; in PyDict_Clear()
1043 if (mp->ma_table != mp->ma_smalltable) in dict_dealloc()
2186 if (mp->ma_table != mp->ma_smalltable) in dict_sizeof()
/external/python/cpython2/Include/
Ddictobject.h88 PyDictEntry ma_smalltable[PyDict_MINSIZE]; member