Lines Matching refs:fcode
180 int fcode;
281 if ((fcode = *format) != '\0' && fcode != '%') {
285 } while ((fcode = *format) != '\0' && fcode != '%');
292 if (fcode == '\0') { /* end of format; return */
325 switch (fcode = *format++) {
420 int num = fcode - '0';
421 while (isdigit(fcode = *format)) {
422 num = num * 10 + fcode - '0';
625 tab = (fcode == 'X') ? uc_digs : lc_digs;
657 switch (fcode) {
697 bp = (fcode == 'E')? uc_inf: lc_inf;
708 if (fcode == 'E') {
774 *--suffix = isupper(fcode) ? 'E' : 'e';
893 bp = (fcode == 'G') ? uc_inf : lc_inf;
905 if (fcode == 'G') {
941 buf[0] = (char)fcode;