Searched refs:PyObject_GC_NewVar (Results 1 – 23 of 23) sorted by relevance
/external/python/cpython2/Misc/ |
D | pymemcompat.h | 79 #define PyObject_GC_NewVar PyObject_NewVar macro
|
D | HISTORY | 7018 - use PyObject_GC_New or PyObject_GC_NewVar to allocate objects and
|
/external/python/cpython2/Doc/c-api/ |
D | gcsupport.rst | 34 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`.
|
D | typeobj.rst | 193 :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar`.
|
/external/python/cpython3/Doc/c-api/ |
D | gcsupport.rst | 31 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`.
|
D | typeobj.rst | 658 :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar`.
|
/external/python/cpython3/Include/ |
D | objimpl.h | 186 #define PyObject_GC_NewVar(type, typeobj, n) \ macro
|
/external/python/cpython2/Include/ |
D | objimpl.h | 330 #define PyObject_GC_NewVar(type, typeobj, n) \ macro
|
/external/python/cpython3/Modules/_ctypes/ |
D | callbacks.c | 328 p = PyObject_GC_NewVar(CThunkObject, &PyCThunk_Type, nArgs); in CThunkObject_new()
|
/external/python/cpython3/Objects/ |
D | structseq.c | 45 obj = PyObject_GC_NewVar(PyStructSequence, type, size); in PyStructSequence_New()
|
D | tupleobject.c | 92 op = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size); in tuple_alloc()
|
D | frameobject.c | 788 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, extras); in frame_alloc()
|
D | memoryobject.c | 641 PyObject_GC_NewVar(PyMemoryViewObject, &PyMemoryView_Type, 3*ndim); in memory_alloc()
|
/external/python/cpython2/Modules/_ctypes/ |
D | callbacks.c | 390 p = PyObject_GC_NewVar(CThunkObject, &PyCThunk_Type, nArgs); in CThunkObject_new()
|
/external/python/cpython2/Objects/ |
D | frameobject.c | 716 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, in PyFrame_New()
|
D | tupleobject.c | 90 op = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size); in PyTuple_New()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1646 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/ |
D | hamt.c | 547 node = PyObject_GC_NewVar( in hamt_node_bitmap_new() 1280 node = PyObject_GC_NewVar( in hamt_node_collision_new()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.2.rst | 1083 * Use :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar` to allocate
|
D | 3.8.rst | 2058 :c:func:`PyObject_GC_NewVar`, or any other custom allocator that uses
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.2.rst | 1083 * Use :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar` to allocate
|
/external/python/cffi/c/ |
D | _cffi_backend.c | 350 CTypeDescrObject *ct = PyObject_GC_NewVar(CTypeDescrObject, in ctypedescr_new()
|
/external/python/cpython3/Misc/ |
D | HISTORY | 24397 - use PyObject_GC_New or PyObject_GC_NewVar to allocate objects and
|