Searched refs:inplace_bitwise_op_test (Results 1 – 1 of 1) sorted by relevance
/dports/devel/py-numba/numba-0.51.2/numba/tests/ |
H A D | test_ufuncs.py | 985 def inplace_bitwise_op_test(self, operator, lhs_values, rhs_values): member in TestArrayOperators 1038 self.inplace_bitwise_op_test('&=', [0, 1, 2, 3, 51], [0, 13, 16, 42, 255]) 1039 self.inplace_bitwise_op_test(operator.iand, [0, 1, 2, 3, 51], [0, 13, 16, 42, 255]) 1042 self.inplace_bitwise_op_test('|=', [0, 1, 2, 3, 51], [0, 13, 16, 42, 255]) 1043 self.inplace_bitwise_op_test(operator.ior, [0, 1, 2, 3, 51], [0, 13, 16, 42, 255]) 1046 self.inplace_bitwise_op_test('^=', [0, 1, 2, 3, 51], [0, 13, 16, 42, 255]) 1047 self.inplace_bitwise_op_test(operator.ixor, [0, 1, 2, 3, 51], [0, 13, 16, 42, 255])
|