| /src/external/bsd/ntp/dist/libntp/ |
| humandate.c | 33 tm->tm_hour, tm->tm_min, tm->tm_sec); 58 tm->tm_hour, tm->tm_min, tm->tm_sec);
|
| uglydate.c | 40 tm->tm_sec = 0; 48 tm->tm_yday, tm->tm_hour, tm->tm_min, tm->tm_sec,
|
| mktime.c | 178 result = atmp->tm_sec - btmp->tm_sec; 199 if (yourtm.tm_sec >= SECSPERMIN + 2 || yourtm.tm_sec < 0) 200 normalize(&yourtm.tm_min, &yourtm.tm_sec, SECSPERMIN); 220 saved_seconds = yourtm.tm_sec; 221 yourtm.tm_sec = 0;
|
| /src/external/bsd/ntp/dist/tests/libntp/ |
| humandate.c | 34 snprintf(expected, 15, "%02d:%02d:%02d", tm->tm_hour, tm->tm_min, tm->tm_sec); 53 snprintf(expected, 15, "%02d:%02d:%02d", tm->tm_hour, tm->tm_min, tm->tm_sec);
|
| /src/tests/lib/libc/time/ |
| t_mktime.c | 53 if (t->tm_sec != tt.tm_sec || t->tm_min != tt.tm_min || 103 tms.tm_sec = 1; 118 tms.tm_sec = 59; 131 tms.tm_sec = -1; 142 tms.tm_sec = -2;
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| mail_date.c | 94 if (lt->tm_sec <= gmt.tm_sec - MIN_SEC) 96 else if (lt->tm_sec >= gmt.tm_sec + MIN_SEC)
|
| /src/external/gpl2/rcs/dist/src/ |
| maketime.c | 129 )*60 + (a->tm_sec - b->tm_sec); 149 int leap_second = t->tm_sec == 60; 150 long sec = seconds + (t->tm_sec - leap_second); 183 t->tm_sec = (int) (sec%60) + leap_second; 243 | (tm->tm_sec ^ gtm->tm_sec)) 300 if (!TM_DEFINED(tm.tm_sec)) tm.tm_sec = 0;
|
| partime.c | 212 t->tm.tm_sec = t->tm.tm_min = t->tm.tm_hour = t->tm.tm_mday = t->tm.tm_mon 525 t->tm.tm_sec = frac % 60; 530 s = parse_decimal (s, 2, 0, 59, 60, &t->tm.tm_min, &t->tm.tm_sec); 560 s = parse_decimal (s, 2, 0, 60, 1, &t->tm.tm_sec, &frac); 561 t->tm.tm_sec += frac; 649 conflict (t->tm.tm_sec, u->tm.tm_sec) || 667 merge_ (t->tm.tm_sec, u->tm.tm_sec)
|
| rcstime.c | 59 tm->tm_hour, tm->tm_min, tm->tm_sec 154 t.tm_sec = atoi(p+12); 178 z->tm_mon + 1, z->tm_mday, z->tm_hour, z->tm_min, z->tm_sec,
|
| /src/usr.bin/at/ |
| stime.c | 70 t->tm_sec = 0; /* Seconds defaults to 0. */ 75 t->tm_sec = ATOI2(p);
|
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| po-time.c | 50 + (a->tm_sec - b->tm_sec);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/stdc/ |
| time.d | 30 int tm_sec; /// seconds after the minute - [0, 60]
|
| /src/usr.bin/moduli/qsieve/ |
| qfile.c | 65 gtm->tm_sec,
|
| /src/lib/libresolv/ |
| ns_date.c | 73 tim.tm_sec = datepart(cp + 12, 2, 00, 59, errp); 85 result = tim.tm_sec; /*%< Seconds */
|
| /src/external/bsd/libbind/dist/nameser/ |
| ns_date.c | 76 time.tm_sec = datepart(cp + 12, 2, 00, 59, errp); 88 result = time.tm_sec; /*%< Seconds */
|
| /src/lib/libc/time/ |
| getdate.c | 97 rtm.tm_sec = rtm.tm_min = rtm.tm_hour = TMSENTINEL; 188 rtm.tm_min == TMSENTINEL && rtm.tm_sec == TMSENTINEL) { 191 rtm.tm_sec = tmnow.tm_sec; 215 if (rtm.tm_sec == TMSENTINEL) 216 rtm.tm_sec = 0;
|
| zdump.c | 356 (void) fprintf(stderr, " sec=%d", tmp->tm_sec); 771 result += newp->tm_sec - oldp->tm_sec; 821 long seconds = a->tm_sec - b->tm_sec + 60 * minutes; 888 localtm[old].tm_sec = -1; 890 gmtm[old].tm_sec = -1; 899 localtm[new].tm_sec = -1; 901 gmtm[new].tm_sec = -1; 902 if (((localtm[old].tm_sec < 0) != (localtm[new].tm_sec < 0) [all...] |
| /src/tests/lib/libutil/ |
| t_parsedate.c | 112 ATF_CHECK_MSG(tm.tm_sec == second, 114 argstr, second, (int)tm.tm_sec); 267 .tm_hour = 13, .tm_min = 21, .tm_sec = 53, 337 tm.tm_sec = tm.tm_min = tm.tm_hour = 0; 343 tm.tm_sec = tm.tm_min = tm.tm_hour = 0; 351 tm.tm_sec = tm.tm_min = 0; 361 tm.tm_sec = tm.tm_min = 0; 436 tm.tm_hour = tm.tm_min = tm.tm_sec = 0; 442 tm.tm_hour = tm.tm_min = tm.tm_sec = 0; 448 tm.tm_hour = tm.tm_min = tm.tm_sec = 0 [all...] |
| /src/external/gpl2/xcvs/dist/lib/ |
| mktime.c | 212 tp->tm_hour, tp->tm_min, tp->tm_sec); 291 int sec = tp->tm_sec; 481 if (LEAP_SECONDS_POSSIBLE && sec_requested != tm.tm_sec) 483 /* Adjust time to reflect the tm_sec requested, not the normalized value. 485 int sec_adjustment = (sec == 0 && tm.tm_sec == 60) - sec; 535 return ((a->tm_sec ^ b->tm_sec) 551 tp->tm_hour, tp->tm_min, tp->tm_sec, 587 &tm.tm_hour, &tm.tm_min, &tm.tm_sec, &trailer)
|
| /src/external/bsd/ntp/dist/libparse/ |
| clk_sel240x.c | 151 clock_time->second = ptime.tm_sec;
|
| /src/external/bsd/openldap/dist/contrib/slapd-modules/rbac/ |
| util.c | 264 tm.tm_sec = 0; 289 tm.tm_sec = 0; 314 tm.tm_sec = 0; 340 tm.tm_sec = 0; 478 resultp->tm_sec;
|
| /src/games/rogue/ |
| machdep.c | 245 rt_buf->second = t->tm_sec; 280 rt_buf->second = t->tm_sec;
|
| /src/usr.sbin/makefs/cd9660/ |
| cd9660_conversion.c | 189 (int)t.tm_sec, 210 buf[5] = t.tm_sec;
|
| /src/external/bsd/file/dist/src/ |
| cdf_time.c | 117 tm.tm_sec = CAST(int, t % 60); 166 *t += tm.tm_sec;
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_time.c | 69 ts.tm_sec = (msTime << 1) & 0x3e; 112 dt += (t->tm_sec & 0x3e) >> 1;
|