Home
last modified time | relevance | path

Searched refs:PyObject_GC_NewVar (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython2/Misc/
Dpymemcompat.h79 #define PyObject_GC_NewVar PyObject_NewVar macro
DHISTORY7018 - use PyObject_GC_New or PyObject_GC_NewVar to allocate objects and
/external/python/cpython3/Doc/c-api/
Dgcsupport.rst31 or :c:func:`PyObject_GC_NewVar`.
43 .. c:function:: TYPE* PyObject_GC_NewVar(TYPE, PyTypeObject *type, Py_ssize_t size)
84 :c:func:`PyObject_GC_NewVar`.
Dtypeobj.rst186 :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar`.
/external/python/cpython2/Doc/c-api/
Dgcsupport.rst34 or :c:func:`PyObject_GC_NewVar`.
46 .. c:function:: TYPE* PyObject_GC_NewVar(TYPE, PyTypeObject *type, Py_ssize_t size)
92 :c:func:`PyObject_GC_NewVar`.
Dtypeobj.rst193 :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar`.
/external/python/cpython2/Include/
Dobjimpl.h330 #define PyObject_GC_NewVar(type, typeobj, n) \ macro
/external/python/cpython3/Include/
Dobjimpl.h342 #define PyObject_GC_NewVar(type, typeobj, n) \ macro
/external/python/cpython3/Objects/
Dstructseq.c37 obj = PyObject_GC_NewVar(PyStructSequence, type, size); in PyStructSequence_New()
Dframeobject.c713 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, in _PyFrame_New_NoTrack()
Dtupleobject.c117 op = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size); in PyTuple_New()
Dmemoryobject.c625 PyObject_GC_NewVar(PyMemoryViewObject, &PyMemoryView_Type, 3*ndim); in memory_alloc()
/external/python/cpython3/Modules/_ctypes/
Dcallbacks.c306 p = PyObject_GC_NewVar(CThunkObject, &PyCThunk_Type, nArgs); in CThunkObject_new()
/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c390 p = PyObject_GC_NewVar(CThunkObject, &PyCThunk_Type, nArgs); in CThunkObject_new()
/external/python/cpython2/Objects/
Dframeobject.c716 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, in PyFrame_New()
Dtupleobject.c90 op = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size); in PyTuple_New()
/external/python/cpython3/Doc/data/
Drefcounts.dat1618 PyObject_GC_NewVar:TYPE*::+1:
1619 PyObject_GC_NewVar::TYPE::
1620 PyObject_GC_NewVar:PyTypeObject*:type:0:
1621 PyObject_GC_NewVar:Py_ssize_t:size::
/external/python/cpython3/Python/
Dhamt.c546 node = PyObject_GC_NewVar( in hamt_node_bitmap_new()
1279 node = PyObject_GC_NewVar( in hamt_node_collision_new()
/external/python/cpython2/Doc/whatsnew/
D2.2.rst1083 * Use :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar` to allocate
/external/python/cpython3/Doc/whatsnew/
D2.2.rst1083 * Use :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar` to allocate
/external/python/cpython3/Misc/
DHISTORY24397 - use PyObject_GC_New or PyObject_GC_NewVar to allocate objects and