HomeSort by relevance Sort by last modified time
    Searched refs:PyMem_REALLOC (Results 1 - 25 of 37) 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
  /prebuilts/gdb/darwin-x86/include/python2.7/
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
  /prebuilts/gdb/linux-x86/include/python2.7/
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
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
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
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
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 152 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 107 PyAPI_FUNC(void *) PyMem_Realloc(void *ptr, size_t new_size);
124 #define PyMem_REALLOC(p, n) PyMem_Realloc(p, n)
152 (type *) PyMem_Realloc((p), (n) * sizeof(type)) )
155 (type *) PyMem_REALLOC((p), (n) * sizeof(type)) )
168 /* PyMem_Malloc(), PyMem_Realloc() and PyMem_Free() */
214 - PyMem_Malloc(), PyMem_Realloc(), PyMem_Free()
  /external/python/cpython3/Parser/
pgenmain.c 168 return (char *)PyMem_REALLOC(p, n+1);
tokenizer.c 741 buf = PyMem_REALLOC(buf, final_length);
976 buf = (char *)PyMem_REALLOC(buf, newlen+1);
1048 newbuf = (char *)PyMem_REALLOC(newbuf,
    [all...]

Completed in 421 milliseconds

1 2