Lines Matching refs:offset_t
68 offset_t offset; /* Regular expression offset value */
69 offset_t curline; /* Current line in input file */
79 static offset_t findline(char *, offset_t);
87 static void to_line(offset_t);
160 curline = (offset_t)1; in main()
244 (void) fseeko(outfile, (offset_t)0, SEEK_END); in closefile()
245 (void) fprintf(stdout, "%lld\n", (offset_t)ftello(outfile)); in closefile()
301 static offset_t
302 findline(char *expr, offset_t oset) in findline()
305 offset_t lncnt = 0, saveloc; in findline()
308 if (curline != (offset_t)1 || benhere) /* If first line, first time, */ in findline()
318 (void) fseeko(infile, (offset_t)saveloc, SEEK_SET); in findline()
322 (void) fseeko(infile, (offset_t)saveloc, SEEK_SET); in findline()
450 offset_t repeat, toline; in num_arg()
563 to_line(offset_t ln) in to_line()