Home
last modified time | relevance | path

Searched defs:I (Results 1 – 2 of 2) sorted by relevance

/DragonOS/kernel/crates/rbpf/src/
H A Dasm_parser.rs46 fn ident<I>() -> impl Parser<I, Output = String> in ident()
54 fn integer<I>() -> impl Parser<I, Output = i64> in integer()
70 fn register<I>() -> impl Parser<I, Output = i64> in register()
80 fn operand<I>() -> impl Parser<I, Output = Operand> in operand()
92 fn instruction<I>() -> impl Parser<I, Output = Instruction> in instruction()
H A Dinsn_builder.rs77 impl<'i, I: Instruction> IntoBytes for &'i I { implementation