Home | History | Annotate | Download | only in Objects

Lines Matching refs:dictptr

854         PyObject **dictptr = _PyObject_GetDictPtr(self);
855 if (dictptr && *dictptr)
856 Py_VISIT(*dictptr);
910 PyObject **dictptr = _PyObject_GetDictPtr(self);
911 if (dictptr && *dictptr)
912 Py_CLEAR(*dictptr);
1031 PyObject **dictptr = _PyObject_GetDictPtr(self);
1032 if (dictptr != NULL) {
1033 PyObject *dict = *dictptr;
1036 *dictptr = NULL;
1872 PyObject **dictptr;
1892 dictptr = _PyObject_GetDictPtr(obj);
1893 if (dictptr == NULL) {
1898 dict = *dictptr;
1900 *dictptr = dict = PyDict_New();
1908 PyObject **dictptr;
1928 dictptr = _PyObject_GetDictPtr(obj);
1929 if (dictptr == NULL) {
1940 dict = *dictptr;
1942 *dictptr = value;