Searched refs:tm_sec (Results 1 - 25 of 103) sorted by relevance

12345

/illumos-gate/usr/src/cmd/acct/lib/
H A Dtmless.c44 return(t1->tm_sec < t2->tm_sec);
H A Dtmsecs.c38 return((t2->tm_sec - t1->tm_sec) +
H A Dpnpsplit.c124 cur.tm_sec = hp->h_sec;
309 return((t2->tm_sec - t1->tm_sec) +
327 return(t1->tm_sec < t2->tm_sec);
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dstrftime.c63 if (tm->tm_sec < 0 || tm->tm_sec > 60 ||
71 if (tm->tm_sec >= 0 && tm->tm_sec <= 60)
72 tl.tm_sec = tm->tm_sec;
88 tl.tm_sec = tm->tm_sec;
H A Dmktime.c55 tm.tm_sec = ts->tm_sec;
65 ts->tm_sec = tm.tm_sec;
H A Dstrptime.c56 tm.tm_sec = ts->tm_sec;
70 ts->tm_sec = tm.tm_sec;
H A Dgetdate.c71 ts.tm_sec = tm->tm_sec;
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dtime.h37 int tm_sec; member in struct:tm
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dgmt_mktime.c65 assert_time(t->tm_sec>=0);
66 assert_time(t->tm_sec<=62);
90 accum += t->tm_sec;
103 .tm_hour = 0, .tm_min = 0, .tm_sec = 0,
/illumos-gate/usr/src/lib/libast/common/tm/
H A Dtmfix.c58 if (w = !tm->tm_sec && !tm->tm_min && !tm->tm_mday && !tm->tm_year && !tm->tm_yday && !tm->tm_isdst)
70 tm->tm_sec -= (TMX_RESOLUTION - n) / TMX_RESOLUTION;
75 tm->tm_sec += n / TMX_RESOLUTION;
78 if ((n = tm->tm_sec) < 0)
81 tm->tm_sec = 60 - (-n) % 60;
86 tm->tm_sec %= 60;
H A Dtmxmake.c84 tm->tm_sec = n % 60 + leapsec;
91 tm->tm_sec = x % 60 + leapsec;
/illumos-gate/usr/src/cmd/oamuser/lib/
H A Dvexpire.c54 now -= tm->tm_hour * 60*60 + tm->tm_min * 60 + tm->tm_sec;
/illumos-gate/usr/src/stand/lib/sa/
H A Dtime.h44 int tm_sec; /* seconds after the minute */ member in struct:tm
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dtime.h42 int tm_sec; member in struct:tm
/illumos-gate/usr/src/head/iso/
H A Dtime_iso.h81 int tm_sec; member in struct:std::tm
/illumos-gate/usr/src/lib/libresolv2/common/nameser/
H A Dns_date.c74 time.tm_sec = datepart(cp + 12, 2, 00, 59, errp);
86 result = time.tm_sec; /*%< Seconds */
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dgetdate.c125 rtm.tm_sec = rtm.tm_min = rtm.tm_hour = TMSENTINEL;
213 rtm.tm_min == TMSENTINEL && rtm.tm_sec == TMSENTINEL) {
216 rtm.tm_sec = tmnow.tm_sec;
240 if (rtm.tm_sec == TMSENTINEL)
241 rtm.tm_sec = 0;
/illumos-gate/usr/src/cmd/auditreduce/
H A Dtime.c171 int sec = tme->tm_sec;
214 if (tme->tm_sec < 0 || tme->tm_sec > 59) {
216 gettext("seconds out of range (%d)"), tme->tm_sec + 1);
351 thentime.tm_sec = 0;
456 tme->tm_sec = atoi(strs); /* get seconds */
484 (void) sprintf(buf + 12, "%.2d", gtime.tm_sec);
/illumos-gate/usr/src/cmd/backup/dump/
H A Dunctime.c65 then.tm_sec = atoi(&dbuf[E_SECOND]);
/illumos-gate/usr/src/cmd/lvm/metassist/common/
H A Dvolume_output.c170 time->tm_hour, time->tm_min, time->tm_sec);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dctime.c135 cp = ct_numb(cp, t->tm_sec, '0');
/illumos-gate/usr/src/cmd/cron/
H A Datt1.y111 at.tm_sec = tp->tm_sec;
/illumos-gate/usr/src/ucbcmd/touch/
H A Dtouch.c85 newtime.tm_sec = 0;
180 tp->tm_sec < 0 || tp->tm_sec > 59) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/nca/
H A Dncab2clf.c260 local_time.tm_sec < g_start_time.tm_sec))))))) {
281 local_time.tm_min, local_time.tm_sec,
441 tm->tm_sec = seconds;
819 &t.tm_sec) == 6) {
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dlocaltime.c1155 tmp->tm_sec = (int) (rem % SECSPERMIN);
1227 result = atmp->tm_sec - btmp->tm_sec;
1249 if (yourtm.tm_sec >= SECSPERMIN + 2 || yourtm.tm_sec < 0)
1250 normalize(&yourtm.tm_min, &yourtm.tm_sec, SECSPERMIN);
1278 saved_seconds = yourtm.tm_sec;
1279 yourtm.tm_sec = 0;
1378 tmp->tm_sec += sp->ttis[otheri].tt_gmtoff -
1384 tmp->tm_sec
[all...]

Completed in 84 milliseconds

12345