Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dast.py57 if isinstance(node, UnaryOp) and isinstance(node.op, (UAdd, USub)):
59 if isinstance(node.op, UAdd):
/external/tensorflow/tensorflow/python/autograph/converters/
Dlogical_expressions.py55 gast.UAdd: 'ag__.u_add',
/external/tensorflow/tensorflow/python/autograph/pyct/testing/
Dcodegen.py84 sample_map = dict(((gast.USub, 1), (gast.UAdd, 0)))
/external/python/cpython2/Parser/
DPython.asdl97 unaryop = Invert | Not | UAdd | USub
/external/python/cpython3/Parser/
DPython.asdl109 unaryop = Invert | Not | UAdd | USub
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/
Danf.py104 gast.Invert, gast.Not, gast.UAdd, gast.USub,
/external/python/cpython3/Python/
Dast_unparse.c164 case UAdd: op = "+"; pr = PR_FACTOR; break; in append_ast_unaryop()
Dast_opt.c121 [UAdd] = PyNumber_Positive, in fold_unaryop()
DPython-ast.c3635 case UAdd: in ast2obj_unaryop()
7489 *out = UAdd; in obj2ast_unaryop()
Dast.c2436 return UnaryOp(UAdd, expression, LINENO(n), n->n_col_offset, in ast_for_factor()
Dcompile.c3075 case UAdd: in unaryop()
/external/python/cpython2/Include/
DPython-ast.h22 typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty; enumerator
/external/python/cpython3/Include/
DPython-ast.h22 typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty; enumerator
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp873 auto *UAdd = ExtractValueInst::Create(UAddWithOverflow, 0, "uadd", InsertPt); in CombineUAddWithOverflow() local
878 AddI->replaceAllUsesWith(UAdd); in CombineUAddWithOverflow()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DCodeGenPrepare.cpp1170 auto *UAdd = ExtractValueInst::Create(UAddWithOverflow, 0, "uadd", InsertPt); in CombineUAddWithOverflow() local
1175 AddI->replaceAllUsesWith(UAdd); in CombineUAddWithOverflow()
/external/python/cpython2/Python/
Dast.c1768 return UnaryOp(UAdd, expression, LINENO(n), n->n_col_offset, in ast_for_factor()
DPython-ast.c3088 case UAdd: in ast2obj_unaryop()
6293 *out = UAdd; in obj2ast_unaryop()
Dcompile.c2198 case UAdd: in unaryop()