Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/int8/
Dfixed_point.c89 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/
Dresources.py52 ast.BitXor: (trope_ns, 'xor'),
/third_party/python/Parser/
DPython.asdl100 | RShift | BitOr | BitXor | BitAnd | FloorDiv
Dparser.c2763 _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/
Dpycore_ast.h26 LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12, enumerator
/third_party/python/Python/
Dast_unparse.c160 case BitXor: op = " ^ "; pr = PR_BXOR; break; in append_ast_binop()
Dast_opt.c272 case BitXor: in fold_binop()
Dcompile.c3628 case BitXor: in binop()
3665 case BitXor: in inplace_binop()
DPython-ast.c4708 case BitXor: in ast2obj_operator()
9748 *out = BitXor; in obj2ast_operator()
/third_party/python/Grammar/
Dpython.gram118 | '^=' { _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/
Dspirv_hlsl.cpp4709 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/
Dast.rst417 BitXor