Searched refs:PyObject_NEW_VAR (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Misc/ |
D | pymemcompat.h | 55 #define PyObject_NewVar PyObject_NEW_VAR
|
/external/python/cpython3/Include/ |
D | objimpl.h | 136 #define PyObject_NEW_VAR(type, typeobj, n) PyObject_NewVar(type, typeobj, n) macro
|
/external/python/cpython2/Include/ |
D | objimpl.h | 196 #define PyObject_NEW_VAR(type, typeobj, n) \ macro
|
/external/python/cpython2/Modules/ |
D | _sre.c | 2602 copy = PyObject_NEW_VAR(PatternObject, &Pattern_Type, self->codesize); in pattern_copy() 2768 self = PyObject_NEW_VAR(PatternObject, &Pattern_Type, n); in _compile() 3604 copy = PyObject_NEW_VAR(MatchObject, &Match_Type, slots); in match_copy() 3802 match = PyObject_NEW_VAR(MatchObject, &Match_Type, in pattern_new_match()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1747 PyObject_NEW_VAR:PyObject*::+1: 1748 PyObject_NEW_VAR::TYPE:: 1749 PyObject_NEW_VAR:PyTypeObject*:type:0: 1750 PyObject_NEW_VAR:Py_ssize_t:size::
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a6.rst | 1153 :c:func:`PyObject_New` macro, and the :c:func:`PyObject_NEW_VAR` macro
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1008 PyObject_NEW_VAR:PyObject*::+1:
|
/external/python/cpython2/Objects/ |
D | longobject.c | 76 return PyObject_NEW_VAR(PyLongObject, &PyLong_Type, size); in _PyLong_New()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.9.rst | 1354 :c:func:`PyObject_New` macro, and the :c:func:`PyObject_NEW_VAR` macro
|