HomeSort by relevance Sort by last modified time
    Searched refs:PyMem_REALLOC (Results 1 - 25 of 29) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pymem.h 53 PyAPI_FUNC(void *) PyMem_Realloc(void *, size_t);
63 #define PyMem_REALLOC _PyMem_DebugRealloc
76 #define PyMem_REALLOC(p, n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
107 (type *) PyMem_Realloc((p), (n) * sizeof(type)) )
110 (type *) PyMem_REALLOC((p), (n) * sizeof(type)) )
objimpl.h 133 #define PyObject_REALLOC PyMem_REALLOC
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pymem.h 53 PyAPI_FUNC(void *) PyMem_Realloc(void *, size_t);
63 #define PyMem_REALLOC _PyMem_DebugRealloc
76 #define PyMem_REALLOC(p, n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
107 (type *) PyMem_Realloc((p), (n) * sizeof(type)) )
110 (type *) PyMem_REALLOC((p), (n) * sizeof(type)) )
objimpl.h 133 #define PyObject_REALLOC PyMem_REALLOC
  /external/python/cpython2/Include/
pymem.h 53 PyAPI_FUNC(void *) PyMem_Realloc(void *, size_t);
63 #define PyMem_REALLOC _PyMem_DebugRealloc
76 #define PyMem_REALLOC(p, n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
107 (type *) PyMem_Realloc((p), (n) * sizeof(type)) )
110 (type *) PyMem_REALLOC((p), (n) * sizeof(type)) )
objimpl.h 133 #define PyObject_REALLOC PyMem_REALLOC
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
myreadline.c 143 p = (char *)PyMem_REALLOC(p, n + incr);
153 return (char *)PyMem_REALLOC(p, n+1);
tokenizer.c 657 buf = PyMem_REALLOC(buf, final_length);
898 buf = (char *)PyMem_REALLOC(buf, newlen+1);
970 newbuf = (char *)PyMem_REALLOC(newbuf,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
myreadline.c 146 p = (char *)PyMem_REALLOC(p, n + incr);
156 return (char *)PyMem_REALLOC(p, n+1);
pgenmain.c 152 return (char *)PyMem_REALLOC(p, n+1);
tokenizer.c 637 buf = PyMem_REALLOC(buf, final_length);
878 buf = (char *)PyMem_REALLOC(buf, newlen+1);
950 newbuf = (char *)PyMem_REALLOC(newbuf,
    [all...]
  /external/python/cpython2/Parser/
myreadline.c 143 p = (char *)PyMem_REALLOC(p, n + incr);
153 return (char *)PyMem_REALLOC(p, n+1);
pgenmain.c 153 return (char *)PyMem_REALLOC(p, n+1);
tokenizer.c 661 buf = PyMem_REALLOC(buf, final_length);
902 buf = (char *)PyMem_REALLOC(buf, newlen+1);
974 newbuf = (char *)PyMem_REALLOC(newbuf,
    [all...]
  /external/python/cpython3/Include/
pymem.h 105 PyAPI_FUNC(void *) PyMem_Realloc(void *ptr, size_t new_size);
128 #define PyMem_REALLOC(p, n) PyMem_Realloc(p, n)
156 (type *) PyMem_Realloc((p), (n) * sizeof(type)) )
159 (type *) PyMem_REALLOC((p), (n) * sizeof(type)) )
172 /* PyMem_Malloc(), PyMem_Realloc() and PyMem_Free() */
218 - PyMem_Malloc(), PyMem_Realloc(), PyMem_Free()
  /external/python/cpython3/Parser/
pgenmain.c 167 return (char *)PyMem_REALLOC(p, n+1);
tokenizer.c 738 buf = PyMem_REALLOC(buf, final_length);
978 buf = (char *)PyMem_REALLOC(buf, newlen+1);
1050 newbuf = (char *)PyMem_REALLOC(newbuf,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c     [all...]
object.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c     [all...]
object.c     [all...]
  /external/python/cpython2/Objects/
obmalloc.c     [all...]
object.c     [all...]
  /external/python/cpython3/Modules/
_sre.c 222 stack = PyMem_REALLOC(state->data_stack, cursize);
    [all...]
  /external/python/cpython3/Python/
marshal.c 692 char *tmp = PyMem_REALLOC(p->buf, n);
    [all...]

Completed in 894 milliseconds

1 2