HomeSort by relevance Sort by last modified time
    Searched refs:PyMem_RawMalloc (Results 1 - 24 of 24) sorted by null

  /external/python/cpython3/Python/
frozenmain.c 36 argv_copy = PyMem_RawMalloc(sizeof(wchar_t*) * argc);
37 argv_copy2 = PyMem_RawMalloc(sizeof(wchar_t*) * argc);
thread.c 122 Py_tss_t *new_key = (Py_tss_t *)PyMem_RawMalloc(sizeof(Py_tss_t));
thread_pthread.h 213 pythread_callback *callback = PyMem_RawMalloc(sizeof(pythread_callback));
289 lock = (sem_t *)PyMem_RawMalloc(sizeof(sem_t));
460 lock = (pthread_lock *) PyMem_RawMalloc(sizeof(pthread_lock));
fileutils.c 214 result = PyMem_RawMalloc(len + 1);
283 res = PyMem_RawMalloc(argsize * sizeof(wchar_t));
344 res = (wchar_t *)PyMem_RawMalloc((argsize + 1) * sizeof(wchar_t));
378 res = (wchar_t*)PyMem_RawMalloc(argsize * sizeof(wchar_t));
608 result = PyMem_RawMalloc(size);
    [all...]
thread_nt.h 37 PNRMUTEX m = (PNRMUTEX)PyMem_RawMalloc(sizeof(NRMUTEX));
pystate.c 18 Always use PyMem_RawMalloc() and PyMem_RawFree() directly in this file. A
126 PyMem_RawMalloc(sizeof(PyInterpreterState));
358 PyThreadState *tstate = (PyThreadState *)PyMem_RawMalloc(sizeof(PyThreadState));
    [all...]
sysmodule.c 1115 (verblock = PyMem_RawMalloc(verblock_size))) {
    [all...]
ast.c     [all...]
  /external/python/cpython3/Parser/
myreadline.c 153 wbuf = (wchar_t*)PyMem_RawMalloc(wbuflen * sizeof(wchar_t));
172 buf = PyMem_RawMalloc(1);
182 buf = PyMem_RawMalloc(u8len + 1);
232 wbuf = PyMem_RawMalloc(wlen * sizeof(wchar_t));
259 p = (char *)PyMem_RawMalloc(n);
  /external/python/cpython3/Include/
pymem.h 15 PyAPI_FUNC(void *) PyMem_RawMalloc(size_t size);
109 /* strdup() using PyMem_RawMalloc() */
115 /* wcsdup() using PyMem_RawMalloc() */
169 /* PyMem_RawMalloc(), PyMem_RawRealloc() and PyMem_RawFree() */
217 - PyMem_RawMalloc(), PyMem_RawRealloc(), PyMem_RawFree()
  /external/python/cpython3/PC/
getpathp.c 378 keyBuf = keyBufPtr = PyMem_RawMalloc(keyBufLen);
410 ppPaths = PyMem_RawMalloc( sizeof(WCHAR *) * numKeys );
438 ppPaths[index] = PyMem_RawMalloc(reqdSize);
455 dataBuf = PyMem_RawMalloc((dataSize+1) * sizeof(WCHAR));
553 config->program_full_path = PyMem_RawMalloc(
578 wchar_t *buf = (wchar_t*)PyMem_RawMalloc(bufsiz * sizeof(wchar_t));
608 wchar_t *wline = (wchar_t*)PyMem_RawMalloc((wn + 1) * sizeof(wchar_t));
826 buf = PyMem_RawMalloc(bufsz * sizeof(wchar_t));
    [all...]
  /external/python/cpython3/Modules/
_bz2module.c 284 return PyMem_RawMalloc((size_t)items * (size_t)size);
hashtable.c 152 alloc.malloc = PyMem_RawMalloc;
readline.c     [all...]
getpath.c 835 wchar_t *buf = PyMem_RawMalloc(bufsz * sizeof(wchar_t));
main.c 529 wchar_t** argv = (wchar_t **)PyMem_RawMalloc(size);
755 wchar_t *command = PyMem_RawMalloc(sizeof(wchar_t) * len);
    [all...]
overlapped.c 28 # define PyMem_RawMalloc PyMem_Malloc
274 /* Use PyMem_RawMalloc() rather than PyMem_Malloc(), since
277 pdata = PyMem_RawMalloc(sizeof(struct PostCallbackData));
    [all...]
_lzmamodule.c 115 return PyMem_RawMalloc(items * size);
    [all...]
zlibmodule.c 124 return PyMem_RawMalloc((size_t)items * (size_t)size);
    [all...]
_winapi.c 548 rdb = (_Py_PREPARSE_DATA_BUFFER)PyMem_RawMalloc(rdb_size);
    [all...]
_testcapimodule.c     [all...]
posixmodule.c     [all...]
  /external/python/cpython3/Objects/
obmalloc.c 86 /* PyMem_RawMalloc(0) means malloc(1). Some systems would return NULL
510 PyMem_RawMalloc(size_t size)
526 /* see PyMem_RawMalloc() */
535 /* see PyMem_RawMalloc() */
550 /* see PyMem_RawMalloc() */
559 /* see PyMem_RawMalloc() */
568 /* see PyMem_RawMalloc() */
592 wchar_t *str2 = PyMem_RawMalloc(size);
606 char *copy = PyMem_RawMalloc(size);
630 /* see PyMem_RawMalloc() */
    [all...]
unicodeobject.c     [all...]

Completed in 554 milliseconds