Lines Matching defs:fcode
479 wchar_t fcode;
482 char fcode;
670 if ((fcode = *format) != '\0' && fcode != '%') {
678 } while ((fcode = *format) != '\0' && fcode != '%');
683 if (fcode == '\0') { /* end of format; return */
729 switch (fcode = *format++) {
845 { num = fcode - '0';
846 while (_M_ISDIGIT(fcode = *format)) {
847 num = num * 10 + fcode - '0';
1200 tab = (wchar_t *)((fcode == 'X') ? uc_digs : lc_digs);
1203 tab = (fcode == 'X') ? uc_digs : lc_digs;
1265 switch (fcode) {
1346 *p++ = (fcode == 'A') ? 'X' : 'x';
1360 if (fcode == 'A') {
1401 *--suffix = (fcode == 'A') ? 'P' : 'p';
1499 *--suffix = _M_ISUPPER(fcode) ? 'E' : 'e';
1550 if (fcode == 'f')
1660 buf[0] = fcode;
2085 upper = _M_ISUPPER(fcode);
2179 if ((fcode == 's') && !lflag) {
2185 if ((fcode == 's' || fcode == 'S') && wflag) {