Searched refs:PyMem_RawCalloc (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Include/ |
D | pymem.h | 16 PyAPI_FUNC(void *) PyMem_RawCalloc(size_t nelem, size_t elsize);
|
/external/python/cpython3/Doc/c-api/ |
D | memory.rst | 120 .. 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`
|
D | init.rst | 56 * :c:func:`PyMem_RawCalloc`
|
/external/python/cpython3/Objects/ |
D | obmalloc.c | 524 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/ |
D | sysmodule.c | 1673 _Py_PreInitEntry node = PyMem_RawCalloc(1, sizeof(*node)); in _alloc_preinit_entry()
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 3335 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/ |
D | 3.5.rst | 2177 * :c:func:`PyMem_RawCalloc`,
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 5170 Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), PyObject_Calloc(),
|