Searched refs:hour (Results 76 - 100 of 315) sorted by relevance

1234567891011>>

/macosx-10.10/ntp-92/libntp/
H A Dcaljulian.c107 jt->hour = (u_char)(ntptime);
112 NTP_ENSURE(jt->hour < HRSPERDAY);
189 jt->hour = (u_char) tm->tm_hour;
/macosx-10.10/webdavfs-367/mount.tproj/
H A Dwebdav_utils.c53 tm_temp.tm_hour = gdate.hour;
88 tm_temp.tm_hour = gdate.hour;
242 date->hour *= 10;
243 date->hour += c - '0';
447 if(date.hour < 0 || 23 < date.hour)
/macosx-10.10/OpenSSL098-52/src/crypto/
H A Do_time.c170 short year, month, day, hour, minute, second, member in struct:vms_vectime
195 result->tm_hour = time_values.hour;
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/nsupdate/
H A Dsetup.sh44 3600 ; minimum (1 hour)
/macosx-10.10/emacs-93/emacs/src/
H A Dmktime.c141 ydhms_tm_diff (year, yday, hour, min, sec, tp)
142 int year, yday, hour, min, sec;
164 return (60 * (60 * (24 * days + (hour - tp->tm_hour))
250 int hour = tp->tm_hour; local
298 t0 = ydhms_tm_diff (year, yday, hour, min, sec, &tm);
301 (dt = ydhms_tm_diff (year, yday, hour, min, sec,
347 t = ot + ydhms_tm_diff (year, yday, hour, min, sec, &otm);
377 double dsec = 60 * (60 * (24 * dday + hour) + min) + sec_requested;
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_time.rb49 assert_equal([2001,2,28,23,59,30,-43200], [t.year, t.month, t.mday, t.hour, t.min, t.sec, t.gmt_offset], bug4090)
214 assert_equal([1970,1,1, 0,0,0], [t.year, t.mon, t.day, t.hour, t.min, t.sec])
216 assert_equal([1969,12,31, 0,0,0], [t.year, t.mon, t.day, t.hour, t.min, t.sec])
218 assert_equal([1970-400,1,1, 0,0,0], [t.year, t.mon, t.day, t.hour, t.min, t.sec])
220 assert_equal([1970-400*1000,1,1, 0,0,0], [t.year, t.mon, t.day, t.hour, t.min, t.sec])
222 assert_equal([1970-400*2421,1,1, 0,0,0], [t.year, t.mon, t.day, t.hour, t.min, t.sec])
224 assert_equal([1970-400*1000000,1,1, 0,0,0], [t.year, t.mon, t.day, t.hour, t.min, t.sec])
227 assert_equal([-968139,1,1, 0,0,0], [t.year, t.mon, t.day, t.hour, t.min, t.sec])
229 assert_equal([-968140,12,31, 23,59,59], [t.year, t.mon, t.day, t.hour, t.min, t.sec])
572 assert_equal(0, t2000.hour)
[all...]
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dgetdate.y127 /* Meridian: am, pm, or 24-hour style. */
135 /* Relative year, month, day, hour, minutes, seconds, and nanoseconds. */
139 long int hour;
172 /* Gregorian year, month, day, hour, minutes, seconds, and nanoseconds. */
176 long int hour;
180 /* Relative year, month, day, hour, minutes, seconds, and nanoseconds. */
276 pc->hour = $1.value;
284 pc->hour = $1.value;
292 pc->hour = $1.value;
302 pc->hour
[all...]
H A Dmktime.c200 guess_time_tm (long int year, long int yday, int hour, int min, int sec, argument
205 time_t d = ydhms_diff (year, yday, hour, min, sec,
289 int hour = tp->tm_hour; local
335 t0 = ydhms_diff (year, yday, hour, min, sec,
362 + SHR (hour, ALOG2_HOURS_PER_BIENNIUM)
399 (gt = guess_time_tm (year, yday, hour, min, sec, &t,
466 t = guess_time_tm (year, yday, hour, min, sec, &ot, &otm);
/macosx-10.10/PostgreSQL-97/Support/backup_restore/
H A Dxpostgres624 my ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) = localtime;
625 my $now = timelocal( $sec, $min, $hour, $mday, $mon, $year );
868 my ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) = localtime;
873 if ( $hour =~ / \A \d \z /xms ) { $hour = '0' . $hour; }
877 my $ret = "$year-$mon-$mday $hour:$min:$sec";
1103 my ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) = gmtime;
1104 my $now = timegm( $sec, $min, $hour, $mday, $mon, $year );
1108 ( $sec, $min, $hour,
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dtimezone.cpp1277 int32_t sign, hour, min, sec; local
1278 if (parseCustomID(id, sign, hour, min, sec)) {
1280 formatCustomID(hour, min, sec, (sign < 0), customID);
1281 int32_t offset = sign * ((hour * 60 + min) * 60 + sec) * 1000;
1293 int32_t sign, hour, min, sec; local
1294 if (parseCustomID(id, sign, hour, min, sec)) {
1295 formatCustomID(hour, min, sec, (sign < 0), normalized);
1304 int32_t& hour, int32_t& min, int32_t& sec) {
1316 hour = 0;
1343 hour
1303 parseCustomID(const UnicodeString& id, int32_t& sign, int32_t& hour, int32_t& min, int32_t& sec) argument
1425 formatCustomID(int32_t hour, int32_t min, int32_t sec, UBool negative, UnicodeString& id) argument
[all...]
H A Dzonemeta.h112 static UnicodeString& formatCustomID(uint8_t hour, uint8_t min, uint8_t sec, UBool negative, UnicodeString& id);
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Builder-0.80/examples/
H A DMySQL.pm18 { params => [ qw( year month day hour minute second ) ],
25 params => [ qw( year month day hour minute second ) ],
30 params => [ qw( year month day hour minute second ) ],
36 params => [ qw( year month day hour minute ) ],
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Builder-0.81/examples/
H A DMySQL.pm18 params => [qw( year month day hour minute second )],
26 params => [qw( year month day hour minute second )],
32 params => [qw( year month day hour minute second )],
39 params => [qw( year month day hour minute )],
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dstrftime.c95 * Convert hour in [0, 24] to [12 1 - 11 12 1 - 11 12]
99 hour_24to12 (int hour) argument
101 int ret = hour % 12;
109 * Return AM or PM for `hour'
113 hour_to_ampm (int hour) argument
115 return ampm[hour / 12];
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dtzbdtest.h82 void verifyMapping(Calendar& cal, int year, int month, int dom, int hour,
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/
H A Druntests.pl422 $now = $year ."/". $mon ."/". $mday ." ". $hour .":".
428 ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) =
436 $hour = &zero_pad($hour);
/macosx-10.10/ntp-92/include/
H A Dntp_calendar.h14 u_char hour; /* hour of day, midnight = 0 */ member in struct:calendar
15 u_char minute; /* minute of hour */
42 #define MINSPERHR (60) /* minutes per hour */
/macosx-10.10/ntp-92/ntpd/
H A Drefclock_chronolog.c61 u_char lasthour; /* last hour (for monitor) */
178 int hours; /* hour-of-day */
179 int minutes; /* minutes-past-the-hour */
262 pp->hour = gmtp->tm_hour;
268 adjyear,adjmon,gmtp->tm_mday,pp->hour,pp->minute,
277 pp->hour = hours;
300 up->lasthour = pp->hour;
H A Drefclock_gpsvme.c75 short last_hour; /* last hour (monitor leap sec) */
191 pp->hour = BCD2INT2((thi & 0x0000FF00) >> 8);
200 pp->day, pp->hour, pp->minute, pp->second, pp->nsec, status, thi,
216 if (pp->hour < up->last_hour) {
220 up->last_hour = pp->hour;
H A Drefclock_hopfser.c255 &pp->hour,
267 if((pp->hour < 0) || (pp->hour > 23) ||
299 pp->hour,
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DDateFormat.pm195 #h - am/pm hour#
202 #H - 24 hour#
266 # k=hour in day K=hour in am/pm
356 h hour in am/pm (1~12) (Number) 12
357 H hour in day (0~23) (Number) 0
358 m minute in hour (Number) 30
367 k hour in day (1~24) (Number) 24
368 K hour in am/pm (0~11) (Number) 0
421 k hour i
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/tm/
H A Dtmxscan.c48 int hour; member in struct:__anon9376
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=(-1),s.nsec=1000000000L,s.zone=TM_LOCALZONE)
108 if (set->hour >= 0)
110 if (set->hour < tm->tm_hour && set->yday < 0 && set->mday < 0 && set->wday < 0)
112 tm->tm_hour = set->hour;
278 set.hour = n;
283 set.hour = n;
/macosx-10.10/ruby-106/ruby/lib/rss/maker/
H A D0.9.rb106 @hours.each do |hour|
107 hour.to_feed(rss, skipHours.hours)
114 hour = Rss::Channel::SkipHours::Hour.new
115 set = setup_values(hour)
117 hours << hour
118 set_parent(hour, hours)
119 setup_other_elements(rss, hour)
/macosx-10.10/ruby-106/ruby/test/date/
H A Dtest_date_strftime.rb12 {:wday=>6,:mon=>2,:mday=>3,:hour=>0,:min=>0,:sec=>0,:year=>2001}],
15 '%H'=>['00',{:hour=>0}],
16 '%I'=>['12',{:hour=>0}],
24 '%X'=>['00:00:00',{:hour=>0,:min=>0,:sec=>0}],
36 '%k'=>[' 0',{:hour=>0}],
38 '%l'=>['12',{:hour=>0}],
43 '%R'=>['00:00',{:hour=>0,:min=>0}],
44 '%r'=>['12:00:00 AM',{:hour=>0,:min=>0,:sec=>0}],
46 '%T'=>['00:00:00',{:hour=>0,:min=>0,:sec=>0}],
54 :hour
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/text/
H A DPlatformLocale.cpp131 m_builder.append(m_localizer.timeAMPMLabels()[(m_date.hour() >= 12 ? 1 : 0)]);
134 int hour12 = m_date.hour() % 12;
141 appendNumber(m_date.hour(), numberOfPatternCharacters);
144 appendNumber(m_date.hour() % 12, numberOfPatternCharacters);
147 int hour24 = m_date.hour();

Completed in 453 milliseconds

1234567891011>>