Lines Matching refs:ep

101 	register char*	ep;
133 ep = buf + len;
149 if (cp < ep)
237 if (cp < ep)
263 cp = number(cp, ep, (long)(1900 + tm->tm_year) / 100, 2, width, pad);
266 cp = number(cp, ep, (long)tm->tm_mday, 2, width, pad);
272 cp = number(cp, ep, (long)tm->tm_mday, -2, width, pad);
300 cp = number(cp, ep, (long)n, c, width, pad);
303 cp = number(cp, ep, (long)tm->tm_hour, 2, width, pad);
311 cp = number(cp, ep, (long)n, 2, width, pad);
314 cp = number(cp, ep, (long)(tm->tm_yday + 1), 3, width, pad);
317 cp = number(cp, ep, (long)tm->tm_yday, 3, width, pad);
343 cp = number(cp, ep, (long)(tm->tm_mon + 1), 2, width, pad);
346 cp = number(cp, ep, (long)tm->tm_min, 2, width, pad);
349 if (cp < ep)
353 cp = number(cp, ep, (long)tm->tm_nsec, 9, width, pad);
364 while (cp < ep && (n = *p++))
527 cp += sfsprintf(cp, ep - cp, fmt, tmxsec(now));
530 n = sfsprintf(cp, ep - cp, ".%09I*u", sizeof(Tmxnsec_t), tmxnsec(now));
537 cp = number(cp, ep, (long)tm->tm_sec, 2, width, pad);
545 if (cp < ep)
554 cp = number(cp, ep, (long)i, 0, width, pad);
557 cp = number(cp, ep, (long)tmweek(tm, 0, -1, -1), 2, width, pad);
564 cp = number(cp, ep, (long)tmweek(tm, 2, -1, -1), 2, width, pad);
567 cp = number(cp, ep, (long)tmweek(tm, 1, -1, -1), 2, width, pad);
570 cp = number(cp, ep, (long)tm->tm_wday, 0, width, pad);
579 cp = number(cp, ep, (long)(tm->tm_year % 100), 2, width, pad);
582 cp = number(cp, ep, (long)(1900 + tm->tm_year), 4, width, pad);
591 if ((ep - cp) >= 16)
592 cp = tmpoff(cp, ep - cp, "", (flags & TM_UTC) ? 0 : tm->tm_zone->west + (tm->tm_isdst ? tm->tm_zone->dst : 0), pad == '_' ? -24 * 60 : 24 * 60);
613 if (cp < ep)
615 if (cp < ep)
622 while (cp < ep && (*cp = *p++))
699 if (cp >= ep)
700 cp = ep - 1;