Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 3 of 3) sorted by relevance

/DragonOS/kernel/crates/rbpf/examples/
H A Drbpf_plugin.rs86 let bytecode = hex::decode(program_text).unwrap(); in main()
89 let mut memory: Vec<u8> = hex::decode(memory_text).unwrap(); in main()
/DragonOS/kernel/crates/rbpf/
H A DCargo.toml49 hex = "0.4.3"
/DragonOS/kernel/crates/rbpf/src/
H A Dasm_parser.rs63 let hex = string("0x") in integer() localVariable
67 (sign, attempt(hex).or(dec)).map(|(s, x)| s * x) in integer()