Home | History | Annotate | Download | only in Objects

Lines Matching refs:dictptr

834         PyObject **dictptr = _PyObject_GetDictPtr(self);

835 if (dictptr && *dictptr)
836 Py_VISIT(*dictptr);
890 PyObject **dictptr = _PyObject_GetDictPtr(self);
891 if (dictptr && *dictptr)
892 Py_CLEAR(*dictptr);
1011 PyObject **dictptr = _PyObject_GetDictPtr(self);
1012 if (dictptr != NULL) {
1013 PyObject *dict = *dictptr;
1016 *dictptr = NULL;
1842 PyObject **dictptr;
1862 dictptr = _PyObject_GetDictPtr(obj);
1863 if (dictptr == NULL) {
1868 dict = *dictptr;
1870 *dictptr = dict = PyDict_New();
1878 PyObject **dictptr;
1898 dictptr = _PyObject_GetDictPtr(obj);
1899 if (dictptr == NULL) {
1910 dict = *dictptr;
1912 *dictptr = value;