Home
last modified time | relevance | path

Searched refs:PyObject_Realloc (Results 1 – 25 of 34) sorted by relevance

12

/aosp_15_r20/external/python/cpython2/Misc/
Dvalgrind-python.supp14 # suppressions for PyObject_Free and PyObject_Realloc.
160 ### fun:PyObject_Realloc
166 ### fun:PyObject_Realloc
172 ### fun:PyObject_Realloc
178 ### fun:PyObject_Realloc
184 ### fun:PyObject_Realloc
Dpymemcompat.h50 #define PyObject_Realloc PyMem_Realloc macro
DREADME.valgrind13 suppress the warnings for PyObject_Free and PyObject_Realloc
/aosp_15_r20/external/python/cpython2/Include/
Dobjimpl.h98 PyAPI_FUNC(void *) PyObject_Realloc(void *, size_t);
121 #define PyObject_Realloc _PyObject_DebugRealloc macro
127 #define PyObject_REALLOC PyObject_Realloc
/aosp_15_r20/external/python/cpython3/Include/
Dobjimpl.h101 PyAPI_FUNC(void *) PyObject_Realloc(void *ptr, size_t new_size);
109 #define PyObject_REALLOC PyObject_Realloc
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dobjimpl.h101 PyAPI_FUNC(void *) PyObject_Realloc(void *ptr, size_t new_size);
109 #define PyObject_REALLOC PyObject_Realloc
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dobjimpl.h101 PyAPI_FUNC(void *) PyObject_Realloc(void *ptr, size_t new_size);
109 #define PyObject_REALLOC PyObject_Realloc
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dobjimpl.h101 PyAPI_FUNC(void *) PyObject_Realloc(void *ptr, size_t new_size);
109 #define PyObject_REALLOC PyObject_Realloc
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dobjimpl.h101 PyAPI_FUNC(void *) PyObject_Realloc(void *ptr, size_t new_size);
109 #define PyObject_REALLOC PyObject_Realloc
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dmemory.rst182 .. c:function:: void* PyObject_Realloc(void *p, size_t n)
192 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`.
194 If the request fails, :c:func:`PyObject_Realloc` returns *NULL* and *p* remains
201 previous call to :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or
211 * :c:func:`PyObject_REALLOC`: alias to :c:func:`PyObject_Realloc`
/aosp_15_r20/external/python/cpython2/Objects/
Dobmalloc.c1222 #undef PyObject_Realloc
1225 PyObject_Realloc(void *p, size_t nbytes) in PyObject_Realloc() function
1317 PyObject_Realloc(void *p, size_t n) in PyObject_Realloc() function
1564 q = (uchar *)PyObject_Realloc(q - 2*SST, total); in _PyObject_DebugReallocApi()
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dmemory.rst346 .. c:function:: void* PyObject_Realloc(void *p, size_t n)
356 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`.
358 If the request fails, :c:func:`PyObject_Realloc` returns ``NULL`` and *p* remains
365 previous call to :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or
457 * :c:func:`PyObject_Realloc`
/aosp_15_r20/external/python/cpython3/Misc/
DREADME.valgrind17 PyObject_Realloc.
Dstable_abi.toml1195 [function.PyObject_Realloc]
/aosp_15_r20/external/python/cpython2/PC/os2emx/
Dpython27.def499 "PyObject_Realloc"
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c477 EXPORT_FUNC(PyObject_Realloc)
/aosp_15_r20/external/python/cpython2/Modules/
D_elementtree.c384 children = PyObject_Realloc(self->extra->children, in element_resize()
2566 memory_handler.realloc_fcn = PyObject_Realloc;
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat528 function,PyObject_Realloc,3.2,,
/aosp_15_r20/external/python/cpython3/Modules/
D_elementtree.c465 children = PyObject_Realloc(self->extra->children, in element_resize()
3043 PyObject_Malloc, PyObject_Realloc, PyObject_Free};
Dgcmodule.c2336 g = (PyGC_Head *)PyObject_Realloc(g, sizeof(PyGC_Head) + basicsize); in _PyObject_GC_Resize()
Dpyexpat.c19 PyObject_Malloc, PyObject_Realloc, PyObject_Free};
/aosp_15_r20/external/python/cpython3/Objects/
Dbytearrayobject.c233 sval = PyObject_Realloc(obj->ob_bytes, alloc); in PyByteArray_Resize()
Dobmalloc.c729 PyObject_Realloc(void *ptr, size_t new_size) in PyObject_Realloc() function
Dbytesobject.c3089 PyObject_Realloc(v, PyBytesObject_SIZE + newsize); in _PyBytes_Resize()
Dunicodeobject.c1060 new_unicode = (PyObject *)PyObject_Realloc(unicode, new_size); in resize_compact()
1124 data = (PyObject *)PyObject_Realloc(data, new_size); in resize_inplace()
1157 wstr = PyObject_Realloc(wstr, new_size); in resize_inplace()

12