Searched refs:PyMem_RawRealloc (Results 1 – 21 of 21) sorted by relevance
/external/python/cpython3/Parser/ |
D | myreadline.c | 195 wchar_t *tmp = PyMem_RawRealloc(wbuf, wbuflen * sizeof(wchar_t)); in _PyOS_WindowsConsoleReadline() 325 pr = (char *)PyMem_RawRealloc(p, n + incr); in PyOS_StdioReadline() 347 pr = (char *)PyMem_RawRealloc(p, n+1); in PyOS_StdioReadline()
|
/external/python/cpython3/Modules/ |
D | pwdmodule.c | 162 buf2 = PyMem_RawRealloc(buf, bufsize); in pwd_getpwuid() 245 buf2 = PyMem_RawRealloc(buf, bufsize); in pwd_getpwnam_impl()
|
D | grpmodule.c | 143 buf2 = PyMem_RawRealloc(buf, bufsize); in grp_getgrgid() 233 buf2 = PyMem_RawRealloc(buf, bufsize); in grp_getgrnam_impl()
|
D | posixmodule.c | 4149 newbuf = PyMem_RawRealloc(buf, buflen); in posix_getcwd()
|
/external/python/cpython3/Include/ |
D | pymem.h | 97 PyAPI_FUNC(void *) PyMem_RawRealloc(void *ptr, size_t new_size);
|
/external/python/cpython3/Doc/c-api/ |
D | memory.rst | 175 .. c:function:: void* PyMem_RawRealloc(void *p, size_t n) 185 :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` or 188 If the request fails, :c:func:`PyMem_RawRealloc` returns ``NULL`` and *p* 195 previous call to :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` or 453 * :c:func:`PyMem_RawRealloc` 643 :c:func:`PyMem_RawRealloc` for allocations larger than 512 bytes.
|
D | veryhigh.rst | 163 :c:func:`PyMem_RawRealloc`, or ``NULL`` if an error occurred. 167 :c:func:`PyMem_RawRealloc`, instead of being allocated by
|
D | init.rst | 67 * :c:func:`PyMem_RawRealloc`
|
/external/python/cpython3/Modules/_testcapi/ |
D | mem.c | 238 ptr2 = PyMem_RawRealloc(ptr, size2); in test_setallocators()
|
/external/python/cpython3/Objects/ |
D | obmalloc.c | 961 PyMem_RawRealloc(void *ptr, size_t new_size) in PyMem_RawRealloc() function 1746 arenaobj = (struct arena_object *)PyMem_RawRealloc(allarenas, nbytes); in new_arena() 2515 return PyMem_RawRealloc(ptr, nbytes); in _PyObject_Realloc()
|
D | unicodeobject.c | 5328 bytes2 = PyMem_RawRealloc(bytes, final_size); in _Py_EncodeUTF8Ex()
|
/external/python/cpython3/PC/ |
D | python3dll.c | 386 EXPORT_FUNC(PyMem_RawRealloc)
|
/external/python/cpython3/Doc/data/ |
D | stable_abi.dat | 401 func,PyMem_RawRealloc,3.13,,
|
D | python3.13.abi | 455 …<elf-symbol name='PyMem_RawRealloc' type='func-type' binding='global-binding' visibility='default-… 12207 …PyMem_RawRealloc' mangled-name='PyMem_RawRealloc' filepath='./Include/pymem.h' line='97' column='1…
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.13.0a2.rst | 1598 :c:func:`PyMem_RawRealloc` and :c:func:`PyMem_RawFree` to the limited C API.
|
/external/python/cpython3/Python/ |
D | initconfig.c | 569 wchar_t **items2 = (wchar_t **)PyMem_RawRealloc(list->items, size); in PyWideStringList_Insert()
|
D | import.c | 2393 p = PyMem_RawRealloc(inittab_copy, size); in PyImport_ExtendInittab()
|
/external/python/cpython3/Misc/ |
D | stable_abi.toml | 2472 [function.PyMem_RawRealloc]
|
D | HISTORY | 3716 now be a string allocated by PyMem_RawMalloc() or PyMem_RawRealloc() (or NULL
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.13.rst | 2257 * :c:func:`PyMem_RawRealloc`
|
D | 3.4.rst | 2506 :c:func:`PyMem_RawRealloc`, or ``NULL`` if an error occurred, instead of a
|