Home
last modified time | relevance | path

Searched refs:timeptr (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/zdump/
H A Dzdump.c584 dumptime(timeptr) in dumptime() argument
585 register const struct tm *timeptr; in dumptime()
599 if (timeptr == NULL) {
608 if (timeptr->tm_wday < 0 || timeptr->tm_wday >=
611 else wn = wday_name[timeptr->tm_wday];
612 if (timeptr->tm_mon < 0 || timeptr->tm_mon >=
615 else mn = mon_name[timeptr->tm_mon];
618 timeptr->tm_mday, timeptr->tm_hour,
619 timeptr->tm_min, timeptr->tm_sec);
621 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
[all …]
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/os/
H A Dc_ustime.c55 struct _timeb timeptr; in get_time_now() local
56 _ftime(&timeptr); in get_time_now()
57 n->sec = timeptr.time; in get_time_now()
58 n->usec = timeptr.millitm * 1000; in get_time_now()
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dwcsftime.c62 const struct tm *timeptr) in __wcsftime_xpg5() argument
101 if (strftime(dst, maxsize, sformat, timeptr) == 0) in __wcsftime_xpg5()
123 const struct tm *timeptr) in wcsftime() argument
136 rv = __wcsftime_xpg5(wcs, maxsize, wfmt, timeptr); in wcsftime()