Lines Matching defs:offset
33 * copy the lines starting at offset <start> from in <in> to <out>
41 off_t offset;
54 if((offset = sfseek(in,(off_t)0,SEEK_END)) <= start)
56 offset = rounddown(offset,BUFSIZE);
60 if(offset < start)
62 n -= (start-offset);
63 offset = start;
65 sfseek(in, offset, SEEK_SET);
101 if(offset <= start)
103 offset -= BUFSIZE;