Searched refs:PyHeapTypeObject (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Objects/ |
D | typeslots.inc | 2 offsetof(PyHeapTypeObject, as_buffer.bf_getbuffer), 3 offsetof(PyHeapTypeObject, as_buffer.bf_releasebuffer), 4 offsetof(PyHeapTypeObject, as_mapping.mp_ass_subscript), 5 offsetof(PyHeapTypeObject, as_mapping.mp_length), 6 offsetof(PyHeapTypeObject, as_mapping.mp_subscript), 7 offsetof(PyHeapTypeObject, as_number.nb_absolute), 8 offsetof(PyHeapTypeObject, as_number.nb_add), 9 offsetof(PyHeapTypeObject, as_number.nb_and), 10 offsetof(PyHeapTypeObject, as_number.nb_bool), 11 offsetof(PyHeapTypeObject, as_number.nb_divmod), [all …]
|
D | typeobject.c | 464 PyHeapTypeObject* et = (PyHeapTypeObject*)type; in type_name() 478 PyHeapTypeObject* et = (PyHeapTypeObject*)type; in type_qualname() 513 Py_SETREF(((PyHeapTypeObject*)type)->ht_name, value); in type_set_name() 521 PyHeapTypeObject* et; in type_set_qualname() 532 et = (PyHeapTypeObject*)type; in type_set_qualname() 1087 mp = PyHeapType_GET_MEMBERS((PyHeapTypeObject *)type); in traverse_slots() 1151 mp = PyHeapType_GET_MEMBERS((PyHeapTypeObject *)type); in clear_slots() 2381 PyHeapTypeObject *et; in type_new() 2601 et = (PyHeapTypeObject *)type; in type_new() 2878 PyHeapTypeObject *res; in PyType_FromModuleAndSpec() [all …]
|
D | dictobject.c | 4764 #define CACHED_KEYS(tp) (((PyHeapTypeObject*)tp)->ht_cached_keys)
|
/external/python/pybind11/include/pybind11/detail/ |
D | class.h | 68 auto heap_type = (PyHeapTypeObject *) PyType_Type.tp_alloc(&PyType_Type, 0); in make_static_property_type() 245 auto heap_type = (PyHeapTypeObject *) PyType_Type.tp_alloc(&PyType_Type, 0); in make_default_metaclass() 451 auto heap_type = (PyHeapTypeObject *) metaclass->tp_alloc(metaclass, 0); in make_object_base_type() 521 inline void enable_dynamic_attributes(PyHeapTypeObject *heap_type) { in enable_dynamic_attributes() 585 inline void enable_buffer_protocol(PyHeapTypeObject *heap_type) { in enable_buffer_protocol() 645 auto heap_type = (PyHeapTypeObject *) metaclass->tp_alloc(metaclass, 0); in make_new_python_type()
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 229 PyHeapTypeObject* et = (PyHeapTypeObject*)type; in type_name() 247 PyHeapTypeObject* et; in type_set_name() 273 et = (PyHeapTypeObject*)type; in type_set_name() 818 mp = PyHeapType_GET_MEMBERS((PyHeapTypeObject *)type); in traverse_slots() 877 mp = PyHeapType_GET_MEMBERS((PyHeapTypeObject *)type); in clear_slots() 2100 PyHeapTypeObject *et; in type_new() 2348 et = (PyHeapTypeObject *)type; in type_new() 2745 PyHeapTypeObject *et; in type_dealloc() 2751 et = (PyHeapTypeObject *)type; in type_dealloc() 2882 sizeof(PyHeapTypeObject), /* tp_basicsize */ [all …]
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message.h | 151 PyHeapTypeObject super;
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 294 } PyHeapTypeObject; typedef
|
/external/python/cpython2/Include/ |
D | object.h | 429 } PyHeapTypeObject; typedef
|
/external/python/pybind11/include/pybind11/ |
D | pybind11.h | 1148 auto *type = (PyHeapTypeObject*) m_ptr; in PYBIND11_NAMESPACE_BEGIN()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 4458 exported from object.h as PyHeapTypeObject. (SF patch #696193.)
|
/external/python/cpython3/Misc/ |
D | HISTORY | 21842 exported from object.h as PyHeapTypeObject. (SF patch #696193.)
|