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

1 2 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pymem.h 24 different heaps, and if you use PyMem_Malloc you'll get the memory from the
52 PyAPI_FUNC(void *) PyMem_Malloc(size_t);
62 #define PyMem_MALLOC _PyMem_DebugMalloc
68 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
94 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
objimpl.h 132 #define PyObject_MALLOC PyMem_MALLOC
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pymem.h 24 different heaps, and if you use PyMem_Malloc you'll get the memory from the
52 PyAPI_FUNC(void *) PyMem_Malloc(size_t);
62 #define PyMem_MALLOC _PyMem_DebugMalloc
68 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
94 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
objimpl.h 132 #define PyObject_MALLOC PyMem_MALLOC
  /external/python/cpython2/Include/
pymem.h 24 different heaps, and if you use PyMem_Malloc you'll get the memory from the
52 PyAPI_FUNC(void *) PyMem_Malloc(size_t);
62 #define PyMem_MALLOC _PyMem_DebugMalloc
68 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \
94 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
objimpl.h 132 #define PyObject_MALLOC PyMem_MALLOC
  /external/python/cpython3/Include/
pymem.h 73 different heaps, and if you use PyMem_Malloc you'll get the memory from the
101 PyAPI_FUNC(void *) PyMem_Malloc(size_t size);
112 /* strdup() using PyMem_Malloc() */
121 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
127 #define PyMem_MALLOC(n) PyMem_Malloc(n)
143 ( (type *) PyMem_Malloc((n) * sizeof(type)) ) )
146 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
172 /* PyMem_Malloc(), PyMem_Realloc() and PyMem_Free() */
218 - PyMem_Malloc(), PyMem_Realloc(), PyMem_Free(
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
mysnprintf.c 36 PyMem_Malloc couldn't obtain space for a temp buffer.
78 buffer = PyMem_MALLOC(size + _PyOS_vsnprintf_EXTRA_SPACE);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
mysnprintf.c 36 PyMem_Malloc couldn't obtain space for a temp buffer.
78 buffer = PyMem_MALLOC(size + _PyOS_vsnprintf_EXTRA_SPACE);
  /external/python/cpython2/Python/
mysnprintf.c 36 PyMem_Malloc couldn't obtain space for a temp buffer.
78 buffer = PyMem_MALLOC(size + _PyOS_vsnprintf_EXTRA_SPACE);
  /external/python/cpython3/Python/
mysnprintf.c 35 PyMem_Malloc couldn't obtain space for a temp buffer.
77 buffer = PyMem_MALLOC(size + _PyOS_vsnprintf_EXTRA_SPACE);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
myreadline.c 113 if ((p = (char *)PyMem_MALLOC(n)) == NULL)
160 Note: Python expects in return a buffer allocated with PyMem_Malloc. */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
myreadline.c 116 if ((p = (char *)PyMem_MALLOC(n)) == NULL)
163 Note: Python expects in return a buffer allocated with PyMem_Malloc. */
pgenmain.c 139 char *p = (char *)PyMem_MALLOC(n);
tokenizer.c 100 struct tok_state *tok = (struct tok_state *)PyMem_MALLOC(
136 char* result = (char *)PyMem_MALLOC(len + 1);
606 buf = PyMem_MALLOC(needed_length);
735 if ((tok->buf = (char *)PyMem_MALLOC(BUFSIZ)) == NULL) {
915 PyMem_MALLOC(BUFSIZ);
    [all...]
  /external/python/cpython2/Doc/includes/
capsulethunk.h 77 char *name_dup = (char *)PyMem_MALLOC(name_length);
  /external/python/cpython2/Parser/
myreadline.c 113 if ((p = (char *)PyMem_MALLOC(n)) == NULL)
160 Note: Python expects in return a buffer allocated with PyMem_Malloc. */
pgenmain.c 140 char *p = (char *)PyMem_MALLOC(n);
  /external/python/cpython3/Doc/includes/
capsulethunk.h 77 char *name_dup = (char *)PyMem_MALLOC(name_length);
  /external/python/cpython3/Parser/
tokenizer.c 122 struct tok_state *tok = (struct tok_state *)PyMem_MALLOC(
158 char* result = (char *)PyMem_MALLOC(len + 1);
707 buf = PyMem_MALLOC(needed_length);
840 tok->encoding = (char *)PyMem_MALLOC(6);
861 if ((tok->buf = (char *)PyMem_MALLOC(BUFSIZ)) == NULL) {
873 tok->encoding = PyMem_MALLOC(strlen(enc)+1);
955 newtok = PyMem_MALLOC(buflen+1);
1014 PyMem_MALLOC(BUFSIZ);
    [all...]
pgenmain.c 154 char *p = (char *)PyMem_MALLOC(n);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
capsule.c 201 char *name_dup = (char *)PyMem_MALLOC(name_length);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
capsule.c 201 char *name_dup = (char *)PyMem_MALLOC(name_length);
  /external/python/cpython2/Objects/
capsule.c 201 char *name_dup = (char *)PyMem_MALLOC(name_length);
  /external/python/cpython3/Objects/
capsule.c 201 char *name_dup = (char *)PyMem_MALLOC(name_length);

Completed in 401 milliseconds

1 2 3 4