Home
last modified time | relevance | path

Searched refs:offset_high (Results 1 – 9 of 9) sorted by relevance

/arch/x86/ia32/
Dsys_ia32.c56 unsigned long offset_high) in sys32_truncate64() argument
58 return sys_truncate(filename, ((loff_t) offset_high << 32) | offset_low); in sys32_truncate64()
62 unsigned long offset_high) in sys32_ftruncate64() argument
64 return sys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low); in sys32_ftruncate64()
196 long sys32_fadvise64_64(int fd, __u32 offset_low, __u32 offset_high, in sys32_fadvise64_64() argument
200 (((u64)offset_high)<<32) | offset_low, in sys32_fadvise64_64()
/arch/tile/kernel/
Dcompat.c90 COMPAT_SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned int, offset_high, in COMPAT_SYSCALL_DEFINE5() argument
94 return sys_llseek(fd, offset_high, offset_low, result, origin); in COMPAT_SYSCALL_DEFINE5()
/arch/x86/include/asm/
Ddesc_defs.h83 u32 offset_high; member
94 ((unsigned long) g->offset_high << 32); in gate_offset()
Ddesc.h97 gate->offset_high = (u32) (func >> 32); in pack_gate()
/arch/powerpc/kernel/
Dsys_ppc32.c113 long ppc32_fadvise64(int fd, u32 unused, u32 offset_high, u32 offset_low, in ppc32_fadvise64() argument
116 return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low, len, in ppc32_fadvise64()
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()
/arch/mips/kernel/
Dlinux32.c94 SYSCALL_DEFINE5(32_llseek, unsigned int, fd, unsigned int, offset_high,
98 return sys_llseek(fd, offset_high, offset_low, result, origin);
/arch/tile/include/asm/
Dcompat.h288 long compat_sys_llseek(unsigned int fd, unsigned int offset_high,
/arch/x86/kernel/
Didt.c214 gate->offset_high = (u32) (addr >> 32); in idt_init_desc()