Beispiel #1
0
 def __or__(self, other):
     return bitsBitOp(self, other, AllOps.OR, vld_mask_for_or, tryReduceOr)
Beispiel #2
0
 def __and__(self, other):
     return bitsBitOp(self, other, AllOps.AND, vld_mask_for_and,
                      tryReduceAnd)
Beispiel #3
0
 def __xor__(self, other):
     return bitsBitOp(self, other, AllOps.XOR, vld_mask_for_xor,
                      tryReduceXor)
Beispiel #4
0
 def __or__(self, other):
     return bitsBitOp(self, other, AllOps.OR, vldMaskForOr, tryReduceOr)
Beispiel #5
0
 def __and__(self, other):
     return bitsBitOp(self, other, AllOps.AND, vldMaskForAnd, tryReduceAnd)
Beispiel #6
0
 def __xor__(self, other):
     return bitsBitOp(self, other, AllOps.XOR, vld_mask_for_xor,
                      tryReduceXor, self._dtype.from_py(0))