Lines Matching refs:ipos
1017 int ipos = 0; in fmtflt() local
1046 iconvert[ipos++] = sign; in fmtflt()
1048 iconvert[ipos++] = *infnan++; in fmtflt()
1049 fmtstr(str, len, size, iconvert, width, ipos, flags); in fmtflt()
1193 ipos = convert(intpart, iconvert, sizeof(iconvert), 10, 0); in fmtflt()
1217 separators = getnumsep(ipos); in fmtflt()
1220 - ipos /* Number of integer digits. */ in fmtflt()
1252 while (ipos > 0) { /* Integer part. */ in fmtflt()
1253 ipos--; in fmtflt()
1254 OUTCHAR(str, *len, size, iconvert[ipos]); in fmtflt()
1255 if (separators > 0 && ipos > 0 && ipos % 3 == 0) in fmtflt()