Home
last modified time | relevance | path

Searched defs:_typeobject (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Doc/includes/
Dtypestruct.h1 typedef struct _typeobject { struct
3 char *tp_name; /* For printing, in format "<module>.<name>" */
4 int tp_basicsize, tp_itemsize; /* For allocation */
8 destructor tp_dealloc;
9 printfunc tp_print;
10 getattrfunc tp_getattr;
11 setattrfunc tp_setattr;
12 cmpfunc tp_compare;
13 reprfunc tp_repr;
17 PyNumberMethods *tp_as_number;
[all …]
/external/python/cpython3/Doc/includes/
Dtypestruct.h1 typedef struct _typeobject { struct
3 const char *tp_name; /* For printing, in format "<module>.<name>" */
4 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */
8 destructor tp_dealloc;
9 Py_ssize_t tp_vectorcall_offset;
10 getattrfunc tp_getattr;
11 setattrfunc tp_setattr;
12 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)
14 reprfunc tp_repr;
18 PyNumberMethods *tp_as_number;
[all …]
/external/python/cpython3/Include/cpython/
Dobject.h193 struct _typeobject { struct
195 const char *tp_name; /* For printing, in format "<module>.<name>" */
196 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */
200 destructor tp_dealloc;
201 Py_ssize_t tp_vectorcall_offset;
202 getattrfunc tp_getattr;
203 setattrfunc tp_setattr;
204 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)
206 reprfunc tp_repr;
210 PyNumberMethods *tp_as_number;
[all …]
/external/python/cpython2/Include/
Dobject.h324 typedef struct _typeobject { struct
326 const char *tp_name; /* For printing, in format "<module>.<name>" */
327 Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */
331 destructor tp_dealloc;
332 printfunc tp_print;
333 getattrfunc tp_getattr;
334 setattrfunc tp_setattr;
335 cmpfunc tp_compare;
336 reprfunc tp_repr;
340 PyNumberMethods *tp_as_number;
[all …]