Home
last modified time | relevance | path

Searched refs:minutes (Results 1 – 25 of 102) sorted by relevance

12345

/openbsd/usr.bin/leave/
H A Dleave.c60 int hours, minutes; in main() local
96 minutes = hours % 100; in main()
101 if (minutes < 0 || minutes > 59) in main()
104 secs = (hours * HOUR) + (minutes * MINUTE); in main()
111 (t->tm_hour == hours && t->tm_min >= minutes)) { in main()
119 secs += (minutes - t->tm_min) * MINUTE; in main()
/openbsd/share/zoneinfo/
H A Dziguard.awk27 sign, hours, minutes)
32 minutes = field
33 sub(/[^:]*:/, "", minutes)
35 return 60 * hours + sign * minutes
41 hours, minutes, sign)
44 minutes = offset % 60
45 if (minutes) {
46 return sprintf("%+.4d", hours * 100 + minutes);
/openbsd/gnu/llvm/libcxx/include/__chrono/
H A Dhh_mm_ss.h62 __m_(chrono::duration_cast<chrono::minutes>(chrono::abs(__d) - hours())), in hh_mm_ss()
63 __s_(chrono::duration_cast<chrono::seconds>(chrono::abs(__d) - hours() - minutes())), in hh_mm_ss()
64 … __f_(chrono::duration_cast<precision> (chrono::abs(__d) - hours() - minutes() - seconds())) in hh_mm_ss()
69 _LIBCPP_HIDE_FROM_ABI constexpr chrono::minutes minutes() const noexcept { return __m_; } in minutes() function
84 chrono::minutes __m_;
H A Dduration.h308 typedef duration< long, ratio< 60> > minutes;
551 _LIBCPP_HIDE_FROM_ABI constexpr chrono::minutes operator""min(unsigned long long __m)
553 return chrono::minutes(static_cast<chrono::minutes::rep>(__m));
/openbsd/lib/libcrypto/asn1/
H A Da_time_posix.c81 is_valid_time(int hours, int minutes, int seconds) in is_valid_time() argument
83 return hours >= 0 && minutes >= 0 && seconds >= 0 && hours <= 23 && in is_valid_time()
84 minutes <= 59 && seconds <= 59; in is_valid_time()
106 int64_t minutes, int64_t seconds, int64_t *out_time) in posix_time_from_utc() argument
111 !is_valid_time(hours, minutes, seconds)) in posix_time_from_utc()
125 minutes * 60 + seconds; in posix_time_from_utc()
/openbsd/gnu/usr.bin/perl/cpan/Time-Piece/t/
H A D07arith.t54 is($s->minutes, 44640);
62 is($s2->minutes, 44640, 'Copy Time::Seconds object');
64 is($s2->minutes, 44641, 'Add integer to Time::Seconds object');
66 is($s2->minutes, 44701, 'Add exported constant to Time::Seconds object');
68 is($s2->minutes, 89402, 'Add one Time::Seconds object to another');
H A D02core.t224 is($s->pretty, 'minus 7 days, 23 hours, 57 minutes, 30 seconds');
232 is($s->pretty, '2 minutes, 10 seconds');
234 is($s->pretty, '2 hours, 2 minutes, 10 seconds', "Format correct");
/openbsd/usr.bin/ssh/
H A Dprogressmeter.c130 int hours, minutes, seconds; in refresh_progress_meter() local
211 minutes = seconds / 60; in refresh_progress_meter()
212 seconds -= minutes * 60; in refresh_progress_meter()
216 hours, minutes, seconds); in refresh_progress_meter()
218 xextendf(&buf, NULL, " %02d:%02d", minutes, seconds); in refresh_progress_meter()
/openbsd/usr.sbin/repquota/
H A Drepquota.c345 int hours, minutes; in timeprt() local
354 minutes = (seconds + 30) / 60; in timeprt()
355 hours = (minutes + 30) / 60; in timeprt()
360 if (minutes >= 60) { in timeprt()
361 snprintf(buf, sizeof buf, "%2d:%d", minutes / 60, in timeprt()
362 minutes % 60); in timeprt()
365 snprintf(buf, sizeof buf, "%2d", minutes); in timeprt()
/openbsd/usr.bin/at/
H A Dparsetime.c292 dateadd(int minutes, struct tm *tm) in dateadd() argument
296 while (minutes > 24*60) { in dateadd()
297 minutes -= 24*60; in dateadd()
302 while (minutes > 60) { in dateadd()
303 minutes -= 60; in dateadd()
312 tm->tm_min += minutes; in dateadd()
/openbsd/gnu/usr.bin/perl/cpan/Time-Piece/
H A DSeconds.pm113 sub minutes { subroutine
120 $s->minutes / 60;
173 my ($mins, $sm) = _counted_objects($s->minutes, "minute");
/openbsd/usr.bin/quota/
H A Dquota.c401 time_t hours, minutes; in timeprt() local
410 minutes = (seconds + 30) / 60; in timeprt()
411 hours = (minutes + 30) / 60; in timeprt()
417 if (minutes >= 60) { in timeprt()
419 (int)(minutes / 60), (int)(minutes % 60)); in timeprt()
422 (void)snprintf(buf, sizeof buf, "%2d", (int)minutes); in timeprt()
/openbsd/gnu/llvm/llvm/docs/
H A DGettingInvolved.rst263 - Every 2nd and 4th Wednesday of the month at 9.30am CET, for 30 minutes.
270 - Monthly, 2nd Tuesdays, 10.00am PT/7:00pm CET, for 30 minutes.
290 - Monthly, last Monday of the month at 18:00 London time (typically 9am PT), for 30 minutes.
300 - Monthly, 2nd Monday of the month at 9:30am PT, for 30 minutes.
305 - Monthly, 2nd Wednesday of the month at 11:00am PT, for 30 minutes.
316 - Monthly, 1st Wednesday of the month at 8.00am PT, for 30 minutes.
323 - Monthly, 1st Monday of the month at 11:00am Europe/Berlin, for 30 minutes.
328 - Monthly, 3rd Wednesday of the month at 8:30am Beijing time, for 30 minutes.
471 * If you have meeting minutes for your event, add a pointer to where those live.
472 A good place for meeting minutes could be as a post on LLVM Discourse.
[all …]
H A DGitBisecting.rst46 automatically. Writing the script can take 10-20 minutes, but it's almost
117 skips all commits on that branch. It takes 1.5 minutes to run on a fast
/openbsd/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/
H A DTiedOutFH.pm89 for 20 to 40 minutes. (Cooking it longer will make it sweeter.)
92 5 minutes.
/openbsd/games/boggle/boggle/
H A Dhelpfile39 You have 3 minutes to find as many words as possible in the Boggle board.
50 The time limit can be changed from the default 3 minutes by using the
/openbsd/usr.bin/rusers/
H A Drusers.c201 int days, hours, minutes, seconds; in fmt_idle() local
216 minutes = seconds / 60; in fmt_idle()
221 days > 1 ? "s" : "", hours, minutes, seconds); in fmt_idle()
224 hours, minutes, seconds); in fmt_idle()
227 minutes, seconds); in fmt_idle()
/openbsd/bin/ps/
H A Dprint.c568 long days, hours, minutes, seconds; in elapsed() local
591 minutes = secs / 60; in elapsed()
596 days, hours, minutes, seconds); in elapsed()
599 hours, minutes, seconds); in elapsed()
602 minutes, seconds); in elapsed()
/openbsd/sbin/shutdown/
H A Dshutdown.c501 time_t minutes, now; in getoffset() local
510 minutes = strtonum(timearg, 0, INT_MAX, &errstr); in getoffset()
513 offset = minutes * 60; in getoffset()
/openbsd/sys/dev/isa/
H A Dit.c480 int minutes = 0; in it_wdog_cb() local
505 minutes++; in it_wdog_cb()
512 if (minutes) { in it_wdog_cb()
/openbsd/sys/scsi/
H A Dsafte.h122 u_int32_t minutes; /* total number of minutes on */ member
/openbsd/sbin/unwind/libunbound/sldns/
H A Dparseutil.c77 time_t minutes; in sldns_mktime_from_utc() local
90 minutes = hours * 60 + tm->tm_min; in sldns_mktime_from_utc()
91 seconds = minutes * 60 + tm->tm_sec; in sldns_mktime_from_utc()
/openbsd/usr.sbin/unbound/sldns/
H A Dparseutil.c77 time_t minutes; in sldns_mktime_from_utc() local
90 minutes = hours * 60 + tm->tm_min; in sldns_mktime_from_utc()
91 seconds = minutes * 60 + tm->tm_sec; in sldns_mktime_from_utc()
/openbsd/gnu/llvm/llvm/utils/Misc/
H A Dzkill30 minutes,value = value.split(':',1)
35 return int(minutes) * 60 + int(seconds) + float('.'+fseconds)
/openbsd/gnu/llvm/lldb/source/Plugins/Platform/Android/
H A DPlatformAndroid.cpp209 return adb.ShellToFile(cmd, minutes(1), destination); in GetFile()
331 error = adb.Shell(command.GetData(), minutes(1), nullptr); in DownloadSymbolFile()

12345