Home
last modified time | relevance | path

Searched refs:hour (Results 1 – 25 of 50) sorted by last modified time

12

/illumos-gate/usr/src/data/zoneinfo/
H A Dsouthamerica30 # integer hour and minute UT offsets. Although earlier editions used
186 # (English: "No hour change").
271 # (It is imminent in San Luis clocks one hour delay)
305 # 1 hour), and they intend to keep UTC-3 as their timezone all year round
339 # inhabitants) will have to turn back one hour their clocks
944 # canceled.... Maybe the president Michel Temer also woke up one hour
1178 # start to DST an hour later when they reached 24:00 -04.
1218 # Chile's clocks will go back an hour this year on the 7th of May instead
1478 # April 2001 and advance one hour to summer time at 2 am on Sunday 2
1627 # adjust their clocks at 0 hour of the given dates.
[all …]
H A Dnorthamerica393 # hours" within the deviated hour of this change every year....
396 # Wisconsin has enacted (nearly eleventh-hour) legislation to get WI
1122 # The difference an hour makes, Nando Times (2000-08-29 15:33 -0400).
1180 # one hour in 1914." This change is not in Shanks. We have no more
1749 # following, one hour in advance of Central Standard Time."...
1837 # follow Mountain Time rules (thus 1 hour difference in the winter and
2164 # one hour behind the rest of Nunavut for six months during the winter.
2423 # year, so that the more than 10,000 schools work at normal hour the
3027 # Time today." (The "two hour" remark referred to losing one hour of
3494 # time is returned one hour at 01:00 am of October 1 of 2006.
[all …]
H A Deurope161 # that proposed a two-hour daylight-saving shift. See:
175 # Later editions of the pamphlet proposed one-hour summer time, and
192 # https://www.winstonchurchill.org/publications/finest-hour/finest-hour-114/a-silent-toast-to-willi…
705 # second time belt rules without extra hour (Moscow-1);
895 # Will but hasten the happy hour
1296 # 00:00), clocks were moved one hour forward. The newspaper
1298 # On Oct 4 1942, clocks were moved at 1:00 one hour backwards.
1838 # clocks one hour in the spring....
2913 # 2-hour gap between second and third zones in 2011-2014).
3330 # the hour-longer day officially kept going after midnight, so that
[all …]
H A Daustralasia321 # move clocks forward by one hour from 2am
335 # the daylight saving period is 1 hour in advance of the standard time
342 # clocks go forward an hour at 2am to 3am.... Daylight Saving will
825 # are off by an hour starting in 1901.
1586 # hour ahead of NSW time.
1593 # arrangements on the Island, e.g. advance clocks by 1 full hour
1604 # of DST, LHI is actually 1 hour ahead of the rest of NSW.
2136 # (12 + 1 hour DST).
2144 # set back an hour on the closing date."
2166 # hour to 1:00am.
[all …]
H A Dasia1426 # of the previous years by one hour and a half.
1453 # time was pulled back half an hour and that half hour still remains."
1633 # are an hour ahead of Baghdad."
2031 # hour such that it will be UTC+3.
2309 # were to move clocks 1 hour forward.
2312 # of the Uzbek SSR were to move clocks 1 hour backwards.
3039 # advance clocks in the country by one hour from April 15 to
3055 # "Clocks to go back one hour from 1 Oct"
3251 # minutes per hour as of Friday morning."
3775 # "Sri Lanka advances clock by an hour to avoid blackout"
[all …]
H A Dafrica194 # Egypt will turn back clocks by one hour at the midnight of Thursday
212 # shifting business hours one hour out of daytime heat. Consequently,
376 # half an hour by the Alteration of Time Ordinance, 1928.
453 # Libya set their time one hour back at 02:00 on Saturday November 10.
557 # Mauritius. The summer time period which will be of one hour ahead of
584 # "The trial ended on March 29, 2009, when the clocks moved back by one hour
607 # be one hour ahead of GMT between 1 June and 27 September, according to
791 # (Google Translation) The hour will thus be delayed 60 minutes
1245 # West of Greenwich, of one hour each, Nigeria falling into the zone with a
1343 # hour on February 1, 2021...."
[all …]
H A Dantarctica78 # be on the same time zone as Hobart. Some past dates too for this 3 hour
/illumos-gate/usr/src/uts/intel/io/vmm/io/
H A Dvrtc.c70 uint8_t hour; member
354 ASSERT(ct.hour >= 0 && ct.hour <= 23); in vrtc_time_to_cmos()
363 int hour; in vrtc_time_to_cmos() local
365 hour = ct.hour; in vrtc_time_to_cmos()
373 hour = 12; in vrtc_time_to_cmos()
381 hour = ct.hour % 12; in vrtc_time_to_cmos()
386 rtc->hour = rtc_enc(rtc, hour); in vrtc_time_to_cmos()
433 hour = rtc_dec(rtc, hour, errp); in rtc_parse_hour()
436 if (hour >= 1 && hour <= 12) { in rtc_parse_hour()
448 hour = 0; in rtc_parse_hour()
[all …]
/illumos-gate/usr/src/compat/bhyve/sys/
H A Dclock.h61 int hour; /* hour (0 - 23) */ member
/illumos-gate/usr/src/lib/libtecla/common/
H A Dhistory.c1310 unsigned year,month,day,hour,min,sec; /* Calendar time components */ in _glh_decode_timestamp() local
1342 if(sscanf(timestr, "%4u%2u%2u%2u%2u%2u", &year, &month, &day, &hour, &min, in _glh_decode_timestamp()
1356 t.tm_hour = hour; in _glh_decode_timestamp()
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dtmplout.c998 hour, in gtime() local
1006 || (hour = tm -> tm_hour) < 0 || hour > 24 in gtime()
1010 if (hour == 24) { in gtime()
1011 hour = 0; in gtime()
1024 result = 24 * result + hour; in gtime()
/illumos-gate/usr/src/uts/intel/io/vmm/
H A Dvmm_sol_glue.c517 ct->hour > 23 || ct->min > 59 || ct->sec > 59 || in clock_ct_to_ts()
539 ts->tv_sec = (((time_t)days * 24 + ct->hour) * 60 + ct->min) * 60 + in clock_ct_to_ts()
577 ct->hour = rsec / 3600; in clock_ts_to_ct()
/illumos-gate/usr/src/uts/common/fs/hsfs/
H A Dhsfs_subr.c162 int year, month, day, hour, minute, sec, gmtoff; local
167 hour = HDE_DATE_HOUR(dp);
178 tvp->tv_sec += ((hour * 60) + minute) * 60 + sec;
199 int year, month, day, hour, minute, sec, gmtoff; local
204 hour = HSV_DATE_HOUR(dp);
215 tvp->tv_sec += ((hour * 60) + minute) * 60 + sec;
/illumos-gate/usr/src/pkg/manifests/
H A Dservice-network-uucp.p5m90 file path=usr/lib/uucp/uudemon.hour group=uucp mode=0555
/illumos-gate/usr/src/lib/print/libhttp-core/common/
H A Dhttp.c1520 int hour, min, sec; /* Time */ in httpGetDateTime() local
1523 if (sscanf(s, "%*s%d%15s%d%d:%d:%d", &day, mon, &year, &hour, &min, &sec) < 6) in httpGetDateTime()
1536 tdate.tm_hour = hour; in httpGetDateTime()
/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp_ami.h164 short hour; member
/illumos-gate/usr/src/lib/libprtdiag/common/
H A Ddisplay_funcs.c93 int sec, min, hour, day, month, year; in get_time() local
98 hour = BCD_TO_BYTE(mostek[2] & 0x3f); in get_time()
106 utc = (utc << 3) + (utc << 4) + hour; /* 24 * day + hour */ in get_time()
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/
H A Ddate.c200 Date->hour = ADM_twodigits(&String[0]); in ADM_Decode_Date()
204 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
214 Date->hour = ADM_twodigits(&String[0]); in ADM_Decode_Date()
218 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
230 Date->hour = ADM_twodigits(&String[4]); in ADM_Decode_Date()
238 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
256 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
281 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
306 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
329 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_ospf.c112 long sec, mins, hour; in ospf_print_lsa_age() local
117 hour = age / 3600; in ospf_print_lsa_age()
118 if (hour != 0) in ospf_print_lsa_age()
120 hour, mins, sec); in ospf_print_lsa_age()
/illumos-gate/usr/src/cmd/auditreduce/
H A Dtime.c171 int hour = tme->tm_hour; in tm_to_secs() local
190 num_sec += hour * 60 * 60; in tm_to_secs()
/illumos-gate/usr/src/cmd/ssh/etc/
H A Dsshd_config89 # The default is 1 hour (3600 seconds).
/illumos-gate/usr/src/cmd/format/
H A Dctlr_scsi.c3399 int hour, min, sec; in test_until_ready() local
3455 hour = time_left / 3600; in test_until_ready()
3459 progress, hour, min, sec); in test_until_ready()
/illumos-gate/usr/src/cmd/cron/
H A Dcron.c190 char *hour; /* fields */ member
1233 next_field(0, 23, line, &cursor, &e->of.ct.hour) != CFOK || in readcron()
1564 if ((tm->tm_hour + 1) <= next_ge(tm->tm_hour, e->of.ct.hour)) { in tz_next_time()
1570 hr = next_ge(h%24, e->of.ct.hour); in tz_next_time()
1666 hr = next_ge(0, e->of.ct.hour); in tz_next_time()
2115 free(e2->of.ct.hour); in rm_ctevents()
/illumos-gate/usr/src/cmd/bnu/
H A DMakefile39 LIBSHELLS = Uutry uudemon.admin uudemon.cleanup uudemon.hour uudemon.poll
/illumos-gate/usr/src/uts/sun4u/sys/
H A Drmc_comm_hproto.h182 rsci32 hour; /* 0 to 23 */ member

12