Lines Matching +full:- +full:ne
5 * SPDX-License-Identifier: GPL-2.0+
23 #define NE 1 macro
37 { "-lt", LT },
39 { "-gt", GT },
41 { "-eq", EQ },
43 { "-ne", NE },
44 { "!=" , NE },
45 { "<>" , NE },
46 { "-ge", GE },
48 { "-le", LE },
84 return (w >= sizeof(long)) ? l : (l & ((1UL << (w * 8)) - 1)); in evalexp()
121 case NE: return (p != 0); in stringcomp()
139 case NE: return (l != r); in arithcomp()
159 if ((strncmp (op, optp->op, len) == 0) && (len == strlen (optp->op))) { in binary_test()
161 return (stringcomp(arg1, arg2, optp->opcode)); in binary_test()
163 return (arithcomp (arg1, arg2, optp->opcode, w)); in binary_test()
183 * Uses -2 as 'width' for .s (string) so as not to upset existing code in do_itest()
191 case -2: in do_itest()
194 case -1: in do_itest()