Home
last modified time | relevance | path

Searched refs:PyMem_RawCalloc (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Include/
Dpymem.h16 PyAPI_FUNC(void *) PyMem_RawCalloc(size_t nelem, size_t elsize);
/external/python/cpython3/Doc/c-api/
Dmemory.rst120 .. c:function:: void* PyMem_RawCalloc(size_t nelem, size_t elsize)
127 non-*NULL* pointer if possible, as if ``PyMem_RawCalloc(1, 1)`` had been
144 :c:func:`PyMem_RawCalloc`.
154 :c:func:`PyMem_RawCalloc`. Otherwise, or if ``PyMem_RawFree(p)`` has been
397 * :c:func:`PyMem_RawCalloc`
Dinit.rst56 * :c:func:`PyMem_RawCalloc`
/external/python/cpython3/Objects/
Dobmalloc.c524 PyMem_RawCalloc(size_t nelem, size_t elsize) in PyMem_RawCalloc() function
1601 ptr = PyMem_RawCalloc(nelem, elsize); in _PyObject_Calloc()
/external/python/cpython3/Python/
Dsysmodule.c1673 _Py_PreInitEntry node = PyMem_RawCalloc(1, sizeof(*node)); in _alloc_preinit_entry()
/external/python/cpython3/Modules/
D_testcapimodule.c3335 ptr = PyMem_RawCalloc(0, 0); in test_pymem_alloc0()
3505 case PYMEM_DOMAIN_RAW: ptr = PyMem_RawCalloc(nelem, elsize); break; in test_setallocators()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst2177 * :c:func:`PyMem_RawCalloc`,
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst5170 Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), PyObject_Calloc(),