Searched refs:tm_hour (Results 51 - 75 of 167) sorted by relevance

1234567

/freebsd-10.2-release/sbin/shutdown/
H A Dshutdown.c476 lt->tm_hour = ATOI2(timearg);
477 if (lt->tm_hour < 0 || lt->tm_hour > 23)
/freebsd-10.2-release/contrib/ntp/sntp/
H A Dutilities.c167 p_tm_local->tm_hour,
/freebsd-10.2-release/contrib/libarchive/libarchive/test/
H A Dtest_write_format_zip_no_compression.c173 assertEqualInt(i2(p + 12), (tm->tm_hour * 2048) + (tm->tm_min * 32) + (tm->tm_sec / 2)); /* File time */
204 assertEqualInt(i2(q + 10), (tm->tm_hour * 2048) + (tm->tm_min * 32) + (tm->tm_sec / 2)); /* File time */
247 assertEqualInt(i2(p + 12), (tm->tm_hour * 2048) + (tm->tm_min * 32) + (tm->tm_sec / 2)); /* File time */
276 assertEqualInt(i2(q + 10), (tm->tm_hour * 2048) + (tm->tm_min * 32) + (tm->tm_sec / 2)); /* File time */
H A Dtest_write_zip_set_compression_store.c171 assertEqualInt(i2(p + 12), (tm->tm_hour * 2048) + (tm->tm_min * 32) + (tm->tm_sec / 2)); /* File time */
202 assertEqualInt(i2(q + 10), (tm->tm_hour * 2048) + (tm->tm_min * 32) + (tm->tm_sec / 2)); /* File time */
245 assertEqualInt(i2(p + 12), (tm->tm_hour * 2048) + (tm->tm_min * 32) + (tm->tm_sec / 2)); /* File time */
274 assertEqualInt(i2(q + 10), (tm->tm_hour * 2048) + (tm->tm_min * 32) + (tm->tm_sec / 2)); /* File time */
/freebsd-10.2-release/contrib/apr-util/misc/
H A Dapr_date.c237 ds.tm_hour = ((timstr[0] - '0') * 10) + (timstr[1] - '0');
241 if ((ds.tm_hour > 23) || (ds.tm_min > 59) || (ds.tm_sec > 61))
308 ds.tm_hour = ((hr10 - '0') * 10) + (hr1 - '0'); \
574 if ((ds.tm_hour > 23) || (ds.tm_min > 59) || (ds.tm_sec > 61))
/freebsd-10.2-release/contrib/diff/lib/
H A Dstrftime.c291 return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour))
384 int hour12 = tp->tm_hour;
401 ((const CHAR_T *) _NL_CURRENT (LC_TIME, tp->tm_hour > 11 \
413 # define ampm (L_("AMPM") + 2 * (tp->tm_hour > 11))
937 DO_NUMBER (2, tp->tm_hour);
949 DO_NUMBER_SPACEPAD (2, tp->tm_hour);
1268 | (ltm.tm_hour ^ tm.tm_hour)
/freebsd-10.2-release/include/
H A Dtime.h128 int tm_hour; /* hours since midnight [0-23] */ member in struct:tm
/freebsd-10.2-release/usr.bin/rwall/
H A Drwall.c164 lt->tm_hour, lt->tm_min);
/freebsd-10.2-release/usr.bin/chpass/
H A Dutil.c131 lt->tm_hour = 0;
/freebsd-10.2-release/contrib/ntp/ntpd/
H A Drefclock_chronolog.c248 local.tm_hour = hours;
262 pp->hour = gmtp->tm_hour;
H A Drefclock_dumbclock.c262 asserted_tm.tm_hour = hours;
306 pp->hour = gmtp->tm_hour;
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_subr/
H A Ddate.c75 { 'h', DIGITS, ACCUM, APR_OFFSETOF(match_state, base.tm_hour) },
352 || expt.tm_hour > 23
/freebsd-10.2-release/bin/date/
H A Ddate.c276 lt->tm_hour = ATOI2(p);
277 if (lt->tm_hour > 23)
/freebsd-10.2-release/usr.bin/touch/
H A Dtouch.c282 t->tm_hour = ATOI2(arg);
314 t->tm_hour = ATOI2(arg);
/freebsd-10.2-release/crypto/heimdal/kadmin/
H A Dutil.c218 tm.tm_hour = tm2.tm_hour;
223 tm.tm_hour = 23;
/freebsd-10.2-release/contrib/ntp/libntp/
H A Dprettydate.c198 tm->tm_mday, 1900 + tm->tm_year, tm->tm_hour,
/freebsd-10.2-release/contrib/sendmail/libsm/
H A Ddebug.c151 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
/freebsd-10.2-release/contrib/tzcode/zic/
H A Dzdump.c190 (void) fprintf(stderr, " hour=%d", tmp->tm_hour);
535 result += newp->tm_hour - oldp->tm_hour;
651 timeptr->tm_mday, timeptr->tm_hour,
/freebsd-10.2-release/libexec/talkd/
H A Dannounce.c115 hostname, localclock->tm_hour , localclock->tm_min,
/freebsd-10.2-release/contrib/apr-util/test/
H A Dtestdate.c130 tms->tm_hour, tms->tm_min, tms->tm_sec);
/freebsd-10.2-release/sys/sys/
H A Defi.h92 uint8_t tm_hour; /* 0 - 23 */ member in struct:efi_tm
/freebsd-10.2-release/usr.sbin/fifolog/lib/
H A Dgetdate.y617 StartDay = (localtime(&Start)->tm_hour + 1) % 24;
618 FutureDay = (localtime(&Future)->tm_hour + 1) % 24;
652 (time_t)tm->tm_hour, (time_t)tm->tm_min, (time_t)tm->tm_sec,
874 Start -= ((tm->tm_hour * 60L + tm->tm_min) * 60L) + tm->tm_sec;
/freebsd-10.2-release/contrib/wpa/src/utils/
H A Dos_internal.c58 tm.tm_hour = hour;
77 tm->hour = tm2->tm_hour;
H A Dos_unix.c79 tm.tm_hour = hour;
113 tm->hour = tm2->tm_hour;
/freebsd-10.2-release/sbin/dhclient/
H A Dparse.c509 tm.tm_hour = atoi(val);
570 tm.tm_hour) * 60) +

Completed in 288 milliseconds

1234567