Lines Matching refs:offset
31 __posix_fallocate64_l64 (int fd, __off64_t offset, __off64_t len) in __posix_fallocate64_l64() argument
35 if (offset < 0 || len < 0) in __posix_fallocate64_l64()
40 if ((__off64_t) ((uint64_t) offset + (uint64_t) len) < 0) in __posix_fallocate64_l64()
62 if (st.st_size < offset) in __posix_fallocate64_l64()
64 int ret = __ftruncate64 (fd, offset); in __posix_fallocate64_l64()
100 for (offset += (len - 1) % increment; len > 0; offset += increment) in __posix_fallocate64_l64()
104 if (offset < st.st_size) in __posix_fallocate64_l64()
107 ssize_t rsize = __libc_pread64 (fd, &c, 1, offset); in __posix_fallocate64_l64()
117 if (__libc_pwrite64 (fd, "", 1, offset) != 1) in __posix_fallocate64_l64()
132 __posix_fallocate64_l32 (int fd, off64_t offset, size_t len) in __posix_fallocate64_l32() argument
134 return __posix_fallocate64_l64 (fd, offset, len); in __posix_fallocate64_l32()