Home
last modified time | relevance | path

Searched refs:arg1 (Results 1 – 6 of 6) sorted by relevance

/DragonOS/kernel/crates/rbpf/src/
H A Dhelpers.rs120 pub fn gather_bytes(arg1: u64, arg2: u64, arg3: u64, arg4: u64, arg5: u64) -> u64 { in gather_bytes()
121 arg1.wrapping_shl(32) in gather_bytes()
191 pub fn sqrti(arg1: u64, unused2: u64, unused3: u64, unused4: u64, unused5: u64) -> u64 { in sqrti()
192 (arg1 as f64).sqrt() as u64 in sqrti()
210 pub fn strcmp(arg1: u64, arg2: u64, arg3: u64, unused4: u64, unused5: u64) -> u64 { in strcmp()
212 if arg1 == 0 || arg2 == 0 { in strcmp()
215 let mut a = arg1; in strcmp()
H A Dcranelift.rs926 let arg1 = bcx.use_var(self.registers[2]); in translate_program() localVariable
931 let call = bcx.ins().call(func_ref, &[arg0, arg1, arg2, arg3, arg4]); in translate_program()
/DragonOS/kernel/src/arch/x86_64/init/
H A Dboot.rs41 arg1: u64, in early_boot_init()
46 BootProtocol::Multiboot2 => early_multiboot2_init(arg1 as u32, arg2), in early_boot_init()
/DragonOS/kernel/src/ipc/
H A Dsignal_types.rs122 arg1: *mut ::core::ffi::c_void,
/DragonOS/docs/kernel/debug/
H A Ddebug-kernel-with-gdb.md258 #0 function1 (arg1=10, arg2=20) at file1.c:15
/DragonOS/kernel/src/syscall/
H A Dmod.rs332 let arg1 = args[1]; in handle() localVariable
336 let flags = FileMode::from_bits_truncate(arg1 as u32); in handle()