Home
last modified time | relevance | path

Searched refs:PyObject_Calloc (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Include/
Dobjimpl.h99 PyAPI_FUNC(void *) PyObject_Calloc(size_t nelem, size_t elsize);
/third_party/python/Doc/c-api/
Dmemory.rst331 .. c:function:: void* PyObject_Calloc(size_t nelem, size_t elsize)
338 non-``NULL`` pointer if possible, as if ``PyObject_Calloc(1, 1)`` had been called
354 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`.
364 :c:func:`PyObject_Calloc`. Otherwise, or if ``PyObject_Free(p)`` has been called
456 * :c:func:`PyObject_Calloc`
/third_party/python/Doc/data/
Dstable_abi.dat477 function,PyObject_Calloc,3.7,
/third_party/python/PC/
Dpython3dll.c433 EXPORT_FUNC(PyObject_Calloc)
/third_party/python/Modules/
Dgcmodule.c2247 g = (PyGC_Head *)PyObject_Calloc(1, size); in _PyObject_GC_Alloc()
D_testcapimodule.c3951 ptr = PyObject_Calloc(0, 0); in test_pymem_alloc0()
4095 case PYMEM_DOMAIN_OBJ: ptr = PyObject_Calloc(nelem, elsize); break; in test_setallocators()
/third_party/python/Objects/
Dobmalloc.c689 PyObject_Calloc(size_t nelem, size_t elsize) in PyObject_Calloc() function
Dbytesobject.c124 op = (PyBytesObject *)PyObject_Calloc(1, PyBytesObject_SIZE + size); in _PyBytes_FromSize()
/third_party/python/Misc/
Dstable_abi.txt1898 function PyObject_Calloc
/third_party/python/Python/
Dcompile.c614 u = (struct compiler_unit *)PyObject_Calloc(1, sizeof( in compiler_enter_scope()
829 b = (basicblock *)PyObject_Calloc(1, sizeof(basicblock)); in compiler_new_block()
893 b->b_instr = (struct instr *)PyObject_Calloc( in compiler_next_instr()
/third_party/python/Doc/whatsnew/
D3.5.rst2179 * :c:func:`PyObject_Calloc`.
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst5170 Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), PyObject_Calloc(),