Lines Matching refs:separators
905 int separators = (flags & PRINT_F_QUOTE); in fmtint() local
943 if (separators) /* Get the number of group separators we'll print. */ in fmtint()
944 separators = getnumsep(pos); in fmtint()
946 zpadlen = precision - pos - separators; in fmtint()
948 - separators /* Number of separators. */ in fmtint()
986 if (separators > 0 && pos > 0 && pos % 3 == 0) in fmtint()
1018 int separators = (flags & PRINT_F_QUOTE); in fmtflt() local
1216 if (separators) /* Get the number of group separators we'll print. */ in fmtflt()
1217 separators = getnumsep(ipos); in fmtflt()
1223 - separators /* Number of group separators. */ in fmtflt()
1255 if (separators > 0 && ipos > 0 && ipos % 3 == 0) in fmtflt()
1302 int separators = (digits - ((digits % 3 == 0) ? 1 : 0)) / 3; in getnumsep() local
1311 separators *= strln; in getnumsep()
1314 return separators; in getnumsep()