Lines Matching refs:format
135 strftime(char * const s, const size_t maxsize, const char *const format, in strftime() argument
146 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn); in strftime()
150 if (format == NULL) in strftime()
153 format); in strftime()
186 _fmt(const char *format, const struct tm *const t, char * pt, in _fmt() argument
189 for ( ; *format; ++format) { in _fmt()
190 if (*format == '%') { in _fmt()
193 switch (*++format) { in _fmt()
195 --format; in _fmt()
270 modifier = *format; in _fmt()
495 if (*format == 'V') in _fmt()
499 else if (*format == 'g') { in _fmt()
638 *pt++ = *format; in _fmt()
644 _conv(const int n, const char *const format, char *const pt, in _conv() argument
649 (void) snprintf(buf, sizeof(buf), format, n); in _conv()