Home
last modified time | relevance | path

Searched refs:PyObject_Calloc (Results 1 – 10 of 10) 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.rst293 .. c:function:: void* PyObject_Calloc(size_t nelem, size_t elsize)
300 non-``NULL`` pointer if possible, as if ``PyObject_Calloc(1, 1)`` had been called
316 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`.
326 :c:func:`PyObject_Calloc`. Otherwise, or if ``PyObject_Free(p)`` has been called
415 * :c:func:`PyObject_Calloc`
/third_party/python/PC/
Dpython3.def461 PyObject_Calloc=python39.PyObject_Calloc
/third_party/python/Modules/
Dgcmodule.c2222 g = (PyGC_Head *)PyObject_Calloc(1, size); in _PyObject_GC_Alloc()
D_testcapimodule.c3784 ptr = PyObject_Calloc(0, 0); in test_pymem_alloc0()
3928 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.c79 op = (PyBytesObject *)PyObject_Calloc(1, PyBytesObject_SIZE + size); in _PyBytes_FromSize()
/third_party/python/Python/
Dcompile.c562 u = (struct compiler_unit *)PyObject_Calloc(1, sizeof( in compiler_enter_scope()
770 b = (basicblock *)PyObject_Calloc(1, sizeof(basicblock)); in compiler_new_block()
811 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/
DNEWS26110 PyObject_Calloc(), _PyObject_GC_Calloc(). bytes(int) is now using