Searched refs:BitXor (Results 1 – 12 of 12) sorted by relevance
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/int8/ |
D | fixed_point.c | 89 int32_t BitXor(int32_t a, int32_t b) { return (uint32_t)a ^ (uint32_t)b; } in BitXor() function 93 int BitsSelect(int mask, int bound, int val) { return BitXor(BitAnd(mask, bound), BitAnd(BitNot(mas… in BitsSelect()
|
/third_party/mindspore/mindspore/_extends/parse/ |
D | resources.py | 52 ast.BitXor: (trope_ns, 'xor'),
|
/third_party/python/Parser/ |
D | Python.asdl | 100 | RShift | BitOr | BitXor | BitAnd | FloorDiv
|
D | parser.c | 2763 _res = _PyPegen_augoperator ( p , BitXor ); in augassign_rule() 13219 _res = _PyAST_BinOp ( a , BitXor , b , EXTRA ); in bitwise_xor_raw()
|
/third_party/python/Include/internal/ |
D | pycore_ast.h | 26 LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12, enumerator
|
/third_party/python/Python/ |
D | ast_unparse.c | 160 case BitXor: op = " ^ "; pr = PR_BXOR; break; in append_ast_binop()
|
D | ast_opt.c | 272 case BitXor: in fold_binop()
|
D | compile.c | 3628 case BitXor: in binop() 3665 case BitXor: in inplace_binop()
|
D | Python-ast.c | 4708 case BitXor: in ast2obj_operator() 9748 *out = BitXor; in obj2ast_operator()
|
/third_party/python/Grammar/ |
D | python.gram | 118 | '^=' { _PyPegen_augoperator(p, BitXor) } 637 | a=bitwise_xor '^' b=bitwise_and { _PyAST_BinOp(a, BitXor, b, EXTRA) }
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_hlsl.cpp | 4709 HLSL_GROUP_OP(BitwiseXor, BitXor, false) in emit_subgroup_op() 4712 HLSL_GROUP_OP_CAST(LogicalXor, BitXor, uint_type) in emit_subgroup_op()
|
/third_party/python/Doc/library/ |
D | ast.rst | 417 BitXor
|