Searched refs:tp_dictoffset (Results 1 - 8 of 8) sorted by relevance
/third_party/python/Doc/includes/ |
H A D | typestruct.h | 65 Py_ssize_t tp_dictoffset; member
|
/third_party/python/Objects/ |
H A D | typeobject.c | 420 offsetof(PyTypeObject, tp_dictoffset), READONLY}, 1219 assert(type->tp_dictoffset); in subtype_traverse() 1226 if (type->tp_dictoffset != base->tp_dictoffset) { in subtype_traverse() 1290 if (type->tp_dictoffset != base->tp_dictoffset) { in subtype_clear() 1445 else if (type->tp_dictoffset && !base->tp_dictoffset) { in subtype_dealloc() 2291 if (type->tp_dictoffset != 0 && in get_builtin_base_with_dict() 2666 base->tp_dictoffset ! in type_new_slots_bases() [all...] |
H A D | object.c | 1070 dictoffset = tp->tp_dictoffset; in _PyObject_DictPointer() 1092 * Note that the tp_dictoffset docs used to recommend this function, 1721 0, /*tp_dictoffset */ 1822 0, /*tp_dictoffset */
|
H A D | dictobject.c | 3877 0, /* tp_dictoffset */ 5352 // assert(type->tp_dictoffset > 0); -- TO DO Update this assert. in init_inline_values() 5379 if (tp->tp_dictoffset == 0) { in _PyObject_InitializeDict() 5511 if (tp->tp_dictoffset == 0) { in _PyObject_IsInstanceDictEmpty()
|
/third_party/python/Include/cpython/ |
H A D | object.h | 212 Py_ssize_t tp_dictoffset; member
|
/third_party/python/Python/ |
H A D | specialize.c | 971 Py_ssize_t dictoffset = owner_cls->tp_dictoffset; in _Py_Specialize_LoadMethod() 1015 assert(owner_cls->tp_dictoffset > 0 && owner_cls->tp_dictoffset <= INT16_MAX); in _Py_Specialize_LoadMethod() 1016 cache->dict_offset = (uint16_t)owner_cls->tp_dictoffset; in _Py_Specialize_LoadMethod()
|
H A D | ceval.c | 3505 assert(tp->tp_dictoffset < 0); 4572 Can be either a managed dict, or a tp_dictoffset offset.*/ 4585 (dictoffset == self_cls->tp_dictoffset && dictoffset > 0) 4609 assert(self_cls->tp_dictoffset == 0);
|
/third_party/python/Modules/ |
H A D | _asynciomodule.c | 1525 .tp_dictoffset = offsetof(FutureObj, dict), 2539 .tp_dictoffset = offsetof(TaskObj, dict),
|
Completed in 43 milliseconds