Home
last modified time | relevance | path

Searched refs:PyNumber_MatrixMultiply (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Include/
Dabstract.h631 PyAPI_FUNC(PyObject *) PyNumber_MatrixMultiply(PyObject *o1, PyObject *o2);
/external/python/cpython3/PC/
Dpython3.def406 PyNumber_MatrixMultiply=python37.PyNumber_MatrixMultiply
/external/python/cpython3/Doc/c-api/
Dnumber.rst33 .. c:function:: PyObject* PyNumber_MatrixMultiply(PyObject *o1, PyObject *o2)
/external/python/cpython3/Modules/
D_operator.c90 return PyNumber_MatrixMultiply(a, b); in _operator_matmul_impl()
/external/python/cpython3/Doc/data/
Drefcounts.dat1479 PyNumber_MatrixMultiply:PyObject*::+1:
1480 PyNumber_MatrixMultiply:PyObject*:o1:0:
1481 PyNumber_MatrixMultiply:PyObject*:o2:0:
/external/python/cpython3/Objects/
Dabstract.c1005 PyNumber_MatrixMultiply(PyObject *v, PyObject *w) in PyNumber_MatrixMultiply() function
/external/python/cpython3/Python/
Dceval.c1219 PyObject *res = PyNumber_MatrixMultiply(left, right); in _PyEval_EvalFrameDefault()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst2206 New :c:func:`PyNumber_MatrixMultiply` and