Home
last modified time | relevance | path

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

/third_party/python/Parser/
DPython.asdl99 operator = Add | Sub | Mult | MatMult | Div | Mod | Pow | LShift
Dparser.c2643 …CHECK_VERSION ( AugOperator * , 5 , "The '@' operator is" , _PyPegen_augoperator ( p , MatMult ) ); in augassign_rule()
13963 …_res = CHECK_VERSION ( expr_ty , 5 , "The '@' operator is" , _PyAST_BinOp ( a , MatMult , b , EXTR… in term_raw()
/third_party/python/Python/
Dast_unparse.c154 case MatMult: op = " @ "; pr = PR_TERM; break; in append_ast_binop()
Dast_opt.c279 case MatMult: in fold_binop()
Dcompile.c3614 case MatMult: in binop()
3651 case MatMult: in inplace_binop()
DPython-ast.c4687 case MatMult: in ast2obj_operator()
9692 *out = MatMult; in obj2ast_operator()
/third_party/python/Include/internal/
Dpycore_ast.h25 typedef enum _operator { Add=1, Sub=2, Mult=3, MatMult=4, Div=5, Mod=6, Pow=7, enumerator
/third_party/python/Grammar/
Dpython.gram113 … | '@=' { CHECK_VERSION(AugOperator*, 5, "The '@' operator is", _PyPegen_augoperator(p, MatMult)) }
656 …' b=factor { CHECK_VERSION(expr_ty, 5, "The '@' operator is", _PyAST_BinOp(a, MatMult, b, EXTRA)) }
/third_party/python/Doc/library/
Dast.rst419 MatMult