Home
last modified time | relevance | path

Searched refs:PyObject_GC_NewVar (Results 1 – 23 of 23) 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/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/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)
103 :c:func:`PyObject_GC_NewVar`.
Dtypeobj.rst658 :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar`.
/external/python/cpython3/Include/
Dobjimpl.h186 #define PyObject_GC_NewVar(type, typeobj, n) \ macro
/external/python/cpython2/Include/
Dobjimpl.h330 #define PyObject_GC_NewVar(type, typeobj, n) \ macro
/external/python/cpython3/Modules/_ctypes/
Dcallbacks.c328 p = PyObject_GC_NewVar(CThunkObject, &PyCThunk_Type, nArgs); in CThunkObject_new()
/external/python/cpython3/Objects/
Dstructseq.c45 obj = PyObject_GC_NewVar(PyStructSequence, type, size); in PyStructSequence_New()
Dtupleobject.c92 op = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size); in tuple_alloc()
Dframeobject.c788 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, extras); in frame_alloc()
Dmemoryobject.c641 PyObject_GC_NewVar(PyMemoryViewObject, &PyMemoryView_Type, 3*ndim); in memory_alloc()
/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.dat1646 PyObject_GC_NewVar:TYPE*::+1:
1647 PyObject_GC_NewVar::TYPE::
1648 PyObject_GC_NewVar:PyTypeObject*:type:0:
1649 PyObject_GC_NewVar:Py_ssize_t:size::
/external/python/cpython3/Python/
Dhamt.c547 node = PyObject_GC_NewVar( in hamt_node_bitmap_new()
1280 node = PyObject_GC_NewVar( in hamt_node_collision_new()
/external/python/cpython3/Doc/whatsnew/
D2.2.rst1083 * Use :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar` to allocate
D3.8.rst2058 :c:func:`PyObject_GC_NewVar`, or any other custom allocator that uses
/external/python/cpython2/Doc/whatsnew/
D2.2.rst1083 * Use :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar` to allocate
/external/python/cffi/c/
D_cffi_backend.c350 CTypeDescrObject *ct = PyObject_GC_NewVar(CTypeDescrObject, in ctypedescr_new()
/external/python/cpython3/Misc/
DHISTORY24397 - use PyObject_GC_New or PyObject_GC_NewVar to allocate objects and