Lines Matching refs:suffix
189 #define SUFFIX 0x80 /* a suffix is to appear in the output */
506 wchar_t *suffix;
520 char *suffix;
526 /* Length of prefix and of suffix */
529 /* Combined length of leading zeroes, trailing zeroes, and suffix */
939 * right padding zeroes, a suffix, and
953 * The suffix is either null or an
954 * exponent, and is addressed by "suffix".
955 * If there is a suffix, the flagword bit
1383 suffix = &expbuf[MAXESIZ];
1384 *suffix = '\0';
1392 *--suffix = todigit(nn % 10);
1393 *--suffix = todigit(nn);
1394 *--suffix = (exp >= 0) ? '+' : '-';
1396 *--suffix = '0';
1397 *--suffix = '+';
1401 *--suffix = (fcode == 'A') ? 'P' : 'p';
1403 /* compute size of suffix */
1404 suffixlength = &expbuf[MAXESIZ] - suffix;
1481 *(suffix = &expbuf[MAXESIZ]) = '\0';
1487 *--suffix = todigit(nn % 10);
1488 *--suffix = todigit(nn);
1492 while (suffix > &expbuf[MAXESIZ - 2])
1493 *--suffix = '0';
1496 *--suffix = (decpt > 0 || buf[0] == '0') ? '+' : '-';
1499 *--suffix = _M_ISUPPER(fcode) ? 'E' : 'e';
1501 /* compute size of suffix */
1503 - suffix);
2212 /* The suffix */
2214 PUT(suffix, suffixlength);