Home | History | Annotate | Download | only in net

Lines Matching defs:negate

1640 jmp_to_cond(const struct bpf_insn *pc, bool negate, int *res)
1651 *res |= negate ? SLJIT_LESS_EQUAL : SLJIT_GREATER;
1654 *res |= negate ? SLJIT_LESS : SLJIT_GREATER_EQUAL;
1657 *res |= negate ? SLJIT_NOT_EQUAL : SLJIT_EQUAL;
1660 *res |= negate ? SLJIT_EQUAL : SLJIT_NOT_EQUAL;
1713 int branching, negate;
2015 negate = (jt == 0) ? 1 : 0;
2021 if (!jmp_to_cond(pc, negate, &cond))
2035 if (!jmp_to_cond(pc, negate, &cond))
2044 BJ_ASSERT(jtf[negate].sjump == NULL);
2045 jtf[negate].sjump = jump;