Lines Matching defs:width
51 int width = 2, def_pad = '0';
94 else width = 4;
106 width = 3;
144 width = 1;
157 width = 1;
173 width = 1;
191 width = 4;
217 case '_': *l = snprintf(*s, sizeof *s, "%*lld", width, val); break;
219 default: *l = snprintf(*s, sizeof *s, "%0*lld", width, val); break;
242 unsigned long width;
257 width = strtoul(f, &p, 10);
259 width = 0;
263 if (!width && p!=f) width = 1;
265 width = 0;
271 if (width) {
277 if (width < k) width = k;
282 width--;
283 } else if (plus && d+(width-k) >= (*p=='C'?3:5)) {
285 width--;
287 for (; width > k && l < n; width--)