Searched refs:PyObject_NEW_VAR (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Misc/ |
D | pymemcompat.h | 55 #define PyObject_NewVar PyObject_NEW_VAR
|
/external/python/cpython3/Include/ |
D | objimpl.h | 188 #define PyObject_NEW_VAR(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 | 1746 PyObject_NEW_VAR:PyObject*::+1: 1747 PyObject_NEW_VAR::TYPE:: 1748 PyObject_NEW_VAR:PyTypeObject*:type:0: 1749 PyObject_NEW_VAR:Py_ssize_t:size::
|
/external/python/cpython3/Modules/ |
D | _sre.c | 1342 self = PyObject_NEW_VAR(PatternObject, &Pattern_Type, n); in _sre_compile_impl() 2331 match = PyObject_NEW_VAR(MatchObject, &Match_Type, in pattern_new_match()
|
/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()
|