Searched refs:dictoffset (Results 1 – 4 of 4) sorted by relevance
1032 Py_ssize_t dictoffset; in _PyObject_GetDictPtr() local1035 dictoffset = tp->tp_dictoffset; in _PyObject_GetDictPtr()1036 if (dictoffset == 0) in _PyObject_GetDictPtr()1038 if (dictoffset < 0) { in _PyObject_GetDictPtr()1045 dictoffset += (long)size; in _PyObject_GetDictPtr()1046 _PyObject_ASSERT(obj, dictoffset > 0); in _PyObject_GetDictPtr()1047 _PyObject_ASSERT(obj, dictoffset % SIZEOF_VOID_P == 0); in _PyObject_GetDictPtr()1049 return (PyObject **) ((char *)obj + dictoffset); in _PyObject_GetDictPtr()1178 Py_ssize_t dictoffset; in _PyObject_GenericGetAttrWithDict() local1212 dictoffset = tp->tp_dictoffset; in _PyObject_GenericGetAttrWithDict()[all …]
2883 Py_ssize_t nmembers, weaklistoffset, dictoffset, vectorcalloffset; in PyType_FromModuleAndSpec() local2886 nmembers = weaklistoffset = dictoffset = vectorcalloffset = 0; in PyType_FromModuleAndSpec()2902 dictoffset = memb->offset; in PyType_FromModuleAndSpec()3063 if (dictoffset) { in PyType_FromModuleAndSpec()3064 type->tp_dictoffset = dictoffset; in PyType_FromModuleAndSpec()
499 dictoffset = int_from_int(typeobj.field('tp_dictoffset'))500 if dictoffset != 0:501 if dictoffset < 0:507 dictoffset += size508 assert dictoffset > 0509 assert dictoffset % _sizeof_void_p() == 0511 dictptr = self._gdbval.cast(_type_char_ptr()) + dictoffset
1616 dictoffset = tp_basicsize + abs(ob_size)*tp_itemsize + tp_dictoffset1617 if dictoffset is not aligned on sizeof(void*):