Searched refs:is_not (Results 1 – 3 of 3) sorted by relevance
/freebsd/tests/atf_python/sys/netpfil/ipfw/ |
H A D | insns.py | 71 def __init__(self, opcode, is_or, is_not, arg1): argument 79 self.is_not = is_not 120 is_not = (insn.length & 0x80) != 0 121 return cls(opcode=insn.opcode, is_or=is_or, is_not=is_not, arg1=insn.arg1) 137 is_not = "" 138 if self.is_not: 139 is_not = "[!] " 143 is_not, 187 def __init__(self, opcode, is_or=False, is_not=False, arg1=0): argument 188 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1) [all …]
|
/freebsd/sbin/ipfw/tests/ |
H A D | test_add_rule.py | 403 ("return", InsnEmpty(IpFwOpcode.O_CALLRETURN, is_not=True)), id="return"
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/ |
H A D | LanaiInstrFormats.td | 76 // For arithmetic instructions, `C' is set/cleared if there is/is_not
|