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

/freebsd-current/usr.bin/split/
H A Dsplit.c57 static long numlines; /* Line count to split on. */ variable
91 if (numlines != 0)
93 numlines = ch - '0';
95 while (numlines >= 0 && *p >= '0' && *p <= '9')
96 numlines = numlines * 10 + *p++ - '0';
97 if (numlines <= 0 || *p != '\0')
127 if (numlines != 0)
129 numlines = strtonum(optarg, 1, LONG_MAX, &errstr);
179 if (pflag && (numlines !
[all...]
/freebsd-current/lib/libdpv/
H A Ddprompt.c112 int numlines; local
141 numlines = dialog_prompt_numlines(pprompt, 0);
143 warnx("`-p text' is %i line%s long", numlines,
144 numlines == 1 ? "" : "s");
145 dheight += numlines;
162 nthfile = numlines = 0;
168 numlines += dialog_prompt_numlines(curfile->name, nls);
170 if (numlines > fheight)
171 fheight = numlines;
172 numlines
[all...]
/freebsd-current/contrib/diff/src/
H A Ddiff3.c845 lin numlines;
859 numlines = D_NUMLINES (result, FILE0);
860 if (numlines)
862 D_LINEARRAY (result, FILE0) = xcalloc (numlines, sizeof (char *));
863 D_LENARRAY (result, FILE0) = xcalloc (numlines, sizeof (size_t));
871 numlines = D_NUMLINES (result, FILE1);
872 if (numlines)
874 D_LINEARRAY (result, FILE1) = xcalloc (numlines, sizeof (char *));
875 D_LENARRAY (result, FILE1) = xcalloc (numlines, sizeof (size_t));
883 numlines
842 lin numlines; local
977 lin numlines = D_NUMLINES (bptr, 0); local
1002 lin numlines = D_NUMLINES (bptr, 1); local
[all...]
/freebsd-current/contrib/dialog/
H A Dutil.c1469 int numlines = 2; local
1513 *height = MIN(SLINES, count + numlines + boxlines);

Completed in 284 milliseconds