/external/llvm/test/CodeGen/X86/ |
D | 2007-08-09-IllegalX86-64Asm.ll | 4 %struct.PyBoolScalarObject = type { i64, %struct._typeobject*, i8 } 11 %struct.PyObject = type { i64, %struct._typeobject* } 13 %struct.PyTupleObject = type { i64, %struct._typeobject*, i64, [1 x %struct.PyObject*] } 16 …_typeobject = type { i64, %struct._typeobject*, i64, i8*, i64, i64, void (%struct.PyObject*)*, i32… 52 %tmp78 = bitcast i8* %tmp7 to %struct._typeobject* ; <%struct._typeobject*> [#uses=1] 53 …%tmp9 = getelementptr %struct._typeobject, %struct._typeobject* %tmp78, i32 0, i32 12 ; <%struct.… 69 %tmp2425 = bitcast i8* %tmp24 to %struct._typeobject* ; <%struct._typeobject*> [#uses=1] 70 …%tmp26 = getelementptr %struct._typeobject, %struct._typeobject* %tmp2425, i32 0, i32 12 ; <%stru… 161 %tmp100101 = bitcast i8* %tmp100 to %struct._typeobject* ; <%struct._typeobject*> [#uses=2] 162 … = getelementptr %struct._typeobject, %struct._typeobject* %tmp100101, i32 0, i32 38 ; <%struct.P… [all …]
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | 2007-08-09-IllegalX86-64Asm.ll | 5 %struct.PyBoolScalarObject = type { i64, %struct._typeobject*, i8 } 12 %struct.PyObject = type { i64, %struct._typeobject* } 14 %struct.PyTupleObject = type { i64, %struct._typeobject*, i64, [1 x %struct.PyObject*] } 17 …_typeobject = type { i64, %struct._typeobject*, i64, i8*, i64, i64, void (%struct.PyObject*)*, i32… 222 %tmp78 = bitcast i8* %tmp7 to %struct._typeobject* ; <%struct._typeobject*> [#uses=1] 223 …%tmp9 = getelementptr %struct._typeobject, %struct._typeobject* %tmp78, i32 0, i32 12 ; <%struct.… 239 %tmp2425 = bitcast i8* %tmp24 to %struct._typeobject* ; <%struct._typeobject*> [#uses=1] 240 …%tmp26 = getelementptr %struct._typeobject, %struct._typeobject* %tmp2425, i32 0, i32 12 ; <%stru… 331 %tmp100101 = bitcast i8* %tmp100 to %struct._typeobject* ; <%struct._typeobject*> [#uses=2] 332 … = getelementptr %struct._typeobject, %struct._typeobject* %tmp100101, i32 0, i32 38 ; <%struct.P… [all …]
|
/external/python/cpython2/Doc/includes/ |
D | typestruct.h | 1 typedef struct _typeobject { struct 60 struct _typeobject *tp_base; argument
|
/external/python/cpython3/Doc/includes/ |
D | typestruct.h | 1 typedef struct _typeobject { struct 58 struct _typeobject *tp_base; argument
|
/external/python/cpython2/Include/ |
D | object.h | 81 struct _typeobject *ob_type; 321 typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *); 322 typedef PyObject *(*allocfunc)(struct _typeobject *, Py_ssize_t); 324 typedef struct _typeobject { struct 383 struct _typeobject *tp_base; argument 408 struct _typeobject *tp_prev; argument 409 struct _typeobject *tp_next; argument
|
/external/python/cpython3/Include/ |
D | object.h | 66 typedef struct _typeobject PyTypeObject; 218 PyAPI_FUNC(PyObject *) PyType_GetModule(struct _typeobject *); 219 PyAPI_FUNC(void *) PyType_GetModuleState(struct _typeobject *);
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 193 struct _typeobject { struct 252 struct _typeobject *tp_base; argument
|
/external/python/cpython2/Objects/ |
D | intobject.c | 62 Py_TYPE(q) = (struct _typeobject *)(q-1); in fill_free_list() 135 Py_TYPE(v) = (struct _typeobject *)free_list; in int_dealloc() 1501 Py_TYPE(p) = (struct _typeobject *) in PyInt_ClearFreeList()
|
D | floatobject.c | 50 Py_TYPE(q) = (struct _typeobject *)(q-1); in fill_free_list() 251 Py_TYPE(op) = (struct _typeobject *)free_list; in float_dealloc() 2242 Py_TYPE(p) = (struct _typeobject *) in PyFloat_ClearFreeList()
|