Lines Matching defs:format

101  * 	normal C string format, at least as far as I can tell from the Solaris
550 rpl_vsnprintf(char *str, size_t size, const char *format, va_list args);
553 rpl_vsnprintf(char *str, size_t size, const char *format, va_list args)
575 char ch = *format++;
595 ch = *format++;
601 ch = *format++;
605 ch = *format++;
609 ch = *format++;
613 ch = *format++;
617 ch = *format++;
621 ch = *format++;
636 ch = *format++;
647 ch = *format++;
655 ch = *format++;
669 ch = *format++;
678 ch = *format++;
686 ch = *format++;
688 ch = *format++;
694 ch = *format++;
696 ch = *format++;
703 ch = *format++;
707 ch = *format++;
711 ch = *format++;
715 ch = *format++;
870 * We use the glibc format. BSD prints
877 * We use the BSD/glibc format. SysV
937 ch = *format++;
1514 rpl_vasprintf(char **ret, const char *format, va_list ap);
1517 rpl_vasprintf(char **ret, const char *format, va_list ap)
1524 len = vsnprintf(NULL, 0, format, aq);
1528 return vsnprintf(*ret, size, format, ap);
1535 rpl_snprintf(char *str, size_t size, const char *format, ...);
1538 rpl_snprintf(char *str, size_t size, const char *format, ...)
1547 char *format;
1552 VA_START(ap, format);
1555 VA_SHIFT(ap, format, const char *);
1556 len = vsnprintf(str, size, format, ap);
1565 rpl_asprintf(char **ret, const char *format, ...);
1568 rpl_asprintf(char **ret, const char *format, ...)
1576 char *format;
1581 VA_START(ap, format);
1583 VA_SHIFT(ap, format, const char *);
1584 len = vasprintf(ret, format, ap);
2052 #if !OS_SYSV /* SysV uses a different format than we do. */
2093 "format string: %s\n" \
2113 #if !OS_SYSV /* SysV uses a different format than we do. */