Lines Matching refs:width
64 static int width, sign, fill;
123 width = va_arg(ap, int);
124 if (width < 0) {
125 width = -width;
131 width = 0;
133 width = width * 10 + (*fmt++ - '0');
154 * zero and 1 otherwise, "width" and "prec"
235 width -= 2;
358 * field to be computed; it is stored in "alen". "width" contains the
359 * user specified length. If width<alen, the width will be taken to
376 if (alen > width)
377 width = alen;
384 width--;
386 npad = width - alen;