Searched refs:dictoffset (Results 1 – 6 of 6) sorted by relevance
1052 Py_ssize_t dictoffset; in _PyObject_GetDictPtr() local1055 dictoffset = tp->tp_dictoffset; in _PyObject_GetDictPtr()1056 if (dictoffset == 0) in _PyObject_GetDictPtr()1058 if (dictoffset < 0) { in _PyObject_GetDictPtr()1067 dictoffset += (long)size; in _PyObject_GetDictPtr()1068 assert(dictoffset > 0); in _PyObject_GetDictPtr()1069 assert(dictoffset % SIZEOF_VOID_P == 0); in _PyObject_GetDictPtr()1071 return (PyObject **) ((char *)obj + dictoffset); in _PyObject_GetDictPtr()1212 Py_ssize_t dictoffset; in _PyObject_GenericGetAttrWithDict() local1246 dictoffset = tp->tp_dictoffset; in _PyObject_GenericGetAttrWithDict()[all …]
1284 Py_ssize_t dictoffset; in _PyObject_GetDictPtr() local1289 dictoffset = tp->tp_dictoffset; in _PyObject_GetDictPtr()1290 if (dictoffset == 0) in _PyObject_GetDictPtr()1292 if (dictoffset < 0) { in _PyObject_GetDictPtr()1301 dictoffset += (long)size; in _PyObject_GetDictPtr()1302 assert(dictoffset > 0); in _PyObject_GetDictPtr()1303 assert(dictoffset % SIZEOF_VOID_P == 0); in _PyObject_GetDictPtr()1305 return (PyObject **) ((char *)obj + dictoffset); in _PyObject_GetDictPtr()1338 Py_ssize_t dictoffset; in _PyObject_GenericGetAttrWithDict() local1412 dictoffset = tp->tp_dictoffset; in _PyObject_GenericGetAttrWithDict()[all …]
469 dictoffset = int_from_int(typeobj.field('tp_dictoffset'))470 if dictoffset != 0:471 if dictoffset < 0:477 dictoffset += size478 assert dictoffset > 0479 assert dictoffset % _sizeof_void_p() == 0481 dictptr = self._gdbval.cast(_type_char_ptr()) + dictoffset
497 dictoffset = int_from_int(typeobj.field('tp_dictoffset'))498 if dictoffset != 0:499 if dictoffset < 0:505 dictoffset += size506 assert dictoffset > 0507 assert dictoffset % _sizeof_void_p() == 0509 dictptr = self._gdbval.cast(_type_char_ptr()) + dictoffset
822 dictoffset = tp_basicsize + abs(ob_size)*tp_itemsize + tp_dictoffset823 if dictoffset is not aligned on sizeof(void*):
907 dictoffset = tp_basicsize + abs(ob_size)*tp_itemsize + tp_dictoffset908 if dictoffset is not aligned on sizeof(void*):