Lines Matching refs:dictptr
1129 PyObject **dictptr, *dict; in _PyObject_GetMethod() local
1160 dictptr = _PyObject_GetDictPtr(obj); in _PyObject_GetMethod()
1161 if (dictptr != NULL && (dict = *dictptr) != NULL) { in _PyObject_GetMethod()
1213 PyObject **dictptr; in _PyObject_GenericGetAttrWithDict() local
1262 dictptr = (PyObject **) ((char *)obj + dictoffset); in _PyObject_GenericGetAttrWithDict()
1263 dict = *dictptr; in _PyObject_GenericGetAttrWithDict()
1316 PyObject **dictptr; in _PyObject_GenericSetAttrWithDict() local
1343 dictptr = _PyObject_GetDictPtr(obj); in _PyObject_GenericSetAttrWithDict()
1344 if (dictptr == NULL) { in _PyObject_GenericSetAttrWithDict()
1357 res = _PyObjectDict_SetItem(tp, dictptr, name, value); in _PyObject_GenericSetAttrWithDict()
1385 PyObject **dictptr = _PyObject_GetDictPtr(obj); in PyObject_GenericSetDict() local
1386 if (dictptr == NULL) { in PyObject_GenericSetDict()
1402 Py_XSETREF(*dictptr, value); in PyObject_GenericSetDict()