OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PyMem_Malloc
(Results
26 - 50
of
170
) sorted by null
1
2
3
4
5
6
7
/external/python/cpython3/Modules/_multiprocessing/
semaphore.c
451
name_copy =
PyMem_Malloc
(strlen(name) + 1);
495
name_copy =
PyMem_Malloc
(strlen(name) + 1);
/external/python/cpython3/Modules/
_randommodule.c
285
key = (uint32_t *)
PyMem_Malloc
((size_t)4 * keyused);
408
wordarray = (uint32_t *)
PyMem_Malloc
(words * 4);
_lzmamodule.c
113
/*
PyMem_Malloc
() cannot be used:
215
options = (lzma_options_lzma *)
PyMem_Malloc
(sizeof *options);
260
options = (lzma_options_delta *)
PyMem_Malloc
(sizeof *options);
284
options = (lzma_options_bcj *)
PyMem_Malloc
(sizeof *options);
1022
d->input_buffer =
PyMem_Malloc
(lzs->avail_in);
[
all
...]
_scproxy.c
33
buf =
PyMem_Malloc
(len*4);
atexitmodule.c
158
new_callback =
PyMem_Malloc
(sizeof(atexit_callback));
_tkinter.c
377
q = buf = (char *)
PyMem_Malloc
(size);
667
argv0 = (char*)
PyMem_Malloc
(strlen(className) + 1);
701
args = (char*)
PyMem_Malloc
(len);
1040
argv = (Tcl_Obj **)
PyMem_Malloc
(((size_t)size) * sizeof(Tcl_Obj *));
1075
outbuf = (Tcl_UniChar*)
PyMem_Malloc
(allocsize);
[
all
...]
_bz2module.c
282
/*
PyMem_Malloc
() cannot be used: compress() and decompress()
556
d->input_buffer =
PyMem_Malloc
(d->bzs_avail_in_real);
_curses_panel.c
119
if ((new = (list_of_panels *)
PyMem_Malloc
(sizeof(list_of_panels))) == NULL) {
/external/python/cpython3/Modules/_io/
winconsoleio.c
549
wchar_t *buf = (wchar_t*)
PyMem_Malloc
(maxlen * sizeof(wchar_t));
631
buf = (wchar_t *)
PyMem_Malloc
(sizeof(wchar_t));
798
buf = (wchar_t*)
PyMem_Malloc
((bufsize + 1) * sizeof(wchar_t));
998
wbuf = (wchar_t*)
PyMem_Malloc
(wlen * sizeof(wchar_t));
[
all
...]
/external/python/cpython3/Objects/
call.c
853
args2 =
PyMem_Malloc
(nargs * sizeof(PyObject *));
891
stack =
PyMem_Malloc
((argcount + 1) * sizeof(PyObject *));
[
all
...]
memoryobject.c
392
mem =
PyMem_Malloc
(dest->shape[0] * dest->itemsize);
424
mem =
PyMem_Malloc
(dest->shape[dest->ndim-1] * dest->itemsize);
482
strides =
PyMem_Malloc
(src->ndim * (sizeof *src->strides));
808
char *cp =
PyMem_Malloc
(strlen(fmt)+1);
992
fb =
PyMem_Malloc
(sizeof *fb + 3 * src->ndim * (sizeof *fb->array));
[
all
...]
/external/python/cpython3/Parser/
myreadline.c
314
Note: Python expects in return a buffer allocated with
PyMem_Malloc
. */
370
res =
PyMem_Malloc
(len);
/external/python/cpython2/PC/
_winreg.c
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
readline.c
1065
p =
PyMem_Malloc
(1);
1093
/* Copy the malloc'ed buffer into a
PyMem_Malloc
'ed one and
1096
p =
PyMem_Malloc
(n+2);
getpath.c
578
buf = (char *)
PyMem_Malloc
(bufsz);
/external/python/cpython2/Modules/
readline.c
1152
p =
PyMem_Malloc
(1);
1179
/* Copy the malloc'ed buffer into a
PyMem_Malloc
'ed one and
1182
p =
PyMem_Malloc
(n+2);
[
all
...]
getpath.c
578
buf = (char *)
PyMem_Malloc
(bufsz);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
getpath.c
611
buf = (char *)
PyMem_Malloc
(bufsz);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
getpath.c
542
buf = (char *)
PyMem_Malloc
(bufsz);
/external/python/cpython3/Modules/_ctypes/
callproc.c
159
void *space =
PyMem_Malloc
(sizeof(int) * 2);
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
formatter.h
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
formatter.h
[
all
...]
/external/python/cpython2/Objects/stringlib/
formatter.h
1018
unicode_tmp = (Py_UNICODE*)
PyMem_Malloc
((n_digits)*sizeof(Py_UNICODE));
[
all
...]
/external/python/cpython3/PC/
winreg.c
[
all
...]
/external/python/cpython3/Modules/_sha3/
sha3module.c
604
digest = (unsigned char*)
PyMem_Malloc
(digestlen + SHA3_LANESIZE);
Completed in 477 milliseconds
1
2
3
4
5
6
7