Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
DPython-ast.c402 static PyTypeObject *MatMult_type; variable
1038 MatMult_type = make_type("MatMult", operator_type, NULL, 0); in init_types()
1039 if (!MatMult_type) return 0; in init_types()
1040 MatMult_singleton = PyType_GenericNew(MatMult_type, NULL, NULL); in init_types()
7378 isinstance = PyObject_IsInstance(obj, (PyObject *)MatMult_type); in obj2ast_operator()
8300 if (PyDict_SetItemString(d, "MatMult", (PyObject*)MatMult_type) < 0) return in PyInit__ast()