Home
last modified time | relevance | path

Searched refs:offset_low (Results 1 – 8 of 8) sorted by relevance

/arch/x86/include/asm/
Ddesc_defs.h52 u16 offset_low; member
84 #define gate_offset(g) ((g).offset_low | ((unsigned long)(g).offset_middle << 16) | ((unsigned long…
Ddesc.h57 gate->offset_low = PTR_LOW(func); in pack_gate()
/arch/s390/kernel/
Dsys_s390.c101 SYSCALL_DEFINE5(s390_fadvise64, int, fd, u32, offset_high, u32, offset_low, in SYSCALL_DEFINE5() argument
104 return sys_fadvise64(fd, (u64) offset_high << 32 | offset_low, in SYSCALL_DEFINE5()
Dentry.h54 long sys_s390_fadvise64(int fd, u32 offset_high, u32 offset_low,
/arch/powerpc/kernel/
Dsyscalls.c119 long ppc_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low, in ppc_fadvise64_64() argument
122 return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low, in ppc_fadvise64_64()
Dsys_ppc32.c586 long ppc32_fadvise64(int fd, u32 unused, u32 offset_high, u32 offset_low, in ppc32_fadvise64() argument
589 return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low, len, in ppc32_fadvise64()
/arch/x86/ia32/
Dsys_ia32.c54 unsigned long offset_low, in sys32_truncate64() argument
57 return sys_truncate(filename, ((loff_t) offset_high << 32) | offset_low); in sys32_truncate64()
60 asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long offset_low, in sys32_ftruncate64() argument
63 return sys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low); in sys32_ftruncate64()
451 long sys32_fadvise64_64(int fd, __u32 offset_low, __u32 offset_high, in sys32_fadvise64_64() argument
455 (((u64)offset_high)<<32) | offset_low, in sys32_fadvise64_64()
/arch/mips/kernel/
Dlinux32.c121 unsigned int, offset_low, loff_t __user *, result,
124 return sys_llseek(fd, offset_high, offset_low, result, origin);