Home
last modified time | relevance | path

Searched refs:dictptr (Results 1 - 9 of 9) sorted by relevance

/third_party/python/Objects/
H A Dobject.c1196 PyObject **dictptr = _PyObject_DictPointer(obj); in _PyObject_GetMethod() local
1198 if (dictptr != NULL && (dict = *dictptr) != NULL) { in _PyObject_GetMethod()
1256 PyObject **dictptr; in _PyObject_GenericGetAttrWithDict() local
1299 dictptr = _PyObject_DictPointer(obj); in _PyObject_GenericGetAttrWithDict()
1300 assert(dictptr != NULL && *dictptr == NULL); in _PyObject_GenericGetAttrWithDict()
1301 *dictptr = dict = _PyObject_MakeDictFromInstanceAttributes(obj, *values_ptr); in _PyObject_GenericGetAttrWithDict()
1310 dictptr = _PyObject_DictPointer(obj); in _PyObject_GenericGetAttrWithDict()
1311 if (dictptr) { in _PyObject_GenericGetAttrWithDict()
1408 PyObject **dictptr = _PyObject_DictPointer(obj); _PyObject_GenericSetAttrWithDict() local
1463 PyObject **dictptr = _PyObject_GetDictPtr(obj); PyObject_GenericSetDict() local
[all...]
H A Ddictobject.c5397 PyObject **dictptr = _PyObject_DictPointer(obj); in _PyObject_InitializeDict() local
5398 *dictptr = dict; in _PyObject_InitializeDict()
5514 PyObject **dictptr; in _PyObject_IsInstanceDictEmpty() local
5526 dictptr = _PyObject_ManagedDictPointer(obj); in _PyObject_IsInstanceDictEmpty()
5529 dictptr = _PyObject_DictPointer(obj); in _PyObject_IsInstanceDictEmpty()
5531 PyObject *dict = *dictptr; in _PyObject_IsInstanceDictEmpty()
5595 PyObject **dictptr = _PyObject_ManagedDictPointer(obj); in PyObject_GenericGetDict() local
5597 assert(*dictptr == NULL); in PyObject_GenericGetDict()
5599 *dictptr = dict = make_dict_from_instance_attributes(CACHED_KEYS(tp), *values_ptr); in PyObject_GenericGetDict()
5604 else if (*dictptr in PyObject_GenericGetDict()
5612 PyObject **dictptr = _PyObject_DictPointer(obj); PyObject_GenericGetDict() local
5635 _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, PyObject *key, PyObject *value) _PyObjectDict_SetItem() argument
[all...]
H A Dtypeobject.c1227 PyObject **dictptr = _PyObject_DictPointer(self); in subtype_traverse() local
1228 if (dictptr && *dictptr) in subtype_traverse()
1229 Py_VISIT(*dictptr); in subtype_traverse()
1291 PyObject **dictptr = _PyObject_DictPointer(self); in subtype_clear() local
1292 if (dictptr && *dictptr) in subtype_clear()
1293 Py_CLEAR(*dictptr); in subtype_clear()
1435 PyObject **dictptr = _PyObject_ManagedDictPointer(self); in subtype_dealloc() local
1436 if (*dictptr ! in subtype_dealloc()
1446 PyObject **dictptr = _PyObject_DictPointer(self); subtype_dealloc() local
2345 PyObject **dictptr; subtype_setdict() local
[all...]
/third_party/python/Include/internal/
H A Dpycore_dict.h71 extern int _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, PyObject *name, PyObject *value);
/third_party/f2fs-tools/fsck/
H A Ddict.c67 #define dictptr dict_dictptr macro
1025 load->dictptr = dict; in load_begin_internal()
1038 dict_t *dict = load->dictptr; in dict_load_next()
1062 dict_t *dict = load->dictptr; in dict_load_end()
/third_party/skia/third_party/externals/libwebp/swig/
H A Dlibwebp_python_wrap.c2289 PyObject **dictptr = _PyObject_GetDictPtr(pyobj); in SWIG_Python_GetSwigThis()
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/Tools/gdb/
H A Dlibpython.py489 dictptr = self._gdbval.cast(_type_char_ptr()) + dictoffset
491 dictptr = dictptr.cast(PyObjectPtrPtr)
492 return PyObjectPtr.from_pyobject_ptr(dictptr.dereference())
/third_party/python/Python/
H A Dspecialize.c619 PyObject **dictptr = _PyObject_ManagedDictPointer(owner); in specialize_dict_access() local
620 PyDictObject *dict = (PyDictObject *)*dictptr; in specialize_dict_access()
H A Dceval.c4582 PyDictObject **dictptr = (PyDictObject**)(((char *)self)+dictoffset); local
4587 PyDictObject *dict = *dictptr;

Completed in 37 milliseconds