Home
last modified time | relevance | path

Searched refs:linecnt (Results 1 – 8 of 8) sorted by relevance

/freebsd/usr.bin/head/
H A Dhead.c77 intmax_t linecnt; in main() local
84 linecnt = -1; in main()
96 if (expand_number(optarg, &linecnt) || linecnt <= 0) in main()
125 if (linecnt != -1 && bytecnt != -1) in main()
127 if (linecnt == -1) in main()
128 linecnt = 10; in main()
142 head(fp, linecnt); in main()
148 head(stdin, linecnt); in main()
/freebsd/libexec/rbootd/
H A Dparseconf.c82 int omask, linecnt = 0; in ParseConfig() local
118 linecnt++; /* line counter */ in ParseConfig()
137 linecnt, bcp); in ParseConfig()
165 linecnt, bcp); in ParseConfig()
174 linecnt, bcp); in ParseConfig()
/freebsd/libexec/comsat/
H A Dcomsat.c211 int linecnt, charcnt, inheader; in jkfprintf() local
228 linecnt = 7; in jkfprintf()
242 if (linecnt <= 0 || charcnt <= 0) { in jkfprintf()
268 --linecnt; in jkfprintf()
/freebsd/contrib/ntp/ntpd/
H A Drefclock_hpgps.c120 int linecnt; /* set for expected multiple line responses */ member
211 up->linecnt = 1; in hpgps_start()
288 * If linecnt is greater than zero, we are getting information only, in hpgps_receive()
294 * If linecnt is zero, we are expecting either the timezone in hpgps_receive()
301 if (up->linecnt-- > 0) { in hpgps_receive()
307 if (up->linecnt == 0) in hpgps_receive()
586 up->linecnt = 22; in hpgps_receive()
/freebsd/usr.bin/pr/
H A Dpr.c165 int linecnt; in onecol() local
232 linecnt = 0; in onecol()
243 while (linecnt < lines) { in onecol()
249 if (!linecnt && !nohead && in onecol()
275 ++linecnt; in onecol()
284 if (linecnt && prtail(lines-linecnt-lrgln, lrgln)) in onecol()
/freebsd/usr.bin/msgs/
H A Dmsgs.c136 static int linecnt(FILE *);
503 lct = linecnt(newmsg); in main()
701 linecnt(FILE *f) in linecnt() function
/freebsd/contrib/file/src/
H A DBNF94 regflag = "c" | "s" | linecnt
96 linecnt = NUMBER ;; The number of lines to search. If this
H A Dsoftmagic.c1348 size_t lines, linecnt, bytecnt; in mcopy() local
1357 linecnt = m->str_range; in mcopy()
1358 bytecnt = linecnt * 80; in mcopy()
1360 linecnt = 0; in mcopy()
1372 for (lines = linecnt, b = buf; lines && b < end && in mcopy()