Home
last modified time | relevance | path

Searched refs:Seconds (Results 1 – 25 of 26) sorted by relevance

12

/src/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilPosix.cpp106 void SetTimer(int Seconds) { in SetTimer() argument
108 {Seconds, 0}, { Seconds, 0 } in SetTimer()
143 void SleepSeconds(int Seconds) { in SleepSeconds() argument
144 sleep(Seconds); // Use C API to avoid coverage from instrumented libc++. in SleepSeconds()
H A DFuzzerUtilWindows.cpp107 void SetTimer(int Seconds) { in SetTimer() argument
117 Seconds*1000, Seconds*1000, 0)) { in SetTimer()
153 void SleepSeconds(int Seconds) { Sleep(Seconds * 1000); } in SleepSeconds() argument
H A DFuzzerInternal.h54 size_t Seconds = secondsSinceProcessStartUp(); in execPerSec() local
55 return Seconds ? TotalNumberOfRuns / Seconds : 0; in execPerSec()
H A DFuzzerUtilFuchsia.cpp70 void AlarmHandler(int Seconds) { in AlarmHandler() argument
72 SleepSeconds(Seconds); in AlarmHandler()
427 void SleepSeconds(int Seconds) { in SleepSeconds() argument
428 _zx_nanosleep(_zx_deadline_after(ZX_SEC(Seconds))); in SleepSeconds()
H A DFuzzerLoop.cpp288 size_t Seconds = in AlarmCallback() local
290 if (Seconds == 0) in AlarmCallback()
293 Printf("AlarmCallback %zd\n", Seconds); in AlarmCallback()
294 if (Seconds >= (size_t)Options.UnitTimeoutSec) { in AlarmCallback()
298 Printf("ALARM: working on the last Unit for %zd seconds\n", Seconds); in AlarmCallback()
303 Seconds); in AlarmCallback()
H A DFuzzerUtil.h53 void SleepSeconds(int Seconds);
/src/usr.sbin/fifolog/lib/
H A Dgetdate.y526 ToSeconds(time_t Hours, time_t Minutes, time_t Seconds, MERIDIAN Meridian) in ToSeconds() argument
528 if (Minutes < 0 || Minutes > 59 || Seconds < 0 || Seconds > 59) in ToSeconds()
534 return (Hours * 60L + Minutes) * 60L + Seconds; in ToSeconds()
540 return (Hours * 60L + Minutes) * 60L + Seconds; in ToSeconds()
546 return ((Hours + 12) * 60L + Minutes) * 60L + Seconds; in ToSeconds()
560 time_t Hours, time_t Minutes, time_t Seconds, in Convert() argument
599 if ((tod = ToSeconds(Hours, Minutes, Seconds, Meridian)) < 0) in Convert()
/src/usr.bin/find/
H A Dgetdate.y532 ToSeconds(time_t Hours, time_t Minutes, time_t Seconds, MERIDIAN Meridian) in ToSeconds() argument
534 if (Minutes < 0 || Minutes > 59 || Seconds < 0 || Seconds > 59) in ToSeconds()
540 return (Hours * 60L + Minutes) * 60L + Seconds; in ToSeconds()
546 return (Hours * 60L + Minutes) * 60L + Seconds; in ToSeconds()
552 return ((Hours + 12) * 60L + Minutes) * 60L + Seconds; in ToSeconds()
566 time_t Hours, time_t Minutes, time_t Seconds, in Convert() argument
598 if ((tod = ToSeconds(Hours, Minutes, Seconds, Meridian)) < 0) in Convert()
/src/crypto/krb5/src/kadmin/cli/
H A Dgetdate.y534 ToSeconds(time_t Hours, time_t Minutes, time_t Seconds, MERIDIAN Meridian) in ToSeconds() argument
536 if (Minutes < 0 || Minutes > 59 || Seconds < 0 || Seconds > 59) in ToSeconds()
542 return (Hours * 60L + Minutes) * 60L + Seconds; in ToSeconds()
546 return (Hours * 60L + Minutes) * 60L + Seconds; in ToSeconds()
550 return ((Hours + 12) * 60L + Minutes) * 60L + Seconds; in ToSeconds()
563 time_t Seconds, MERIDIAN Meridian, DSTMODE DSTmode) in Convert() argument
593 if ((tod = ToSeconds(Hours, Minutes, Seconds, Meridian)) < 0) in Convert()
/src/contrib/libarchive/libarchive/
H A Darchive_parse_date.c76 time_t Seconds; member
111 gds->Seconds = gds->tokenp[4].value; in timephrase()
121 gds->Seconds = 0; in timephrase()
129 gds->Minutes = gds->Seconds = 0; in timephrase()
492 gds->Seconds = 0; in phrase()
502 gds->Seconds = 0; in phrase()
687 time_t Hours, time_t Minutes, time_t Seconds, in Convert() argument
712 || Seconds < 0 || Seconds > 59) in Convert()
722 Julian += Hours * HOUR + Minutes * MINUTE + Seconds; in Convert()
1096 gds->Hour, gds->Minutes, gds->Seconds, in archive_parse_date()
/src/contrib/kyua/utils/process/
H A Ddeadline_killer_test.cpp54 template< int Seconds >
58 ::sleep(Seconds); in child_sleep()
/src/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp169 using Seconds = std::chrono::duration<double, std::ratio<1>>; in getCurrentTime() typedef
184 Result.WallTime = Seconds(now.time_since_epoch()).count(); in getCurrentTime()
185 Result.UserTime = Seconds(user).count(); in getCurrentTime()
186 Result.SystemTime = Seconds(sys).count(); in getCurrentTime()
/src/contrib/llvm-project/llvm/include/llvm/XRay/
H A DFDRRecords.h134 uint64_t Seconds = 0; variable
146 Seconds(S), Nanos(N) {} in WallclockRecord()
148 uint64_t seconds() const { return Seconds; } in seconds()
/src/sys/contrib/edk2/Include/Protocol/
H A DDhcp4.h57 UINT16 Seconds; member
/src/contrib/ntp/html/scripts/
H A Dexternal.txt6 …'><a href='http://www.eecis.udel.edu/~mills/leap.html'>The NTP Timescale and Leap Seconds</a></li>\
/src/contrib/sendmail/contrib/
H A Dmmuegel546 ;# $Seconds, $Collapse
566 X local ($Seconds, $Collapse) = @_;
579 X $Seconds -= $DHMS_Used * $Multiplier
580 X if ($DHMS_Used = int ($Seconds / $Multiplier));
1432 ;# If the parsing went OK then $Status is 1, $Msg is undefined, and $Seconds
1440 ;# $Status, $Msg, $Seconds
1446 X $Seconds = 0;
1449 X $Seconds += $1 * $TIME_SPEC_TO_SECONDS {$2};
1454 X return (1, "", $Seconds);
1796 die "${Script_Name}: $Msg\n" if (! (($Status, $Msg, $Seconds) = &Time_Spec_To_Seconds ($opt_t))[0]);
[all …]
/src/contrib/tzdata/
H A Dleapseconds12 # The NTP Timescale and Leap Seconds
/src/contrib/llvm-project/llvm/lib/XRay/
H A DRecordInitializer.cpp38 R.Seconds = E.getU64(&OffsetPtr); in visit()
/src/contrib/ntp/ntpd/
H A Dntpdbase-opts.def410 descrip = "Seconds to wait for first clock sync";
H A Dinvoke-ntpd.texi196 -w Num wait-sync Seconds to wait for first clock sync
/src/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp3201 unsigned Seconds; in printArchiveChild() local
3202 if (RawLastModified.getAsInteger(10, Seconds)) in printArchiveChild()
3209 time_t t = Seconds; in printArchiveChild()
H A DMachODump.cpp2457 unsigned Seconds; in printArchiveChild() local
2458 if (RawLastModified.getAsInteger(10, Seconds)) in printArchiveChild()
2465 time_t t = Seconds; in printArchiveChild()
/src/usr.sbin/bsnmpd/modules/snmp_pf/
H A DBEGEMOT-PF-MIB.txt397 "Seconds before an unassembled fragment is expired."
/src/contrib/bsnmp/tests/
H A Dcatch.hpp15958 Seconds, enumerator
15985 m_units = Unit::Seconds; in Duration()
15998 case Unit::Seconds: in value()
16014 case Unit::Seconds: in unitsAsString()
/src/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td677 Desc<"Seconds to wait for the remote host to finish running the command.">;

12