Searched refs:BPF_JSGE (Results 1 – 4 of 4) sorted by relevance
/DragonOS/kernel/crates/rbpf/src/ |
H A D | ebpf.rs | 145 pub const BPF_JSGE: u8 = 0x70; constant 364 pub const JSGE_IMM: u8 = BPF_JMP | BPF_K | BPF_JSGE; 366 pub const JSGE_REG: u8 = BPF_JMP | BPF_X | BPF_JSGE; 409 pub const JSGE_IMM32: u8 = BPF_JMP32 | BPF_K | BPF_JSGE; 411 pub const JSGE_REG32: u8 = BPF_JMP32 | BPF_X | BPF_JSGE;
|
H A D | assembler.rs | 77 ("jsge", ebpf::BPF_JSGE), 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, 879 c if (c & BPF_ALU_OP_MASK) == BPF_JSGE => IntCC::SignedGreaterThanOrEqual, in translate_program()
|
H A D | insn_builder.rs | 583 GreaterEqualsSigned = BPF_JSGE as isize,
|