Home
last modified time | relevance | path

Searched refs:dictptr (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Objects/
Dobject.c1090 PyObject **dictptr, *dict; in _PyObject_GetMethod() local
1120 dictptr = _PyObject_GetDictPtr(obj); in _PyObject_GetMethod()
1121 if (dictptr != NULL && (dict = *dictptr) != NULL) { in _PyObject_GetMethod()
1179 PyObject **dictptr; in _PyObject_GenericGetAttrWithDict() local
1226 dictptr = (PyObject **) ((char *)obj + dictoffset); in _PyObject_GenericGetAttrWithDict()
1227 dict = *dictptr; in _PyObject_GenericGetAttrWithDict()
1290 PyObject **dictptr; in _PyObject_GenericSetAttrWithDict() local
1325 dictptr = _PyObject_GetDictPtr(obj); in _PyObject_GenericSetAttrWithDict()
1326 if (dictptr == NULL) { in _PyObject_GenericSetAttrWithDict()
1339 res = _PyObjectDict_SetItem(tp, dictptr, name, value); in _PyObject_GenericSetAttrWithDict()
[all …]
Ddictobject.c4779 PyObject *dict, **dictptr = _PyObject_GetDictPtr(obj); in PyObject_GenericGetDict() local
4780 if (dictptr == NULL) { in PyObject_GenericGetDict()
4785 dict = *dictptr; in PyObject_GenericGetDict()
4790 *dictptr = dict = new_dict_with_shared_keys(CACHED_KEYS(tp)); in PyObject_GenericGetDict()
4793 *dictptr = dict = PyDict_New(); in PyObject_GenericGetDict()
4801 _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, in _PyObjectDict_SetItem() argument
4808 assert(dictptr != NULL); in _PyObjectDict_SetItem()
4810 assert(dictptr != NULL); in _PyObjectDict_SetItem()
4811 dict = *dictptr; in _PyObjectDict_SetItem()
4817 *dictptr = dict; in _PyObjectDict_SetItem()
[all …]
Dtypeobject.c1123 PyObject **dictptr = _PyObject_GetDictPtr(self); in subtype_traverse() local
1124 if (dictptr && *dictptr) in subtype_traverse()
1125 Py_VISIT(*dictptr); in subtype_traverse()
1184 PyObject **dictptr = _PyObject_GetDictPtr(self); in subtype_clear() local
1185 if (dictptr && *dictptr) in subtype_clear()
1186 Py_CLEAR(*dictptr); in subtype_clear()
1317 PyObject **dictptr = _PyObject_GetDictPtr(self); in subtype_dealloc() local
1318 if (dictptr != NULL) { in subtype_dealloc()
1319 PyObject *dict = *dictptr; in subtype_dealloc()
1322 *dictptr = NULL; in subtype_dealloc()
[all …]
Dexceptions.c2796 PyObject **dictptr; in _PyErr_TrySetFromCause() local
2842 dictptr = _PyObject_GetDictPtr(val); in _PyErr_TrySetFromCause()
2843 if (dictptr != NULL && *dictptr != NULL && in _PyErr_TrySetFromCause()
2844 PyDict_GET_SIZE(*dictptr) > 0) { in _PyErr_TrySetFromCause()
/third_party/python/Include/cpython/
Ddictobject.h77 int _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, PyObject *name, PyObject *value);
/third_party/e2fsprogs/lib/support/
Ddict.c73 #define dictptr dict_dictptr macro
1056 load->dictptr = dict; in load_begin_internal()
1069 dict_t *dict = load->dictptr; in dict_load_next()
1093 dict_t *dict = load->dictptr; in dict_load_end()
/third_party/f2fs-tools/fsck/
Ddict.c68 #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/python/Tools/gdb/
Dlibpython.py511 dictptr = self._gdbval.cast(_type_char_ptr()) + dictoffset
513 dictptr = dictptr.cast(PyObjectPtrPtr)
514 return PyObjectPtr.from_pyobject_ptr(dictptr.dereference())
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c2289 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/flutter/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c2268 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/python/Modules/
D_datetimemodule.c3774 PyObject **dictptr; in tzinfo_reduce() local
3776 dictptr = _PyObject_GetDictPtr(self); in tzinfo_reduce()
3777 if (dictptr && *dictptr && PyDict_GET_SIZE(*dictptr)) { in tzinfo_reduce()
3778 state = *dictptr; in tzinfo_reduce()