Lines Matching defs:suffix
88 #define SUFFIX 128 /* a suffix is to appear in the output */
198 char *suffix;
203 /* Length of prefix and of suffix */
206 /* Combined length of leading zeroes, trailing zeroes, and suffix */
460 * right padding zeroes, a suffix, and
473 * The suffix is either null or an
474 * exponent, and is addressed by "suffix".
475 * If there is a suffix, the flagword bit
756 *(suffix = &expbuf[MAXESIZ]) = '\0';
762 *--suffix = todigit(nn % 10);
763 *--suffix = todigit(nn);
767 while (suffix > &expbuf[MAXESIZ - 2])
768 *--suffix = '0';
771 *--suffix = (decpt > 0 || dval == 0) ? '+' : '-';
774 *--suffix = isupper(fcode) ? 'E' : 'e';
776 /* compute size of suffix */
778 (int)(&expbuf[MAXESIZ] - suffix));
1052 /* The suffix */
1054 PUT(suffix, suffixlength);