1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
PyObject * @ PyArray_Type @ (void)
int @ XXX_PyArray_SetNumericOps @ (PyObject *)
int @ XXX_PyArray_INCREF @ (PyArrayObject *ap)
int @ XXX_PyArray_XDECREF @ (PyArrayObject *ap)
PyObject * @ XXX_PyArrayError @ (void)
void @ XXX_PyArray_SetStringFunction @ (PyObject *op, int repr)
PyArray_Descr * @ PyArray_DescrFromType @ (int)
PyObject * @ PyArray_Cast @ (PyArrayObject *, int)
int @ PyArray_CanCastSafely @ (int fromtype, int totype)
int @ PyArray_ObjectType @ (PyObject *object, int min_type)
int @ _PyArray_multiply_list @ (int *lp, int n)
int @ PyArray_Size @ (PyObject *)
PyObject * @ PyArray_FromDims @ (int, int *, int)
PyObject * @ PyArray_FromDimsAndData @ (int, int *, int, char *)
PyObject * @ PyArray_ContiguousFromObject @ (PyObject *, int, int, int)
PyObject * @ PyArray_CopyFromObject @ (PyObject *, int, int, int)
PyObject * @ PyArray_FromObject @ (PyObject *, int, int, int)
PyObject * @ PyArray_Return @ (PyArrayObject *)
PyObject * @ PyArray_Reshape @ (PyArrayObject *ap, PyObject *shape)
PyObject * @ PyArray_Copy @ (PyArrayObject *ap)
PyObject * @ PyArray_Take @ (PyObject *ap, PyObject *items, int axis)
int @ PyArray_As1D @ (PyObject **op, char **ptr, int *d1, int typecode)
int @ PyArray_As2D @ (PyObject **op, char ***ptr, int *d1, int *d2, int typecode)
int @ PyArray_Free @ (PyObject *op, char *ptr)
PyObject * @ XXX_PyArray_FromDimsAndDataAndDescr @ (int, int *, PyArray_Descr *, char *)
int @ PyArray_Converter @ (PyObject *, PyObject **)
PyObject * @ PyArray_Put @ (PyObject *ap, PyObject *items, PyObject* values)
PyObject * @ PyArray_PutMask @ (PyObject *ap, PyObject *mask, PyObject* values)
int @ PyArray_CopyArray @ (PyArrayObject *dest, PyArrayObject *src)
int @ PyArray_ValidType @ (int type)
PyObject * @ PyArray_GetItem @ (PyArrayObject *a, char *where)
int @ PyArray_SetItem @ (PyArrayObject *a, char *where, PyObject *what)
char * @ PyArray_Zero @ (PyArrayObject *a)
char * @ PyArray_One @ (PyArrayObject *a)
int @ _PyArray_compare_lists @ (int *l1, int *l2, int n)
int @ PyArray_Check @ (PyObject *o)
|