Lines Matching defs:wid
1224 int ljust = 0, wid = 0, prec = n, pad = 0;
1241 if (isdigit(f[0])) { /* there is a wid */
1242 wid = strtol(f, &f, 10);
1249 pad = wid>prec ? wid - prec : 0; // has to be >= 0
1326 int ljust = 0, wid = 0, prec = n, pad = 0;
1343 if (isdigit(f[0])) { /* there is a wid */
1344 wid = strtol(f, &f, 10);
1351 pad = wid>prec ? wid - prec : 0; // has to be >= 0