Searched refs:PyObject_Realloc (Results 1 – 18 of 18) sorted by relevance
/third_party/python/Include/ |
D | objimpl.h | 101 PyAPI_FUNC(void *) PyObject_Realloc(void *ptr, size_t new_size); 109 #define PyObject_REALLOC PyObject_Realloc
|
/third_party/python/Doc/c-api/ |
D | memory.rst | 344 .. c:function:: void* PyObject_Realloc(void *p, size_t n) 354 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`. 356 If the request fails, :c:func:`PyObject_Realloc` returns ``NULL`` and *p* remains 363 previous call to :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or 455 * :c:func:`PyObject_Realloc`
|
/third_party/python/Misc/ |
D | README.valgrind | 17 PyObject_Realloc.
|
D | stable_abi.txt | 1103 function PyObject_Realloc
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 511 function,PyObject_Realloc,3.2,
|
/third_party/python/PC/ |
D | python3dll.c | 467 EXPORT_FUNC(PyObject_Realloc)
|
/third_party/python/Modules/ |
D | gcmodule.c | 2326 g = (PyGC_Head *)PyObject_Realloc(g, sizeof(PyGC_Head) + basicsize); in _PyObject_GC_Resize()
|
D | _elementtree.c | 476 children = PyObject_Realloc(self->extra->children, in element_resize() 3055 PyObject_Malloc, PyObject_Realloc, PyObject_Free};
|
D | pyexpat.c | 20 PyObject_Malloc, PyObject_Realloc, PyObject_Free};
|
D | _testcapimodule.c | 4060 case PYMEM_DOMAIN_OBJ: ptr2 = PyObject_Realloc(ptr, size2); break; in test_setallocators()
|
/third_party/python/Objects/ |
D | bytearrayobject.c | 231 sval = PyObject_Realloc(obj->ob_bytes, alloc); in PyByteArray_Resize()
|
D | obmalloc.c | 698 PyObject_Realloc(void *ptr, size_t new_size) in PyObject_Realloc() function
|
D | bytesobject.c | 3046 PyObject_Realloc(v, PyBytesObject_SIZE + newsize); in _PyBytes_Resize()
|
D | unicodeobject.c | 1079 new_unicode = (PyObject *)PyObject_Realloc(unicode, new_size); in resize_compact() 1143 data = (PyObject *)PyObject_Realloc(data, new_size); in resize_inplace() 1176 wstr = PyObject_Realloc(wstr, new_size); in resize_inplace()
|
/third_party/python/Python/ |
D | compile.c | 917 tmp = (struct instr *)PyObject_Realloc( in compiler_next_instr() 5676 basicblock **resized = PyObject_Realloc(pc->fail_pop, needed); in ensure_fail_pop()
|
/third_party/python/Doc/whatsnew/ |
D | 2.3.rst | 1847 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc`, and :c:func:`PyObject_Free`.
|
D | 2.5.rst | 2148 raw memory, while :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc`, and
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 876 ``PyObject_Free``/``PyObject_Realloc``.
|