Lines Matching defs:format

188 #define	DOTSEEN 0x40	/* dot appeared in format specification */
401 _wdoprnt(const wchar_t *format, va_list in_args, FILE *iop)
403 return (_wndoprnt(format, in_args, iop, 0));
407 _doprnt(const char *format, va_list in_args, FILE *iop)
409 return (_ndoprnt(format, in_args, iop, 0));
416 _wndoprnt(const wchar_t *format, va_list in_args, FILE *iop, int prflag)
419 _ndoprnt(const char *format, va_list in_args, FILE *iop, int prflag)
490 /* and FSHARP are set if corresponding character is in format */
560 /* save the beginning of the format */
561 wchar_t *sformat = (wchar_t *)format;
564 char *sformat = (char *)format; /* save the beginning of the format */
578 int starflg = 0; /* set to 1 if * format specifier seen */
665 * for each string of ordinary characters or format specification.
670 if ((fcode = *format) != '\0' && fcode != '%') {
672 bp = (wchar_t *)format;
674 bp = (char *)format;
677 format++;
678 } while ((fcode = *format) != '\0' && fcode != '%');
680 count += (n = format - bp); /* n = no. of non-% chars */
683 if (fcode == '\0') { /* end of format; return */
713 * The following switch is used to parse the format
715 * by the format letter. The program repeatedly goes
716 * back to this switch until the format letter is
721 format++;
729 switch (fcode = *format++) {
755 if (_M_ISDIGIT(*format)) {
796 format--;
846 while (_M_ISDIGIT(fcode = *format)) {
848 format++;
922 * The character addressed by format must be
923 * the format letter -- there is nothing
1286 /* A format */
1412 * E-format. The general strategy
1414 * econvert gives us and re-format it.
1510 * F-format floating point. This is a
1511 * good deal less simple than E-format.
1607 * g-format. We play around a bit
2070 /* back up the format pointer to the offending char */
2071 /* and continue with the format scan */
2072 format--;
2110 if (sec_display) /* when format is %s or %ws or %S */