Searched refs:termwidth (Results 1 - 9 of 9) sorted by relevance

/netbsd-6-1-5-RELEASE/usr.bin/column/
H A Dcolumn.c68 static int termwidth = 80; /* default terminal width */ variable
88 termwidth = atoi(p);
90 termwidth = win.ws_col;
96 termwidth = atoi(optarg);
131 else if (maxlength >= termwidth)
146 numcols = termwidth / maxlength;
173 numcols = termwidth / maxlength;
/netbsd-6-1-5-RELEASE/bin/kill/
H A Dkill.c217 int termwidth = 80; local
222 termwidth = win.ws_col;
229 if (len + nl >= termwidth) {
/netbsd-6-1-5-RELEASE/bin/ls/
H A Dprint.c63 extern int termwidth;
191 if (termwidth < 2 * colwidth) {
212 numcols = termwidth / colwidth;
213 colwidth = termwidth / numcols; /* spread out if possible */
254 if (termwidth < 2 * colwidth) {
259 numcols = termwidth / colwidth;
260 colwidth = termwidth / numcols; /* spread out if possible */
305 if (col + 1 + extwidth + (int)p->fts_namelen >= termwidth)
H A Dls.c83 int termwidth = 80; /* default terminal width */ variable
142 termwidth = win.ws_col;
302 termwidth = atoi(p);
/netbsd-6-1-5-RELEASE/bin/ps/
H A Dextern.h41 extern int sumrusage, termwidth, totwidth;
H A Dps.c117 int termwidth; /* width of screen (0 == infinity) */ variable
214 termwidth = 79;
216 termwidth = ws.ws_col - 1;
355 termwidth = UNLIMITED;
356 else if (termwidth < 131)
357 termwidth = 131;
H A Dprint.c293 if (SIMPLEQ_NEXT(ve, next) != NULL || termwidth != UNLIMITED) {
295 left = termwidth - (totwidth - v->width);
303 argv = kvm_getenvv2(kd, ki, termwidth);
315 argv = kvm_getargv2(kd, ki, termwidth);
374 if (SIMPLEQ_NEXT(ve, next) != NULL || termwidth != UNLIMITED) {
376 left = termwidth - (totwidth - v->width);
412 if (SIMPLEQ_NEXT(ve, next) != NULL || termwidth != UNLIMITED) {
414 left = termwidth - (totwidth - v->width);
H A Dkeyword.c238 if (termwidth && (i += len + 1) > termwidth) {
/netbsd-6-1-5-RELEASE/usr.bin/sed/
H A Dprocess.c512 static int termwidth = -1; local
514 if (termwidth == -1) {
516 termwidth = atoi(p);
520 termwidth = win.ws_col;
523 termwidth = 60;
526 if (count >= termwidth) {

Completed in 68 milliseconds