Home
last modified time | relevance | path

Searched refs:PyMem_Calloc (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Include/
Dpymem.h103 PyAPI_FUNC(void *) PyMem_Calloc(size_t nelem, size_t elsize);
/external/python/cpython3/Doc/c-api/
Dmemory.rst191 .. c:function:: void* PyMem_Calloc(size_t nelem, size_t elsize)
198 non-*NULL* pointer if possible, as if ``PyMem_Calloc(1, 1)`` had been called
214 :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` or :c:func:`PyMem_Calloc`.
224 :c:func:`PyMem_Calloc`. Otherwise, or if ``PyMem_Free(p)`` has been called
406 * :c:func:`PyMem_Calloc`
/external/python/cpython3/PC/
Dpython3.def350 PyMem_Calloc=python37.PyMem_Calloc
/external/python/cpython3/Objects/
Dobmalloc.c557 PyMem_Calloc(size_t nelem, size_t elsize) in PyMem_Calloc() function
Dlistobject.c171 op->ob_item = (PyObject **) PyMem_Calloc(size, sizeof(PyObject *)); in PyList_New()
/external/python/cpython3/Modules/
D_testcapimodule.c3349 ptr = PyMem_Calloc(0, 0); in test_pymem_alloc0()
3506 case PYMEM_DOMAIN_MEM: ptr = PyMem_Calloc(nelem, elsize); break; in test_setallocators()
D_ssl.c5646 _ssl_locks = PyMem_Calloc(_ssl_locks_count, in _setup_ssl_threads()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst2178 * :c:func:`PyMem_Calloc`,
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst5170 Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), PyObject_Calloc(),