Lines Matching defs:nbytes
19 static inline long sync_file_range(int fd, off64_t offset, off64_t nbytes,
26 (int)(offset >> 32), (int)offset, (int)(nbytes >> 32),
27 (int)nbytes);
30 (int)(offset >> 32), nbytes, (int)(nbytes >> 32));
33 return tst_syscall(__NR_sync_file_range2, fd, flags, offset, nbytes);
37 (int)offset, (int)(nbytes >> 32), (int)nbytes, flags);
41 (int)offset, (int)(nbytes >> 32), (int)nbytes, flags);
44 (int)(offset >> 32), (int)nbytes, (int)(nbytes >> 32), flags);
47 return tst_syscall(__NR_sync_file_range, fd, offset, nbytes, flags);