Home
last modified time | relevance | path

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

/third_party/python/Include/
Dobjimpl.h186 #define PyObject_GC_NewVar(type, typeobj, n) \ macro
/third_party/python/Doc/c-api/
Dgcsupport.rst31 or :c:func:`PyObject_GC_NewVar`.
63 .. c:function:: TYPE* PyObject_GC_NewVar(TYPE, PyTypeObject *type, Py_ssize_t size)
115 :c:func:`PyObject_GC_NewVar`.
Dtypeobj.rst669 :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar`.
/third_party/python/Objects/
Dtupleobject.c98 op = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size); in tuple_alloc()
111 PyTupleObject *op = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, 0); in tuple_create_empty_tuple_singleton()
Dstructseq.c67 obj = PyObject_GC_NewVar(PyStructSequence, type, size); in PyStructSequence_New()
Dframeobject.c794 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, extras); in frame_alloc()
Dmemoryobject.c635 PyObject_GC_NewVar(PyMemoryViewObject, &PyMemoryView_Type, 3*ndim); in memory_alloc()
/third_party/python/Modules/_ctypes/
Dcallbacks.c329 p = PyObject_GC_NewVar(CThunkObject, &PyCThunk_Type, nArgs); in CThunkObject_new()
/third_party/python/Doc/data/
Drefcounts.dat1649 PyObject_GC_NewVar:TYPE*::+1:
1650 PyObject_GC_NewVar::TYPE::
1651 PyObject_GC_NewVar:PyTypeObject*:type:0:
1652 PyObject_GC_NewVar:Py_ssize_t:size::
/third_party/python/Python/
Dhamt.c528 node = PyObject_GC_NewVar( in hamt_node_bitmap_new()
1261 node = PyObject_GC_NewVar( in hamt_node_collision_new()
/third_party/python/Modules/
D_sre.c1418 self = PyObject_GC_NewVar(PatternObject, module_state->Pattern_Type, n); in _sre_compile_impl()
2432 match = PyObject_GC_NewVar(MatchObject, in pattern_new_match()
/third_party/python/Doc/whatsnew/
D2.2.rst1083 * Use :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar` to allocate
D3.8.rst2059 :c:func:`PyObject_GC_NewVar`, or any other custom allocator that uses
/third_party/python/Misc/
DHISTORY24397 - use PyObject_GC_New or PyObject_GC_NewVar to allocate objects and