Home
last modified time | relevance | path

Searched refs:PyDict_MINSIZE (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Ddictobject.h48 #define PyDict_MINSIZE 8 macro
88 PyDictEntry ma_smalltable[PyDict_MINSIZE];
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Ddictobject.h48 #define PyDict_MINSIZE 8 macro
88 PyDictEntry ma_smalltable[PyDict_MINSIZE];
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Ddictobject.c212 (mp)->ma_mask = PyDict_MINSIZE - 1; \
272 assert (mp->ma_mask == PyDict_MINSIZE - 1); in PyDict_New()
604 PyDictEntry small_copy[PyDict_MINSIZE]; in dictresize()
609 for (newsize = PyDict_MINSIZE; in dictresize()
623 if (newsize == PyDict_MINSIZE) { in dictresize()
866 PyDictEntry small_copy[PyDict_MINSIZE]; in PyDict_Clear()
Ddictnotes.txt77 * PyDict_MINSIZE. Currently set to 8.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Ddictobject.c212 (mp)->ma_mask = PyDict_MINSIZE - 1; \
272 assert (mp->ma_mask == PyDict_MINSIZE - 1); in PyDict_New()
593 PyDictEntry small_copy[PyDict_MINSIZE]; in dictresize()
598 for (newsize = PyDict_MINSIZE; in dictresize()
612 if (newsize == PyDict_MINSIZE) { in dictresize()
841 PyDictEntry small_copy[PyDict_MINSIZE]; in PyDict_Clear()
Ddictnotes.txt77 * PyDict_MINSIZE. Currently set to 8.