Lines Matching refs:off_t

324 	off_t off;  in linux_llseek()
326 off = (args->olow) | (((off_t) args->ohigh) << 32); in linux_llseek()
332 error = copyout(td->td_retval, args->res, sizeof(off_t)); in linux_llseek()
409 off_t base; in linux_getdents()
485 off_t base; in linux_getdents64()
556 off_t base; in linux_readdir()
875 off_t length; in linux_truncate64()
878 length = PAIR32TO64(off_t, args->length); in linux_truncate64()
898 off_t length; in linux_ftruncate64()
901 length = PAIR32TO64(off_t, args->length); in linux_ftruncate64()
948 off_t nbytes, offset; in linux_sync_file_range()
951 nbytes = PAIR32TO64(off_t, uap->nbytes); in linux_sync_file_range()
952 offset = PAIR32TO64(off_t, uap->offset); in linux_sync_file_range()
972 off_t offset; in linux_pread()
976 offset = PAIR32TO64(off_t, uap->offset); in linux_pread()
997 off_t offset; in linux_pwrite()
1000 offset = PAIR32TO64(off_t, uap->offset); in linux_pwrite()
1011 static inline off_t
1015 return (((off_t)high << HALF_LONG_BITS) << HALF_LONG_BITS) | low; in pos_from_hilo()
1023 off_t offset; in linux_preadv()
1050 off_t offset; in linux_pwritev()
1220 bsd_flock->l_start = (off_t)linux_flock->l_start; in linux_to_bsd_flock()
1221 bsd_flock->l_len = (off_t)linux_flock->l_len; in linux_to_bsd_flock()
1277 bsd_flock->l_start = (off_t)linux_flock->l_start; in linux_to_bsd_flock64()
1278 bsd_flock->l_len = (off_t)linux_flock->l_len; in linux_to_bsd_flock64()
1583 off_t offset; in linux_fadvise64()
1587 offset = PAIR32TO64(off_t, args->offset); in linux_fadvise64()
1602 off_t len, offset; in linux_fadvise64_64()
1606 len = PAIR32TO64(off_t, args->len); in linux_fadvise64_64()
1607 offset = PAIR32TO64(off_t, args->offset); in linux_fadvise64_64()
1690 off_t len, offset; in linux_fallocate()
1700 len = PAIR32TO64(off_t, args->len); in linux_fallocate()
1701 offset = PAIR32TO64(off_t, args->offset); in linux_fallocate()