Lines Matching defs:start
49 off_t start, end;
55 start = lseek(fd, 0L, SEEK_CUR);
57 (void) lseek(fd, start, SEEK_SET);
59 if (start == (off_t) -1 || end == (off_t) -1) {
64 length = end - start;
70 *start_ = start;
85 off_t start;
91 if (getFileStartAndLength(fd, &start, &length) < 0)
120 off_t start;
126 if (getFileStartAndLength(fd, &start, &length) < 0)
129 memPtr = mmap(NULL, length, PROT_READ, MAP_FILE | MAP_SHARED, fd, start);
132 fd, (int) start, strerror(errno));
149 int sysMapFileSegmentInShmem(int fd, off_t start, long length,
163 if (start + length > (long)fileLength) {
165 (int) start, length, (int) fileLength);
170 adjust = start % DEFAULT_PAGE_SIZE;
171 actualStart = start - adjust;
188 (int) start, (int) length,