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

1 2

  /external/python/cpython2/Misc/
pymemcompat.h 21 PyObject_Malloc, PyObject_Realloc, PyObject_Free
49 #define PyObject_Malloc PyMem_Malloc
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
objimpl.h 80 PyObject_Malloc(0) returns a unique non-NULL pointer if possible.
82 PyObject_Realloc(NULL, n) acts like PyObject_Malloc(n).
97 PyAPI_FUNC(void *) PyObject_Malloc(size_t);
118 #define PyObject_MALLOC _PyObject_DebugMalloc
119 #define PyObject_Malloc _PyObject_DebugMalloc
126 #define PyObject_MALLOC PyObject_Malloc
132 #define PyObject_MALLOC PyMem_MALLOC
194 (PyObject *) PyObject_MALLOC( _PyObject_SIZE(typeobj) ), (typeobj)) )
198 (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
objimpl.h 80 PyObject_Malloc(0) returns a unique non-NULL pointer if possible.
82 PyObject_Realloc(NULL, n) acts like PyObject_Malloc(n).
97 PyAPI_FUNC(void *) PyObject_Malloc(size_t);
118 #define PyObject_MALLOC _PyObject_DebugMalloc
119 #define PyObject_Malloc _PyObject_DebugMalloc
126 #define PyObject_MALLOC PyObject_Malloc
132 #define PyObject_MALLOC PyMem_MALLOC
194 (PyObject *) PyObject_MALLOC( _PyObject_SIZE(typeobj) ), (typeobj)) )
198 (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
    [all...]
  /external/python/cpython2/Include/
objimpl.h 80 PyObject_Malloc(0) returns a unique non-NULL pointer if possible.
82 PyObject_Realloc(NULL, n) acts like PyObject_Malloc(n).
97 PyAPI_FUNC(void *) PyObject_Malloc(size_t);
118 #define PyObject_MALLOC _PyObject_DebugMalloc
119 #define PyObject_Malloc _PyObject_DebugMalloc
126 #define PyObject_MALLOC PyObject_Malloc
132 #define PyObject_MALLOC PyMem_MALLOC
194 (PyObject *) PyObject_MALLOC( _PyObject_SIZE(typeobj) ), (typeobj)) )
198 (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
future.c 124 ff = (PyFutureFeatures *)PyObject_Malloc(sizeof(PyFutureFeatures));
compile.c 469 u = (struct compiler_unit *)PyObject_Malloc(sizeof(
572 b = (basicblock *)PyObject_Malloc(sizeof(basicblock));
624 b->b_instr = (struct instr *)PyObject_Malloc(
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
future.c 129 ff = (PyFutureFeatures *)PyObject_Malloc(sizeof(PyFutureFeatures));
compile.c 446 u = (struct compiler_unit *)PyObject_Malloc(sizeof(
549 b = (basicblock *)PyObject_Malloc(sizeof(basicblock));
601 b->b_instr = (struct instr *)PyObject_Malloc(
    [all...]
  /external/python/cpython2/Python/
future.c 124 ff = (PyFutureFeatures *)PyObject_Malloc(sizeof(PyFutureFeatures));
compile.c 469 u = (struct compiler_unit *)PyObject_Malloc(sizeof(
572 b = (basicblock *)PyObject_Malloc(sizeof(basicblock));
624 b->b_instr = (struct instr *)PyObject_Malloc(
    [all...]
  /external/python/cpython3/Include/
objimpl.h 80 PyObject_Malloc(0) returns a unique non-NULL pointer if possible.
82 PyObject_Realloc(NULL, n) acts like PyObject_Malloc(n).
97 PyAPI_FUNC(void *) PyObject_Malloc(size_t size);
117 #define PyObject_MALLOC PyObject_Malloc
171 (PyObject *) PyObject_MALLOC( _PyObject_SIZE(typeobj) ), (typeobj)) )
175 (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
  /external/python/cpython3/Python/
future.c 134 ff = (PyFutureFeatures *)PyObject_Malloc(sizeof(PyFutureFeatures));
compile.c 546 u = (struct compiler_unit *)PyObject_Malloc(sizeof(
761 b = (basicblock *)PyObject_Malloc(sizeof(basicblock));
803 b->b_instr = (struct instr *)PyObject_Malloc(
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
obmalloc.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
obmalloc.c     [all...]
  /external/python/cpython2/Objects/
obmalloc.c     [all...]
bytesobject.c 85 op = (PyBytesObject *)PyObject_Malloc(PyBytesObject_SIZE + size);
163 op = (PyBytesObject *)PyObject_MALLOC(PyBytesObject_SIZE + size);
    [all...]
  /external/python/cpython3/Objects/
bytearrayobject.c 153 new->ob_bytes = PyObject_Malloc(alloc);
242 sval = PyObject_Malloc(alloc);
937 buffer = PyObject_Malloc(newsize);
    [all...]
obmalloc.c 628 PyObject_Malloc(size_t size)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_elementtree.c 264 self->extra = PyObject_Malloc(sizeof(ElementObjectExtra));
372 children = PyObject_Malloc(size * sizeof(PyObject*));
    [all...]
  /external/python/cpython2/Modules/
_elementtree.c 274 self->extra = PyObject_Malloc(sizeof(ElementObjectExtra));
389 children = PyObject_Malloc(size * sizeof(PyObject*));
    [all...]
  /external/python/cpython3/Modules/
gcmodule.c     [all...]
_elementtree.c 216 self->extra = PyObject_Malloc(sizeof(ElementObjectExtra));
471 children = PyObject_Malloc(size * sizeof(PyObject*));
    [all...]
_testcapimodule.c     [all...]
pyexpat.c 19 PyObject_Malloc, PyObject_Realloc, PyObject_Free};
    [all...]

Completed in 162 milliseconds

1 2