Home | History | Annotate | Download | only in Objects

Lines Matching refs:dictptr

826         PyObject **dictptr = _PyObject_GetDictPtr(self);

827 if (dictptr && *dictptr)
828 Py_VISIT(*dictptr);
995 PyObject **dictptr = _PyObject_GetDictPtr(self);
996 if (dictptr != NULL) {
997 PyObject *dict = *dictptr;
1000 *dictptr = NULL;
1824 PyObject **dictptr;
1844 dictptr = _PyObject_GetDictPtr(obj);
1845 if (dictptr == NULL) {
1850 dict = *dictptr;
1852 *dictptr = dict = PyDict_New();
1860 PyObject **dictptr;
1880 dictptr = _PyObject_GetDictPtr(obj);
1881 if (dictptr == NULL) {
1892 dict = *dictptr;
1894 *dictptr = value;