Searched refs:fieldwidth (Results 1 – 2 of 2) sorted by relevance
/reactos/sdk/tools/mkisofs/schilytools/libschily/ |
H A D | fconv.c | 209 ftoes(s, val, fieldwidth, ndigits) in ftoes() argument 212 register int fieldwidth; 244 if (fieldwidth > len) 245 while (fieldwidth-- > len) 290 ftofs(s, val, fieldwidth, ndigits) in ftofs() argument 293 register int fieldwidth; 335 if (fieldwidth > len) 336 while (fieldwidth-- > len)
|
/reactos/sdk/lib/crt/printf/ |
H A D | streamout.c | 335 int base, fieldwidth, precision, padding; in streamout() local 381 fieldwidth = va_arg(argptr, int); in streamout() 382 if (fieldwidth < 0) in streamout() 385 fieldwidth = -fieldwidth; in streamout() 392 fieldwidth = 0; in streamout() 395 fieldwidth = fieldwidth * 10 + (chr - _T('0')); in streamout() 609 fieldwidth += 2; in streamout() 645 padding = (int)(fieldwidth - len - prefixlen - precision); in streamout()
|