Home
last modified time | relevance | path

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

/third_party/python/Include/
Dabstract.h436 PyAPI_FUNC(PyObject *) PyNumber_MatrixMultiply(PyObject *o1, PyObject *o2);
/third_party/python/Objects/
Dweakrefobject.c564 WRAP_BINARY(proxy_matmul, PyNumber_MatrixMultiply) in WRAP_BINARY()
Dabstract.c1126 PyNumber_MatrixMultiply(PyObject *v, PyObject *w) in PyNumber_MatrixMultiply() function
/third_party/python/Doc/c-api/
Dnumber.rst36 .. c:function:: PyObject* PyNumber_MatrixMultiply(PyObject *o1, PyObject *o2)
/third_party/python/Doc/data/
Dstable_abi.dat432 function,PyNumber_MatrixMultiply,3.7,
Drefcounts.dat1510 PyNumber_MatrixMultiply:PyObject*::+1:
1511 PyNumber_MatrixMultiply:PyObject*:o1:0:
1512 PyNumber_MatrixMultiply:PyObject*:o2:0:
/third_party/python/PC/
Dpython3dll.c408 EXPORT_FUNC(PyNumber_MatrixMultiply)
/third_party/python/Modules/
D_operator.c103 return PyNumber_MatrixMultiply(a, b); in _operator_matmul_impl()
/third_party/python/Misc/
Dstable_abi.txt1896 function PyNumber_MatrixMultiply
/third_party/python/Python/
Dceval.c2015 PyObject *res = PyNumber_MatrixMultiply(left, right); in _PyEval_EvalFrameDefault()
/third_party/python/Doc/whatsnew/
D3.5.rst2206 New :c:func:`PyNumber_MatrixMultiply` and