Searched refs:numlines (Results 1 - 4 of 4) sorted by relevance

/freebsd-10-stable/usr.bin/split/
H A Dsplit.c67 static long numlines; /* Line count to split on. */ variable
102 if (numlines == 0) {
105 numlines = strtol(++p, &ep, 10);
107 numlines =
109 if (numlines <= 0 || *ep)
141 if (numlines != 0)
143 if ((numlines = strtol(optarg, &ep, 10)) <= 0 || *ep)
182 if (pflag && (numlines != 0 || bytecnt != 0 || chunks != 0))
185 if (numlines == 0)
186 numlines
[all...]
/freebsd-10-stable/lib/libdpv/
H A Ddprompt.c115 int numlines; local
144 numlines = dialog_prompt_numlines(pprompt, 0);
146 warnx("`-p text' is %i line%s long", numlines,
147 numlines == 1 ? "" : "s");
148 dheight += numlines;
165 nthfile = numlines = 0;
171 numlines += dialog_prompt_numlines(curfile->name, nls);
173 if (numlines > fheight)
174 fheight = numlines;
175 numlines
[all...]
/freebsd-10-stable/contrib/diff/src/
H A Ddiff3.c846 lin numlines;
860 numlines = D_NUMLINES (result, FILE0);
861 if (numlines)
863 D_LINEARRAY (result, FILE0) = xcalloc (numlines, sizeof (char *));
864 D_LENARRAY (result, FILE0) = xcalloc (numlines, sizeof (size_t));
872 numlines = D_NUMLINES (result, FILE1);
873 if (numlines)
875 D_LINEARRAY (result, FILE1) = xcalloc (numlines, sizeof (char *));
876 D_LENARRAY (result, FILE1) = xcalloc (numlines, sizeof (size_t));
884 numlines
843 lin numlines; local
978 lin numlines = D_NUMLINES (bptr, 0); local
1003 lin numlines = D_NUMLINES (bptr, 1); local
[all...]
/freebsd-10-stable/contrib/dialog/
H A Dutil.c1340 int numlines = 2; local
1378 *height = MIN(SLINES, count + numlines + boxlines);

Completed in 54 milliseconds