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

1 2 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyarena.h 11 typedef struct _arena PyArena;
35 PyAPI_FUNC(PyArena *) PyArena_New(void);
36 PyAPI_FUNC(void) PyArena_Free(PyArena *);
50 PyAPI_FUNC(void *) PyArena_Malloc(PyArena *, size_t size);
56 PyAPI_FUNC(int) PyArena_AddPyObject(PyArena *, PyObject *);
ast.h 8 const char *, PyArena *);
compile.h 33 PyCompilerFlags *, PyArena *);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyarena.h 11 typedef struct _arena PyArena;
35 PyAPI_FUNC(PyArena *) PyArena_New(void);
36 PyAPI_FUNC(void) PyArena_Free(PyArena *);
50 PyAPI_FUNC(void *) PyArena_Malloc(PyArena *, size_t size);
56 PyAPI_FUNC(int) PyArena_AddPyObject(PyArena *, PyObject *);
ast.h 8 const char *, PyArena *);
compile.h 33 PyCompilerFlags *, PyArena *);
  /external/python/cpython2/Include/
pyarena.h 11 typedef struct _arena PyArena;
35 PyAPI_FUNC(PyArena *) PyArena_New(void);
36 PyAPI_FUNC(void) PyArena_Free(PyArena *);
50 PyAPI_FUNC(void *) PyArena_Malloc(PyArena *, size_t size);
56 PyAPI_FUNC(int) PyArena_AddPyObject(PyArena *, PyObject *);
ast.h 8 const char *, PyArena *);
compile.h 33 PyCompilerFlags *, PyArena *);
  /external/python/cpython3/Include/
pyarena.h 12 typedef struct _arena PyArena;
36 PyAPI_FUNC(PyArena *) PyArena_New(void);
37 PyAPI_FUNC(void) PyArena_Free(PyArena *);
51 PyAPI_FUNC(void *) PyArena_Malloc(PyArena *, size_t size);
57 PyAPI_FUNC(int) PyArena_AddPyObject(PyArena *, PyObject *);
ast.h 12 PyArena *arena);
17 PyArena *arena);
Python-ast.h 443 mod_ty _Py_Module(asdl_seq * body, PyArena *arena);
445 mod_ty _Py_Interactive(asdl_seq * body, PyArena *arena);
447 mod_ty _Py_Expression(expr_ty body, PyArena *arena);
449 mod_ty _Py_Suite(asdl_seq * body, PyArena *arena);
453 int col_offset, PyArena *arena);
457 int lineno, int col_offset, PyArena *arena);
461 int col_offset, PyArena *arena);
463 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
465 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
469 col_offset, PyArena *arena)
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyarena.h 11 typedef struct _arena PyArena;
35 PyAPI_FUNC(PyArena *) PyArena_New(void);
36 PyAPI_FUNC(void) PyArena_Free(PyArena *);
50 PyAPI_FUNC(void *) PyArena_Malloc(PyArena *, size_t size);
56 PyAPI_FUNC(int) PyArena_AddPyObject(PyArena *, PyObject *);
ast.h 8 const char *, PyArena *);
compile.h 33 PyCompilerFlags *, PyArena *);
  /prebuilts/gdb/linux-x86/include/python2.7/
pyarena.h 11 typedef struct _arena PyArena;
35 PyAPI_FUNC(PyArena *) PyArena_New(void);
36 PyAPI_FUNC(void) PyArena_Free(PyArena *);
50 PyAPI_FUNC(void *) PyArena_Malloc(PyArena *, size_t size);
56 PyAPI_FUNC(int) PyArena_AddPyObject(PyArena *, PyObject *);
ast.h 8 const char *, PyArena *);
compile.h 33 PyCompilerFlags *, PyArena *);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyarena.h 11 typedef struct _arena PyArena;
35 PyAPI_FUNC(PyArena *) PyArena_New(void);
36 PyAPI_FUNC(void) PyArena_Free(PyArena *);
50 PyAPI_FUNC(void *) PyArena_Malloc(PyArena *, size_t size);
56 PyAPI_FUNC(int) PyArena_AddPyObject(PyArena *, PyObject *);
ast.h 8 const char *, PyArena *);
compile.h 33 PyCompilerFlags *, PyArena *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyarena.h 11 typedef struct _arena PyArena;
35 PyAPI_FUNC(PyArena *) PyArena_New(void);
36 PyAPI_FUNC(void) PyArena_Free(PyArena *);
50 PyAPI_FUNC(void *) PyArena_Malloc(PyArena *, size_t size);
56 PyAPI_FUNC(int) PyArena_AddPyObject(PyArena *, PyObject *);
ast.h 8 const char *, PyArena *);
compile.h 33 PyCompilerFlags *, PyArena *);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pyarena.c 2 #include "pyarena.h"
130 PyArena *
133 PyArena* arena = (PyArena *)malloc(sizeof(PyArena));
135 return (PyArena*)PyErr_NoMemory();
141 return (PyArena*)PyErr_NoMemory();
147 return (PyArena*)PyErr_NoMemory();
160 PyArena_Free(PyArena *arena)
183 PyArena_Malloc(PyArena *arena, size_t size)
    [all...]

Completed in 1218 milliseconds

1 2 3 4