Home
last modified time | relevance | path

Searched refs:s1 (Results 1 – 7 of 7) sorted by relevance

/DragonOS/kernel/src/common/
H A Dstring.h16 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 Dkprobe.rs23 pub s1: usize, field
60 s1: trap_frame.s1, in from()
/DragonOS/kernel/src/arch/x86_64/include/asm/
H A Dasm.h396 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 Dmod.rs79 pub s1: usize, field
132 s1: 0, in new()
H A Dentry.rs132 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 Dmod.rs296 off_s1 = const(offset_of!(ArchPCBInfo, s1)), in switch_to_inner()
351 s1: usize, field
386 s1: 0, in new()
H A Dkthread.rs91 off_s1 = const offset_of!(TrapFrame, s1), in kernel_thread_bootstrap_stage1()