Home
last modified time | relevance | path

Searched refs:REAL_SIZE_TP (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Dstructseq.c22 #define REAL_SIZE_TP(tp) PyLong_AsSsize_t( \ macro
24 #define REAL_SIZE(op) REAL_SIZE_TP(Py_TYPE(op))
35 Py_ssize_t size = REAL_SIZE_TP(type), i; in PyStructSequence_New()
111 max_len = REAL_SIZE_TP(type); in structseq_new_impl()
/external/python/cpython2/Objects/
Dstructseq.c20 #define REAL_SIZE_TP(tp) PyInt_AsLong( \ macro
22 #define REAL_SIZE(op) REAL_SIZE_TP(Py_TYPE(op))
172 max_len = REAL_SIZE_TP(type); in structseq_new()