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