Lines Matching refs:offset
45 * Seek the given file to the given offset.
49 fseeko(FILE *fp, off_t offset, int whence)
77 * In order to seek relative to the current stream offset,
78 * we have to first find the current stream offset a la
81 __sflush(fp); /* may adjust seek offset on append stream */
96 offset += curoff;
140 target = offset;
144 target = st.st_size + offset;
163 * offset backwards by this count so that it represents the
164 * file offset for the first byte in the current input buffer.
178 * If the target offset is within the current buffer,
198 * By aligning the file offset to a block boundary, we can let
226 (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) {
240 * fseek()'s offset is a long and sizeof(off_t) != sizeof(long) on all arches
246 fseek(FILE *fp, long offset, int whence)
248 off_t off = offset;