Searched refs:MatMult (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Include/internal/ |
H A D | pycore_ast.h | 25 typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7, enumerator
|
/third_party/python/Python/ |
H A D | ast_unparse.c | 154 case MatMult: op = " @ "; pr = PR_TERM; break; in append_ast_binop()
|
H A D | ast_opt.c | 508 case MatMult: in fold_binop()
|
H A D | Python-ast.c | 1510 "operator = Add | Sub | Mult | MatMult | Div | Mod | Pow | LShift | RShift | BitOr | BitXor | BitAnd | FloorDiv"); in init_types() 1531 state->MatMult_type = make_type(state, "MatMult", state->operator_type, in init_types() 1533 "MatMult"); in init_types() 4770 case MatMult: in ast2obj_operator() 9999 *out = MatMult; in obj2ast_operator() 12144 if (PyModule_AddObjectRef(m, "MatMult", state->MatMult_type) < 0) { in astmodule_exec()
|
H A D | compile.c | 4197 case MatMult: in addop_binary()
|
/third_party/python/Parser/ |
H A D | parser.c | 2558 _res = CHECK_VERSION ( AugOperator* , 5 , "The '@' operator is" , _PyPegen_augoperator ( p , MatMult ) ); in augassign_rule() 13321 _res = CHECK_VERSION ( expr_ty , 5 , "The '@' operator is" , _PyAST_BinOp ( a , MatMult , b , EXTRA ) ); in term_raw() [all...] |
Completed in 68 milliseconds