Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/Include/
Dobjimpl.h99 PyAPI_FUNC(void *) PyObject_Calloc(size_t nelem, size_t elsize);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dobjimpl.h99 PyAPI_FUNC(void *) PyObject_Calloc(size_t nelem, size_t elsize);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dobjimpl.h99 PyAPI_FUNC(void *) PyObject_Calloc(size_t nelem, size_t elsize);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dobjimpl.h99 PyAPI_FUNC(void *) PyObject_Calloc(size_t nelem, size_t elsize);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dobjimpl.h99 PyAPI_FUNC(void *) PyObject_Calloc(size_t nelem, size_t elsize);
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dmemory.rst333 .. c:function:: void* PyObject_Calloc(size_t nelem, size_t elsize)
340 non-``NULL`` pointer if possible, as if ``PyObject_Calloc(1, 1)`` had been called
356 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`.
366 :c:func:`PyObject_Calloc`. Otherwise, or if ``PyObject_Free(p)`` has been called
458 * :c:func:`PyObject_Calloc`
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dmemory.rst192 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`.
202 :c:func:`PyObject_Calloc`. Otherwise, or if ``PyObject_Free(p)`` has been called
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c440 EXPORT_FUNC(PyObject_Calloc)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat491 function,PyObject_Calloc,3.7,,
Dpython3.11.abi513 …<elf-symbol name='PyObject_Calloc' type='func-type' binding='global-binding' visibility='default-v…
9619PyObject_Calloc' mangled-name='PyObject_Calloc' filepath='Objects/obmalloc.c' line='716' column='1…
/aosp_15_r20/external/python/cpython3/Objects/
Dobmalloc.c716 PyObject_Calloc(size_t nelem, size_t elsize) in PyObject_Calloc() function
Dbytesobject.c101 op = (PyBytesObject *)PyObject_Calloc(1, PyBytesObject_SIZE + size); in _PyBytes_FromSize()
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml1982 [function.PyObject_Calloc]
/aosp_15_r20/external/python/cpython2/Objects/
Dbytesobject.c83 op = (PyBytesObject *)PyObject_Calloc(1, PyBytesObject_SIZE + size); in _PyBytes_FromSize()
/aosp_15_r20/external/python/cpython3/Python/
Dcompile.c816 b = (basicblock *)PyObject_Calloc(1, sizeof(basicblock)); in compiler_new_block()
870 b->b_instr = (struct instr *)PyObject_Calloc( in compiler_next_instr()
1721 u = (struct compiler_unit *)PyObject_Calloc(1, sizeof( in compiler_enter_scope()
/aosp_15_r20/external/python/cpython3/Modules/
D_testcapimodule.c4126 ptr = PyObject_Calloc(0, 0); in test_pymem_alloc0()
4270 case PYMEM_DOMAIN_OBJ: ptr = PyObject_Calloc(nelem, elsize); break; in test_setallocators()
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.5.rst2179 * :c:func:`PyObject_Calloc`.
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst5170 Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), PyObject_Calloc(),