Lines Matching +defs:tab +defs:width
530 tablefull(const char *tab, const char *hint)
533 log(LOG_ERR, "%s: table is full - %s\n", tab, hint);
535 log(LOG_ERR, "%s: table is full\n", tab);
1260 int width; /* width from format (%8d), or 0 */
1301 width = 0;
1321 * ``A negative field width argument is taken as a
1322 * - flag followed by a positive field width.''
1326 if ((width = va_arg(ap, int)) >= 0)
1328 width = -width;
1352 * beginning of a field width.''
1364 width = n;
1558 * padded out to `width' places. If flags&ZEROPAD, it should
1576 ret += width > realsz ? width : realsz;
1580 n = width - realsz;
1595 n = width - realsz;
1610 n = width - realsz;