Home
last modified time | relevance | path

Searched refs:hour (Results 1 – 25 of 55) sorted by relevance

123

/titanic_44/usr/src/cmd/scadm/sparc/mpxu/common/
H A Ddate.c202 Date->hour = ADM_twodigits(&String[0]); in ADM_Decode_Date()
206 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
216 Date->hour = ADM_twodigits(&String[0]); in ADM_Decode_Date()
220 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
232 Date->hour = ADM_twodigits(&String[4]); in ADM_Decode_Date()
240 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
250 Date->hour = ADM_twodigits(&String[4]); in ADM_Decode_Date()
258 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
270 Date->hour = ADM_twodigits(&String[4]); in ADM_Decode_Date()
283 if (((int)Date->hour < 0) || (Date->hour > 23)) in ADM_Decode_Date()
[all …]
/titanic_44/usr/src/uts/common/fs/pcfs/
H A Dpc_subr.c121 uint_t year, month, day, hour, min, sec; in pc_tvtopct() local
154 hour = (int)(unixtime / 3600); in pc_tvtopct()
155 unixtime -= 3600 * hour; in pc_tvtopct()
163 PC_DPRINTF3(1, "ux2pc time: %dh%dm%ds\n", hour, min, sec); in pc_tvtopct()
169 ASSERT(hour < 24); in pc_tvtopct()
174 LE_16(hour << HOURSHIFT | min << MINSHIFT | (sec / 2) << SECSHIFT); in pc_tvtopct()
192 uint_t year, month, day, hour, min, sec; in pc_pcttotv() local
196 hour = (LE_16(pctp->pct_time) >> HOURSHIFT) & HOURMASK; in pc_pcttotv()
213 hour > 23 || min > 59 || sec > 59) { in pc_pcttotv()
216 day, month, year, hour, min, sec); in pc_pcttotv()
[all …]
/titanic_44/usr/src/cmd/sgs/libconv/common/
H A Dtime.c41 int hour, min; in conv_time() local
59 if ((hour = min / 60) != 0) in conv_time()
62 if (hour) in conv_time()
64 MSG_ORIG(MSG_TIME_HMSF), hour, min, sec, usec); in conv_time()
/titanic_44/usr/src/cmd/krb5/kadmin/gui/dchanger/
H A DDateTimeDialog.java59 private DCCircularTextField hour; field in DateTimeDialog
171 hour = new DCCircularTextField("00", 2); in addFields()
172 hour.setMaximum(23); in addFields()
173 hour.setBackground(background); in addFields()
174 hour.setForeground(foreground); in addFields()
208 topPanel.add(hour, gbc); in addFields()
246 hourDCPanel.setListener(hour); in addDCPanels()
326 hour.addFocusListener(fl); in addFocusListeners()
352 checkErrorAndSet(hour) && checkErrorAndSet(minute) && in updateFromGui()
417 hour.setValue(calendar.get(Calendar.HOUR_OF_DAY)); in setDate()
[all …]
/titanic_44/usr/src/uts/common/fs/hsfs/
H A Dhsfs_subr.c164 int year, month, day, hour, minute, sec, gmtoff; local
169 hour = HDE_DATE_HOUR(dp);
180 tvp->tv_sec += ((hour * 60) + minute) * 60 + sec;
201 int year, month, day, hour, minute, sec, gmtoff; local
206 hour = HSV_DATE_HOUR(dp);
217 tvp->tv_sec += ((hour * 60) + minute) * 60 + sec;
/titanic_44/usr/src/lib/libzoneinfo/common/
H A Dlibzone.c704 int hour; in conv_gmt() local
711 hour = (seconds / 60) / 60; in conv_gmt()
714 cp = _conv_gmt_posix(hour); in conv_gmt()
716 cp = _conv_gmt_zoneinfo(hour); in conv_gmt()
725 _conv_gmt_posix(int hour) in _conv_gmt_posix() argument
730 if (hour == 0) { in _conv_gmt_posix()
736 if (hour < 0) { in _conv_gmt_posix()
739 hour = -hour; in _conv_gmt_posix()
748 xsign, hour, xsign, hour); in _conv_gmt_posix()
754 _conv_gmt_zoneinfo(int hour) in _conv_gmt_zoneinfo() argument
[all …]
/titanic_44/usr/src/cmd/cron/
H A Datt1.y87 : hour {
90 | hour COLON number {
95 | hour minute {
211 hour
/titanic_44/usr/src/lib/libprtdiag/common/
H A Ddisplay_funcs.c95 int sec, min, hour, day, month, year; in get_time() local
100 hour = BCD_TO_BYTE(mostek[2] & 0x3f); in get_time()
108 utc = (utc << 3) + (utc << 4) + hour; /* 24 * day + hour */ in get_time()
/titanic_44/usr/src/lib/libast/common/tm/
H A Dtmxscan.c48 int hour; member
55 #define CLEAR(s) (s.year=s.mon=s.week=s.weektype=s.yday=s.mday=s.wday=s.hour=s.min=s.sec=s.meridian…
108 if (set->hour >= 0) in gen()
110 if (set->hour < tm->tm_hour && set->yday < 0 && set->mday < 0 && set->wday < 0) in gen()
112 tm->tm_hour = set->hour; in gen()
278 set.hour = n; in scan()
283 set.hour = n; in scan()
/titanic_44/usr/src/cmd/touch/
H A Dtouch.c274 char *hour; in parse_datetime() local
311 hour = strsep(&p, ":"); in parse_datetime()
320 hour == NULL || strlen(hour) != 2 || !isnumber(hour) || in parse_datetime()
331 tm.tm_hour = atoi(hour); in parse_datetime()
/titanic_44/usr/src/psm/promif/ieee1275/sun4/
H A Dprom_vercheck.c87 int maj, year, month, day, hour, min; in obp_timestamp() local
150 hour = strtoi(c, NULL); in obp_timestamp()
154 DAY(day) + HOUR(hour) + MINUTE(min)); in obp_timestamp()
/titanic_44/usr/src/cmd/bnu/
H A DREADME39 uudemon.hour: hourly demon
78 by invoking uucico with -sSYSTEM option. (see uudemon.hour)
82 39,9 * * * * /usr/bin/su uucp -c "/usr/lib/uucp/uudemon.hour" > /dev/null
H A Duudemon.crontab35 #11,41 * * * * /usr/lib/uucp/uudemon.hour
/titanic_44/usr/src/cmd/sa/
H A DREADME55 cause data collection program to be activated at every hour
56 on the hour from 8:00 to 23:00 on weekdays.
/titanic_44/usr/src/stand/lib/fs/hsfs/
H A Dhsfsops.c1082 int year, month, day, hour, minute, sec, gmtoff; in hs_parse_dirdate() local
1087 hour = HDE_DATE_HOUR(dp); in hs_parse_dirdate()
1098 tvp->tv_sec += ((hour * 60) + minute) * 60 + sec; in hs_parse_dirdate()
1117 int year, month, day, hour, minute, sec, gmtoff; in hs_parse_longdate() local
1122 hour = HSV_DATE_HOUR(dp); in hs_parse_longdate()
1133 tvp->tv_sec += ((hour * 60) + minute) * 60 + sec; in hs_parse_longdate()
/titanic_44/usr/src/lib/libldap5/sources/ldap/common/
H A Dtmplout.c1002 hour, in gtime() local
1010 || (hour = tm -> tm_hour) < 0 || hour > 24 in gtime()
1014 if (hour == 24) { in gtime()
1015 hour = 0; in gtime()
1028 result = 24 * result + hour; in gtime()
/titanic_44/usr/src/uts/common/fs/sockfs/
H A Dnl7chttp.c220 ssize_t hour; in http_date2time_t() local
377 hour = n; in http_date2time_t()
498 hour = n; in http_date2time_t()
580 + hour) * 60 + min) * 60 + sec; in http_date2time_t()
603 ssize_t hour; in http_today() local
614 hour = now % 24; in http_today()
675 i = hour / 10; in http_today()
677 *cp++ = '0' + (hour - i * 10); in http_today()
/titanic_44/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_ospf.c114 long sec, mins, hour; in ospf_print_lsa_age() local
119 hour = age / 3600; in ospf_print_lsa_age()
120 if (hour != 0) in ospf_print_lsa_age()
122 hour, mins, sec); in ospf_print_lsa_age()
/titanic_44/usr/src/cmd/auditreduce/
H A Dtime.c173 int hour = tme->tm_hour; in tm_to_secs() local
192 num_sec += hour * 60 * 60; in tm_to_secs()
/titanic_44/usr/src/data/zoneinfo/
H A Dasia58 # and +0330 for integer hour and minute UT offsets. Although earlier
204 # Bangladesh has decided that the clock advanced by an hour to make
219 # "...The government yesterday decided to put the clock back by one hour
344 # (To establish summer time from 1986. On 4 May, set the clocks ahead one hour
345 # at 2 am. On 14 September, set the clocks backward one hour at 2 am.)
429 # different - the occupied districts going by Tokyo time, an hour
629 # Kong Time 04:00 am)" and the clock will fall back for a half hour. (03:00
632 # Morning Post for October 1st was indeed moved by half an hour compares to
639 # saying it's half an hour ahead of the old Hong Kong standard time, and it
659 # clocks moving forward one hour until October 1, when they would be put back
[all …]
H A Dsystemv8 # using the System V "TZ" scheme (half-hour offset), or anything outside
H A Deurope162 # that proposed a two-hour daylight-saving shift. See:
176 # Later editions of the pamphlet proposed one-hour summer time, and
193 # https://www.winstonchurchill.org/publications/finest-hour/finest-hour-114/a-silent-toast-to-willi…
271 # * GB-Eire changed standard time to 1 hour ahead of GMT on 1968-02-18.
710 # second time belt rules without extra hour (Moscow-1);
898 # Will but hasten the happy hour
1050 # The law is about the management of the extra hour, concerning
1263 # During these two first trial years the DST adjustment was made one hour
1286 # 00:00), clocks were moved one hour forward. The newspaper
1288 # On Oct 4 1942, clocks were moved at 1:00 one hour backwards.
[all …]
/titanic_44/usr/src/cmd/fwflash/plugins/hdrs/
H A Dhermon_ib.h123 uint8_t hour; member
/titanic_44/usr/src/cmd/units/
H A Dunittab72 hour 60 min
73 hr hour
368 refrigeration 12000 btu/ton-hour
/titanic_44/usr/src/cmd/fm/eversholt/common/
H A Dliterals.h98 L_DECL(hour);

123