Lines Matching refs:BPF_ALU_OP_MASK
24 self, Insn, BPF_ALU_OP_MASK, BPF_IND, BPF_JEQ, BPF_JGE, BPF_JGT, BPF_JLE, BPF_JLT, BPF_JMP32,
872 c if (c & BPF_ALU_OP_MASK) == BPF_JEQ => IntCC::Equal, in translate_program()
873 c if (c & BPF_ALU_OP_MASK) == BPF_JNE => IntCC::NotEqual, in translate_program()
874 c if (c & BPF_ALU_OP_MASK) == BPF_JGT => IntCC::UnsignedGreaterThan, in translate_program()
875 c if (c & BPF_ALU_OP_MASK) == BPF_JGE => IntCC::UnsignedGreaterThanOrEqual, in translate_program()
876 c if (c & BPF_ALU_OP_MASK) == BPF_JLT => IntCC::UnsignedLessThan, in translate_program()
877 c if (c & BPF_ALU_OP_MASK) == BPF_JLE => IntCC::UnsignedLessThanOrEqual, in translate_program()
878 c if (c & BPF_ALU_OP_MASK) == BPF_JSGT => IntCC::SignedGreaterThan, in translate_program()
879 c if (c & BPF_ALU_OP_MASK) == BPF_JSGE => IntCC::SignedGreaterThanOrEqual, in translate_program()
880 c if (c & BPF_ALU_OP_MASK) == BPF_JSLT => IntCC::SignedLessThan, in translate_program()
881 c if (c & BPF_ALU_OP_MASK) == BPF_JSLE => IntCC::SignedLessThanOrEqual, in translate_program()
883 c if (c & BPF_ALU_OP_MASK) == BPF_JSET => IntCC::NotEqual, in translate_program()
899 let cmp_res = if (insn.opc & BPF_ALU_OP_MASK) == BPF_JSET { in translate_program()