Searched refs:s1 (Results 1 – 7 of 7) sorted by relevance
/DragonOS/kernel/src/common/ |
H A D | string.h | 16 static inline int strcmp(const char *s1, const char *s2) { in strcmp() argument 17 while (*s1 && *s2 && *s1 == *s2) { in strcmp() 18 ++s1; in strcmp() 21 return *s1 - *s2; in strcmp()
|
/DragonOS/kernel/src/arch/riscv64/ |
H A D | kprobe.rs | 23 pub s1: usize, field 60 s1: trap_frame.s1, in from()
|
/DragonOS/kernel/src/arch/x86_64/include/asm/ |
H A D | asm.h | 396 static inline int memcmp(const void *s1, const void *s2, size_t len) in memcmp() argument 402 : CC_OUT(nz)(diff), "+D"(s1), "+S"(s2) in memcmp() 407 diff = *(const unsigned char *)(s1 - 1) - *(const unsigned char *)(s2 - 1); in memcmp()
|
/DragonOS/kernel/src/arch/riscv64/interrupt/ |
H A D | mod.rs | 79 pub s1: usize, field 132 s1: 0, in new()
|
H A D | entry.rs | 132 off_s1 = const offset_of!(TrapFrame, s1), in _save_context() 227 off_s1 = const offset_of!(TrapFrame, s1), in ret_from_exception()
|
/DragonOS/kernel/src/arch/riscv64/process/ |
H A D | mod.rs | 296 off_s1 = const(offset_of!(ArchPCBInfo, s1)), in switch_to_inner() 351 s1: usize, field 386 s1: 0, in new()
|
H A D | kthread.rs | 91 off_s1 = const offset_of!(TrapFrame, s1), in kernel_thread_bootstrap_stage1()
|