/third_party/python/Objects/ |
D | object.c | 1130 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() 1221 PyObject **dictptr; in _PyObject_GenericGetAttrWithDict() local 1268 dictptr = (PyObject **) ((char *)obj + dictoffset); in _PyObject_GenericGetAttrWithDict() 1269 dict = *dictptr; in _PyObject_GenericGetAttrWithDict() 1332 PyObject **dictptr; in _PyObject_GenericSetAttrWithDict() local 1367 dictptr = _PyObject_GetDictPtr(obj); in _PyObject_GenericSetAttrWithDict() 1368 if (dictptr == NULL) { in _PyObject_GenericSetAttrWithDict() 1381 res = _PyObjectDict_SetItem(tp, dictptr, name, value); in _PyObject_GenericSetAttrWithDict() [all …]
|
D | dictobject.c | 4992 PyObject *dict, **dictptr = _PyObject_GetDictPtr(obj); in PyObject_GenericGetDict() local 4993 if (dictptr == NULL) { in PyObject_GenericGetDict() 4998 dict = *dictptr; in PyObject_GenericGetDict() 5003 *dictptr = dict = new_dict_with_shared_keys(CACHED_KEYS(tp)); in PyObject_GenericGetDict() 5006 *dictptr = dict = PyDict_New(); in PyObject_GenericGetDict() 5014 _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, in _PyObjectDict_SetItem() argument 5021 assert(dictptr != NULL); in _PyObjectDict_SetItem() 5023 assert(dictptr != NULL); in _PyObjectDict_SetItem() 5024 dict = *dictptr; in _PyObjectDict_SetItem() 5030 *dictptr = dict; in _PyObjectDict_SetItem() [all …]
|
D | typeobject.c | 1230 PyObject **dictptr = _PyObject_GetDictPtr(self); in subtype_traverse() local 1231 if (dictptr && *dictptr) in subtype_traverse() 1232 Py_VISIT(*dictptr); in subtype_traverse() 1291 PyObject **dictptr = _PyObject_GetDictPtr(self); in subtype_clear() local 1292 if (dictptr && *dictptr) in subtype_clear() 1293 Py_CLEAR(*dictptr); in subtype_clear() 1432 PyObject **dictptr = _PyObject_GetDictPtr(self); in subtype_dealloc() local 1433 if (dictptr != NULL) { in subtype_dealloc() 1434 PyObject *dict = *dictptr; in subtype_dealloc() 1437 *dictptr = NULL; in subtype_dealloc() [all …]
|
D | exceptions.c | 2944 PyObject **dictptr; in _PyErr_TrySetFromCause() local 2990 dictptr = _PyObject_GetDictPtr(val); in _PyErr_TrySetFromCause() 2991 if (dictptr != NULL && *dictptr != NULL && in _PyErr_TrySetFromCause() 2992 PyDict_GET_SIZE(*dictptr) > 0) { in _PyErr_TrySetFromCause()
|
/third_party/python/Include/cpython/ |
D | dictobject.h | 72 int _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, PyObject *name, PyObject *value);
|
/third_party/f2fs-tools/fsck/ |
D | dict.c | 68 #define dictptr dict_dictptr macro 1026 load->dictptr = dict; in load_begin_internal() 1039 dict_t *dict = load->dictptr; in dict_load_next() 1063 dict_t *dict = load->dictptr; in dict_load_end()
|
/third_party/e2fsprogs/lib/support/ |
D | dict.c | 73 #define dictptr dict_dictptr macro 1066 load->dictptr = dict; in load_begin_internal() 1079 dict_t *dict = load->dictptr; in dict_load_next() 1103 dict_t *dict = load->dictptr; in dict_load_end()
|
/third_party/python/Tools/gdb/ |
D | libpython.py | 511 dictptr = self._gdbval.cast(_type_char_ptr()) + dictoffset 513 dictptr = dictptr.cast(PyObjectPtrPtr) 514 return PyObjectPtr.from_pyobject_ptr(dictptr.dereference())
|
/third_party/flutter/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 2268 PyObject **dictptr = _PyObject_GetDictPtr(pyobj); in SWIG_Python_GetSwigThis() local 2269 if (dictptr != NULL) { in SWIG_Python_GetSwigThis() 2270 PyObject *dict = *dictptr; in SWIG_Python_GetSwigThis() 2493 PyObject **dictptr = _PyObject_GetDictPtr(inst); in SWIG_Python_NewShadowInstance() local 2494 if (dictptr != NULL) { in SWIG_Python_NewShadowInstance() 2495 PyObject *dict = *dictptr; in SWIG_Python_NewShadowInstance() 2498 *dictptr = dict; in SWIG_Python_NewShadowInstance() 2563 PyObject **dictptr = _PyObject_GetDictPtr(inst); in SWIG_Python_SetSwigThis() local 2564 if (dictptr != NULL) { in SWIG_Python_SetSwigThis() 2565 dict = *dictptr; in SWIG_Python_SetSwigThis() [all …]
|
/third_party/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 2289 PyObject **dictptr = _PyObject_GetDictPtr(pyobj); in SWIG_Python_GetSwigThis() local 2290 if (dictptr != NULL) { in SWIG_Python_GetSwigThis() 2291 PyObject *dict = *dictptr; in SWIG_Python_GetSwigThis() 2514 PyObject **dictptr = _PyObject_GetDictPtr(inst); in SWIG_Python_NewShadowInstance() local 2515 if (dictptr != NULL) { in SWIG_Python_NewShadowInstance() 2516 PyObject *dict = *dictptr; in SWIG_Python_NewShadowInstance() 2519 *dictptr = dict; in SWIG_Python_NewShadowInstance() 2584 PyObject **dictptr = _PyObject_GetDictPtr(inst); in SWIG_Python_SetSwigThis() local 2585 if (dictptr != NULL) { in SWIG_Python_SetSwigThis() 2586 dict = *dictptr; in SWIG_Python_SetSwigThis() [all …]
|
/third_party/python/Modules/ |
D | _datetimemodule.c | 3765 PyObject **dictptr; in tzinfo_reduce() local 3767 dictptr = _PyObject_GetDictPtr(self); in tzinfo_reduce() 3768 if (dictptr && *dictptr && PyDict_GET_SIZE(*dictptr)) { in tzinfo_reduce() 3769 state = *dictptr; in tzinfo_reduce()
|
/third_party/python/Python/ |
D | ceval.c | 3412 PyObject **dictptr; in _PyEval_EvalFrameDefault() local 3448 dictptr = (PyObject **) ((char *)owner + type->tp_dictoffset); in _PyEval_EvalFrameDefault() 3449 dict = *dictptr; in _PyEval_EvalFrameDefault() 3546 dictptr = (PyObject **) ((char *)owner + type->tp_dictoffset); in _PyEval_EvalFrameDefault() 3547 dict = *dictptr; in _PyEval_EvalFrameDefault()
|