/external/python/cpython2/Misc/ |
D | valgrind-python.supp | 14 # 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
|
D | pymemcompat.h | 50 #define PyObject_Realloc PyMem_Realloc macro
|
D | README.valgrind | 13 suppress the warnings for PyObject_Free and PyObject_Realloc
|
/external/python/cpython3/Include/ |
D | objimpl.h | 101 PyAPI_FUNC(void *) PyObject_Realloc(void *ptr, size_t new_size); 107 #define PyObject_REALLOC PyObject_Realloc
|
/external/python/cpython2/Include/ |
D | objimpl.h | 98 PyAPI_FUNC(void *) PyObject_Realloc(void *, size_t); 121 #define PyObject_Realloc _PyObject_DebugRealloc macro 127 #define PyObject_REALLOC PyObject_Realloc
|
/external/python/cpython2/Doc/c-api/ |
D | memory.rst | 182 .. 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`
|
/external/python/cpython2/Objects/ |
D | obmalloc.c | 1222 #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()
|
/external/python/cpython3/Doc/c-api/ |
D | memory.rst | 306 .. c:function:: void* PyObject_Realloc(void *p, size_t n) 316 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`. 318 If the request fails, :c:func:`PyObject_Realloc` returns ``NULL`` and *p* remains 325 previous call to :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or 414 * :c:func:`PyObject_Realloc`
|
/external/python/cpython3/Misc/ |
D | README.valgrind | 20 suppress the warnings for PyObject_Free and PyObject_Realloc
|
/external/python/cpython3/PC/ |
D | python3.def | 487 PyObject_Realloc=python39.PyObject_Realloc
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 499 "PyObject_Realloc"
|
/external/python/cpython2/Modules/ |
D | _elementtree.c | 384 children = PyObject_Realloc(self->extra->children, in element_resize() 2566 memory_handler.realloc_fcn = PyObject_Realloc;
|
/external/python/cpython3/Modules/ |
D | pyexpat.c | 20 PyObject_Malloc, PyObject_Realloc, PyObject_Free};
|
D | _elementtree.c | 476 children = PyObject_Realloc(self->extra->children, in element_resize() 3058 PyObject_Malloc, PyObject_Realloc, PyObject_Free};
|
D | _testcapimodule.c | 3893 case PYMEM_DOMAIN_OBJ: ptr2 = PyObject_Realloc(ptr, size2); break; in test_setallocators()
|
/external/python/cpython3/Objects/ |
D | bytearrayobject.c | 239 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
|
/external/python/cpython2/Python/ |
D | compile.c | 650 tmp = (struct instr *)PyObject_Realloc( in compiler_next_instr()
|
/external/python/cpython3/Python/ |
D | compile.c | 835 tmp = (struct instr *)PyObject_Realloc( in compiler_next_instr()
|
/external/python/cpython3/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
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.3.rst | 1847 :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc`, and :c:func:`PyObject_Free`.
|
D | 2.5.rst | 2147 raw memory, while :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc`, and
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 876 ``PyObject_Free``/``PyObject_Realloc``.
|