Home | History | Annotate | Download | only in Stdio

Lines Matching refs:GROUPING

300        * If (*grp == CHAR_MAX) then no more grouping

309 * use *grp character (last grouping rule)
372 * If (*grp == CHAR_MAX) then no more grouping
381 * use *grp character (last grouping rule)
583 * most space for base 10 conversions with thousands' grouping
602 #define GROUPING 0x200 /* use grouping ("'" flag) */
625 const char *grouping; /* locale specific numeric grouping rules */
826 grouping = NULL;
921 flags |= GROUPING;
923 grouping = localeconv()->grouping;
1268 if (grouping && expt > 0) {
1269 /* space for thousands' grouping */
1272 while (*grouping != CHAR_MAX) {
1273 if (lead <= *grouping)
1275 lead -= *grouping;
1276 if (*(grouping+1)) {
1278 grouping++;
1403 flags &= ~GROUPING;
1430 flags & GROUPING, thousands_sep,
1431 grouping);
1438 flags & GROUPING, thousands_sep,
1439 grouping);
1519 if (grouping) {
1524 grouping--;
1531 *grouping, zeroes);
1532 result += *grouping;