Home
last modified time | relevance | path

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

/linux-2.4.37.9/include/asm-x86_64/
Ddesc.h28 u32 offset_high; member
96 s.offset_high = PTR_HIGH(func); in _set_gate()
/linux-2.4.37.9/fs/
Dread_write.c152 asmlinkage long sys_llseek(unsigned int fd, unsigned long offset_high, in sys_llseek() argument
168 offset = llseek(file, ((loff_t) offset_high << 32) | offset_low, in sys_llseek()
/linux-2.4.37.9/arch/x86_64/ia32/
Dsys_ia32.c180 sys32_truncate64(char * filename, unsigned long offset_low, unsigned long offset_high) in sys32_truncate64() argument
182 return sys_truncate(filename, ((loff_t) offset_high << 32) | offset_low); in sys32_truncate64()
188 sys32_ftruncate64(unsigned int fd, unsigned long offset_low, unsigned long offset_high) in sys32_ftruncate64() argument
190 return sys_ftruncate(fd, ((loff_t) offset_high << 32) | offset_low); in sys32_ftruncate64()
/linux-2.4.37.9/arch/mips64/kernel/
Dlinux32.c1033 extern asmlinkage long sys_llseek(unsigned int fd, unsigned long offset_high,
1037 asmlinkage int sys32_llseek(unsigned int fd, unsigned int offset_high, in sys32_llseek() argument
1041 return sys_llseek(fd, offset_high, offset_low, result, origin); in sys32_llseek()