Home
last modified time | relevance | path

Searched refs:PyMem_REALLOC (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Include/
Dpymem.h63 #define PyMem_REALLOC _PyMem_DebugRealloc macro
76 #define PyMem_REALLOC(p, n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \ macro
110 (type *) PyMem_REALLOC((p), (n) * sizeof(type)) )
Dobjimpl.h133 #define PyObject_REALLOC PyMem_REALLOC
/external/python/cpython2/Parser/
Dmyreadline.c143 p = (char *)PyMem_REALLOC(p, n + incr); in PyOS_StdioReadline()
153 return (char *)PyMem_REALLOC(p, n+1); in PyOS_StdioReadline()
Dpgenmain.c152 return (char *)PyMem_REALLOC(p, n+1); in PyOS_Readline()
Dtokenizer.c661 buf = PyMem_REALLOC(buf, final_length); in translate_newlines()
902 buf = (char *)PyMem_REALLOC(buf, newlen+1); in tok_nextc()
974 newbuf = (char *)PyMem_REALLOC(newbuf, in tok_nextc()
/external/python/cpython2/Doc/c-api/
Dmemory.rst153 :c:func:`PyMem_MALLOC`, :c:func:`PyMem_REALLOC`, :c:func:`PyMem_FREE`.
/external/python/cpython2/Objects/
Dobmalloc.c1319 return PyMem_REALLOC(p, n); in PyObject_Realloc()
Dobject.c2349 return PyMem_REALLOC(p, nbytes); in PyMem_Realloc()
/external/python/cpython2/Modules/
D_sre.c276 stack = PyMem_REALLOC(state->data_stack, cursize); in data_stack_grow()
/external/python/cpython2/Misc/
DNEWS9346 modules. PyMem_MALLOC, PyMem_REALLOC, PyMem_NEW and PyMem_RESIZE have