Home | History | Annotate | Download | only in Include

Lines Matching refs:PyObject_Malloc

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)) ),\