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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pymem.h 92 #define PyMem_New(type, n) \
95 #define PyMem_NEW(type, n) \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pymem.h 92 #define PyMem_New(type, n) \
95 #define PyMem_NEW(type, n) \
  /external/python/cpython2/Include/
pymem.h 92 #define PyMem_New(type, n) \
95 #define PyMem_NEW(type, n) \
  /external/python/cpython3/Include/
pymem.h 141 #define PyMem_New(type, n) \
144 #define PyMem_NEW(type, n) \
  /external/python/cpython3/Modules/
atexitmodule.c 324 modstate->atexit_callbacks = PyMem_New(atexit_callback*,
selectmodule.c 235 rfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
236 wfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
237 efd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
1091 fds = PyMem_NEW(struct pollfd, limit.rlim_cur);
    [all...]
_localemodule.c 356 buf = PyMem_New(wchar_t, n1);
posixmodule.c     [all...]
itertoolsmodule.c     [all...]
socketmodule.c     [all...]
pyexpat.c 968 new_parser->handlers = PyMem_New(PyObject *, i);
    [all...]
zipimport.c 262 p = buf = PyMem_New(Py_UCS4, len);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
peephole.c 245 unsigned int *blocks = PyMem_New(unsigned int, len);
346 addrmap = PyMem_New(int, codelen);
  /external/python/cpython2/Modules/_ctypes/
stgdict.c 399 stgdict->ffi_type_pointer.elements = PyMem_New(ffi_type *, basedict->length + len + 1);
419 stgdict->ffi_type_pointer.elements = PyMem_New(ffi_type *, len + 1);
  /external/python/cpython2/Python/
peephole.c 245 unsigned int *blocks = PyMem_New(unsigned int, len);
346 addrmap = PyMem_New(int, codelen);
  /external/python/cpython3/Modules/_ctypes/
stgdict.c 415 stgdict->ffi_type_pointer.elements = PyMem_New(ffi_type *, basedict->length + len + 1);
435 stgdict->ffi_type_pointer.elements = PyMem_New(ffi_type *, len + 1);
  /external/python/cpython3/PC/
winreg.c 551 *retDataBuf = (BYTE *)PyMem_NEW(DWORD, 1);
569 *retDataBuf = (BYTE *)PyMem_NEW(DWORD64, 1);
599 *retDataBuf = (BYTE *)PyMem_NEW(wchar_t, 1);
638 *retDataBuf = (BYTE *)PyMem_NEW(char,
685 *retDataBuf = (BYTE *)PyMem_NEW(char, view.len);
740 wchar_t **str = PyMem_New(wchar_t *, s);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
selectmodule.c 251 rfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
252 wfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
253 efd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
1003 evs = PyMem_New(struct epoll_event, maxevents);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
selectmodule.c 251 rfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
252 wfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
253 efd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
1037 evs = PyMem_New(struct epoll_event, maxevents);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
selectmodule.c 251 rfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
252 wfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
253 efd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
1003 evs = PyMem_New(struct epoll_event, maxevents);
    [all...]
  /external/python/cpython2/Modules/
selectmodule.c 240 rfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
241 wfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
242 efd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
1037 evs = PyMem_New(struct epoll_event, maxevents);
    [all...]
itertoolsmodule.c     [all...]
  /external/python/cpython3/Python/
peephole.c 169 unsigned int *blocks = PyMem_New(unsigned int, len);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
itertoolsmodule.c     [all...]
  /external/python/cpython3/Modules/_io/
winconsoleio.c 107 pname_buf = PyMem_New(wchar_t, length);
    [all...]

Completed in 1398 milliseconds

1 2