Lines Matching defs:width
67 int width;
129 for (width=0; isdigit(*p); p++) {
130 width = 10*width + *p - '0';
184 if (width < 1) width = 1;
198 shlim(f, width);
235 k = t=='c' ? width+1U : 31;
280 if (t == 'c' && shcnt(f) != width) goto match_fail;
315 if (width == 0 || width > sizeof(buf) - 1)
316 width = sizeof(buf) - 1;
317 int count = parsefloat(f, buf, buf + width);