HomeSort by: relevance | last modified time | path
    Searched refs:maxcols (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.bin/column/
column.c 216 int *lens, *nlens, maxcols; local
221 cols = ecalloc((maxcols = DEFCOLS), sizeof(*cols));
222 lens = ecalloc(maxcols, sizeof(*lens));
226 if (++coloff == maxcols) {
227 ncols = erealloc(cols, (maxcols +
229 nlens = erealloc(lens, (maxcols +
233 (void)memset(cols + maxcols, 0,
235 (void)memset(lens + maxcols, 0,
237 maxcols += DEFCOLS;
  /src/external/bsd/nvi/dist/vi/
vs_msg.c 239 size_t maxcols, oldx, oldy, padding; local
351 maxcols = sp->cols - 1;
353 if (len + vip->lcontinue + padding > maxcols)
365 if (len + vip->lcontinue > maxcols) {
366 for (e = s + (maxcols - vip->lcontinue);
369 e = t = s + (maxcols - vip->lcontinue);
  /src/external/bsd/mdocml/dist/
term.h 54 size_t maxcols; /* Allocated bytes in buf. */ member in struct:termp_col
term.c 756 if (c->maxcols == 0)
757 c->maxcols = 1024;
758 while (c->maxcols <= sz)
759 c->maxcols <<= 2;
760 c->buf = mandoc_reallocarray(c->buf, c->maxcols, sizeof(*c->buf));
770 if (p->col + 1 >= p->tcol->maxcols)
793 if (p->col + 7 >= p->tcol->maxcols)
839 if (p->col + 2 + (sz * 5) >= p->tcol->maxcols)
  /src/sbin/ifconfig/
ieee80211.c 1303 printies(const u_int8_t *vp, int ielen, int maxcols)
1309 printssid(" SSID", vp, 2+vp[1], maxcols);
1315 " RATES" : " XRATES", vp, 2+vp[1], maxcols);
1323 printcountry(" COUNTRY", vp, 2+vp[1], maxcols);
1331 printwpaie(" WPA", vp, 2+vp[1], maxcols);
1333 printwmeinfo(" WME", vp, 2+vp[1], maxcols);
1335 printwmeparam(" WME", vp, 2+vp[1], maxcols);
1337 printie(" VEN", vp, 2+vp[1], maxcols);
1340 printrsnie(" RSN", vp, 2+vp[1], maxcols);
1344 printie(iename(vp[0]), vp, 2+vp[1], maxcols); local
    [all...]

Completed in 48 milliseconds