Lines Matching refs:ptlim
165 const char *ptlim, enum warn *warnp) in _fmt() argument
178 pt, ptlim); in _fmt()
184 pt, ptlim); in _fmt()
190 pt, ptlim); in _fmt()
197 pt, ptlim); in _fmt()
208 true, false, pt, ptlim); in _fmt()
214 pt = _fmt(Locale->c_fmt, t, pt, ptlim, &warn2); in _fmt()
222 pt = _fmt("%m/%d/%y", t, pt, ptlim, warnp); in _fmt()
225 pt = _conv(t->tm_mday, "%02d", pt, ptlim); in _fmt()
240 pt = _conv(t->tm_mday, "%2d", pt, ptlim); in _fmt()
243 pt = _fmt("%Y-%m-%d", t, pt, ptlim, warnp); in _fmt()
246 pt = _conv(t->tm_hour, "%02d", pt, ptlim); in _fmt()
251 "%02d", pt, ptlim); in _fmt()
254 pt = _conv(t->tm_yday + 1, "%03d", pt, ptlim); in _fmt()
267 pt = _conv(t->tm_hour, "%2d", pt, ptlim); in _fmt()
274 pt = _add("kitchen sink", pt, ptlim); in _fmt()
289 "%2d", pt, ptlim); in _fmt()
292 pt = _conv(t->tm_min, "%02d", pt, ptlim); in _fmt()
295 pt = _conv(t->tm_mon + 1, "%02d", pt, ptlim); in _fmt()
298 pt = _add("\n", pt, ptlim); in _fmt()
304 pt, ptlim); in _fmt()
307 pt = _fmt("%H:%M", t, pt, ptlim, warnp); in _fmt()
310 pt = _fmt("%I:%M:%S %p", t, pt, ptlim, warnp); in _fmt()
313 pt = _conv(t->tm_sec, "%02d", pt, ptlim); in _fmt()
345 pt = _add(buf, pt, ptlim); in _fmt()
349 pt = _fmt("%H:%M:%S", t, pt, ptlim, warnp); in _fmt()
352 pt = _add("\t", pt, ptlim); in _fmt()
357 "%02d", pt, ptlim); in _fmt()
368 "%d", pt, ptlim); in _fmt()
449 pt, ptlim); in _fmt()
454 pt, ptlim); in _fmt()
457 pt, ptlim); in _fmt()
466 pt = _fmt("%e-%b-%Y", t, pt, ptlim, warnp); in _fmt()
473 "%02d", pt, ptlim); in _fmt()
476 pt = _conv(t->tm_wday, "%d", pt, ptlim); in _fmt()
479 pt = _fmt(Locale->X_fmt, t, pt, ptlim, warnp); in _fmt()
485 pt = _fmt(Locale->x_fmt, t, pt, ptlim, &warn2); in _fmt()
496 pt, ptlim); in _fmt()
501 pt, ptlim); in _fmt()
505 pt = _add(t->TM_ZONE, pt, ptlim); in _fmt()
509 pt, ptlim); in _fmt()
578 pt = _add(sign, pt, ptlim); in _fmt()
582 pt = _conv(diff, "%04d", pt, ptlim); in _fmt()
587 pt = _fmt(Locale->date_fmt, t, pt, ptlim, in _fmt()
600 if (pt == ptlim) in _fmt()
608 _conv(int n, const char *format, char *pt, const char *ptlim) in _conv() argument
613 return _add(buf, pt, ptlim); in _conv()
617 _add(const char *str, char *pt, const char *ptlim) in _add() argument
619 while (pt < ptlim && (*pt = *str++) != '\0') in _add()
634 char *pt, const char *ptlim) in _yconv() argument
652 pt = _add("-0", pt, ptlim); in _yconv()
653 else pt = _conv(lead, "%02d", pt, ptlim); in _yconv()
656 pt = _conv(((trail < 0) ? -trail : trail), "%02d", pt, ptlim); in _yconv()