Searched refs:BPF_JNE (Results 1 – 4 of 4) sorted by relevance
/DragonOS/kernel/crates/rbpf/src/ |
H A D | ebpf.rs | 141 pub const BPF_JNE: u8 = 0x50; constant 356 pub const JNE_IMM: u8 = BPF_JMP | BPF_K | BPF_JNE; 358 pub const JNE_REG: u8 = BPF_JMP | BPF_X | BPF_JNE; 401 pub const JNE_IMM32: u8 = BPF_JMP32 | BPF_K | BPF_JNE; 403 pub const JNE_REG32: u8 = BPF_JMP32 | BPF_X | BPF_JNE;
|
H A D | assembler.rs | 75 ("jne", ebpf::BPF_JNE), in make_instruction_map()
|
H A D | cranelift.rs | 25 BPF_JNE, BPF_JSET, BPF_JSGE, BPF_JSGT, BPF_JSLE, BPF_JSLT, BPF_X, STACK_SIZE, 873 c if (c & BPF_ALU_OP_MASK) == BPF_JNE => IntCC::NotEqual, in translate_program()
|
H A D | insn_builder.rs | 579 NotEquals = BPF_JNE as isize,
|