Home
last modified time | relevance | path

Searched refs:PyMem_MALLOC (Results 1 – 25 of 45) sorted by relevance

12

/external/python/cpython2/Include/
Dpymem.h62 #define PyMem_MALLOC _PyMem_DebugMalloc macro
74 #define PyMem_MALLOC(n) ((size_t)(n) > (size_t)PY_SSIZE_T_MAX ? NULL \ macro
97 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
Dobjimpl.h132 #define PyObject_MALLOC PyMem_MALLOC
/external/python/cpython3/Include/
Dpymem.h127 #define PyMem_MALLOC(n) PyMem_Malloc(n) macro
146 ( (type *) PyMem_MALLOC((n) * sizeof(type)) ) )
/external/python/cpython3/Parser/
Dtokenizer.c122 struct tok_state *tok = (struct tok_state *)PyMem_MALLOC( in tok_new()
158 char* result = (char *)PyMem_MALLOC(len + 1); in new_string()
707 buf = PyMem_MALLOC(needed_length); in translate_newlines()
840 tok->encoding = (char *)PyMem_MALLOC(6); in PyTokenizer_FromUTF8()
861 if ((tok->buf = (char *)PyMem_MALLOC(BUFSIZ)) == NULL) { in PyTokenizer_FromFile()
873 tok->encoding = PyMem_MALLOC(strlen(enc)+1); in PyTokenizer_FromFile()
955 newtok = PyMem_MALLOC(buflen+1); in tok_nextc()
1014 PyMem_MALLOC(BUFSIZ); in tok_nextc()
1886 encoding = (char *)PyMem_MALLOC(strlen(tok->encoding) + 1); in PyTokenizer_FindEncodingFilename()
Dpgenmain.c154 char *p = (char *)PyMem_MALLOC(n); in PyOS_Readline()
Dparser.c78 ps = (parser_state *)PyMem_MALLOC(sizeof(parser_state)); in PyParser_New()
/external/python/cpython2/Python/
Dmysnprintf.c78 buffer = PyMem_MALLOC(size + _PyOS_vsnprintf_EXTRA_SPACE); in PyOS_vsnprintf()
Dimport.c1108 buf = PyMem_MALLOC(MAXPATHLEN+1); in load_source_module()
1194 buf = PyMem_MALLOC(MAXPATHLEN+1); in load_package()
1362 name = PyMem_MALLOC(MAXPATHLEN+1); in find_module()
2260 buf = PyMem_MALLOC(MAXPATHLEN+1); in import_module_level()
2731 buf = PyMem_MALLOC(MAXPATHLEN+1); in import_submodule()
2833 buf = PyMem_MALLOC(MAXPATHLEN+1); in PyImport_ReloadModule()
2997 pathname = PyMem_MALLOC(MAXPATHLEN+1); in call_find_module()
Dpystrtod.c218 copy = (char *)PyMem_MALLOC(end - digits_pos + in _PyOS_ascii_strtod()
/external/python/cpython3/Python/
Dmysnprintf.c77 buffer = PyMem_MALLOC(size + _PyOS_vsnprintf_EXTRA_SPACE); in PyOS_vsnprintf()
Dpystrtod.c257 copy = (char *)PyMem_MALLOC(end - digits_pos + in _PyOS_ascii_strtod()
Dmarshal.c684 p->buf = PyMem_MALLOC(n); in r_string()
1554 char* pBuf = (char *)PyMem_MALLOC(filesize); in PyMarshal_ReadLastObjectFromFile()
/external/python/cpython3/Doc/includes/
Dcapsulethunk.h77 char *name_dup = (char *)PyMem_MALLOC(name_length); in PyCapsule_Import()
/external/python/cpython2/Doc/includes/
Dcapsulethunk.h77 char *name_dup = (char *)PyMem_MALLOC(name_length); in PyCapsule_Import()
/external/python/cpython2/Parser/
Dmyreadline.c113 if ((p = (char *)PyMem_MALLOC(n)) == NULL) in PyOS_StdioReadline()
Dpgenmain.c140 char *p = (char *)PyMem_MALLOC(n); in PyOS_Readline()
Dtokenizer.c100 struct tok_state *tok = (struct tok_state *)PyMem_MALLOC( in tok_new()
136 char* result = (char *)PyMem_MALLOC(len + 1); in new_string()
630 buf = PyMem_MALLOC(needed_length); in translate_newlines()
759 if ((tok->buf = (char *)PyMem_MALLOC(BUFSIZ)) == NULL) { in PyTokenizer_FromFile()
938 PyMem_MALLOC(BUFSIZ); in tok_nextc()
Dparser.c78 ps = (parser_state *)PyMem_MALLOC(sizeof(parser_state)); in PyParser_New()
/external/python/cpython2/Objects/
Dcapsule.c201 char *name_dup = (char *)PyMem_MALLOC(name_length); in PyCapsule_Import()
Dlistobject.c152 op->ob_item = (PyObject **) PyMem_MALLOC(nbytes); in PyList_New()
672 recycle = (PyObject **)PyMem_MALLOC(s); in list_ass_slice()
2646 PyMem_MALLOC(slicelength*sizeof(PyObject*)); in list_ass_subscript()
2727 PyMem_MALLOC(slicelength*sizeof(PyObject*)); in list_ass_subscript()
Dintobject.c52 p = (PyIntObject *) PyMem_MALLOC(sizeof(PyIntBlock)); in fill_free_list()
407 char *buffer = (char *)PyMem_MALLOC(length+1); in PyInt_FromUnicode()
/external/python/cpython3/Objects/
Dcapsule.c201 char *name_dup = (char *)PyMem_MALLOC(name_length); in PyCapsule_Import()
Dmoduleobject.c219 m->md_state = PyMem_MALLOC(module->m_size); in _PyModule_CreateInitialized()
395 md->md_state = PyMem_MALLOC(def->m_size); in PyModule_ExecDef()
Dlistobject.c635 recycle = (PyObject **)PyMem_MALLOC(s); in list_ass_slice()
2193 keys = PyMem_MALLOC(sizeof(PyObject *) * saved_ob_size); in list_sort_impl()
2812 PyMem_MALLOC(slicelength*sizeof(PyObject*)); in list_ass_subscript()
2893 PyMem_MALLOC(slicelength*sizeof(PyObject*)); in list_ass_subscript()
/external/python/cpython2/Modules/
Dstropmodule.c1121 out_s = (char *)PyMem_MALLOC(1); in mymemreplace()
1128 new_s = (char *)PyMem_MALLOC(new_len); in mymemreplace()

12