Searched refs:arg1 (Results 1 – 6 of 6) sorted by relevance
/DragonOS/kernel/crates/rbpf/src/ |
H A D | helpers.rs | 120 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 D | cranelift.rs | 926 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 D | boot.rs | 41 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 D | signal_types.rs | 122 arg1: *mut ::core::ffi::c_void,
|
/DragonOS/docs/kernel/debug/ |
H A D | debug-kernel-with-gdb.md | 258 #0 function1 (arg1=10, arg2=20) at file1.c:15
|
/DragonOS/kernel/src/syscall/ |
H A D | mod.rs | 332 let arg1 = args[1]; in handle() localVariable 336 let flags = FileMode::from_bits_truncate(arg1 as u32); in handle()
|