Searched refs:dictoffset (Results 1 – 6 of 6) sorted by relevance
968 Py_ssize_t dictoffset; in _PyObject_GetDictPtr() local971 dictoffset = tp->tp_dictoffset; in _PyObject_GetDictPtr()972 if (dictoffset == 0) in _PyObject_GetDictPtr()974 if (dictoffset < 0) { in _PyObject_GetDictPtr()983 dictoffset += (long)size; in _PyObject_GetDictPtr()984 assert(dictoffset > 0); in _PyObject_GetDictPtr()985 assert(dictoffset % SIZEOF_VOID_P == 0); in _PyObject_GetDictPtr()987 return (PyObject **) ((char *)obj + dictoffset); in _PyObject_GetDictPtr()1037 Py_ssize_t dictoffset; in _PyObject_GenericGetAttrWithDict() local1067 dictoffset = tp->tp_dictoffset; in _PyObject_GenericGetAttrWithDict()[all …]
1279 Py_ssize_t dictoffset; in _PyObject_GetDictPtr() local1284 dictoffset = tp->tp_dictoffset; in _PyObject_GetDictPtr()1285 if (dictoffset == 0) in _PyObject_GetDictPtr()1287 if (dictoffset < 0) { in _PyObject_GetDictPtr()1296 dictoffset += (long)size; in _PyObject_GetDictPtr()1297 assert(dictoffset > 0); in _PyObject_GetDictPtr()1298 assert(dictoffset % SIZEOF_VOID_P == 0); in _PyObject_GetDictPtr()1300 return (PyObject **) ((char *)obj + dictoffset); in _PyObject_GetDictPtr()1333 Py_ssize_t dictoffset; in _PyObject_GenericGetAttrWithDict() local1407 dictoffset = tp->tp_dictoffset; in _PyObject_GenericGetAttrWithDict()[all …]
465 dictoffset = int_from_int(typeobj.field('tp_dictoffset'))466 if dictoffset != 0:467 if dictoffset < 0:473 dictoffset += size474 assert dictoffset > 0475 assert dictoffset % _sizeof_void_p() == 0477 dictptr = self._gdbval.cast(_type_char_ptr()) + dictoffset
491 dictoffset = int_from_int(typeobj.field('tp_dictoffset'))492 if dictoffset != 0:493 if dictoffset < 0:499 dictoffset += size500 assert dictoffset > 0501 assert dictoffset % _sizeof_void_p() == 0503 dictptr = self._gdbval.cast(_type_char_ptr()) + dictoffset
821 dictoffset = tp_basicsize + abs(ob_size)*tp_itemsize + tp_dictoffset822 if dictoffset is not aligned on sizeof(void*):
922 dictoffset = tp_basicsize + abs(ob_size)*tp_itemsize + tp_dictoffset923 if dictoffset is not aligned on sizeof(void*):