Searched refs:Seconds (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilWindows.cpp94 void SetTimer(int Seconds) { argument
104 Seconds*1000, Seconds*1000, 0)) {
140 void SleepSeconds(int Seconds) { Sleep(Seconds * 1000); } argument
H A DFuzzerUtilPosix.cpp89 void SetTimer(int Seconds) { argument
91 {Seconds, 0}, { Seconds, 0 }
126 void SleepSeconds(int Seconds) { argument
127 sleep(Seconds); // Use C API to avoid coverage from instrumented libc++.
H A DFuzzerInternal.h55 size_t Seconds = secondsSinceProcessStartUp(); local
56 return Seconds ? TotalNumberOfRuns / Seconds : 0;
H A DFuzzerUtilFuchsia.cpp62 void AlarmHandler(int Seconds) { argument
64 SleepSeconds(Seconds);
384 void SleepSeconds(int Seconds) { argument
385 _zx_nanosleep(_zx_deadline_after(ZX_SEC(Seconds)));
H A DFuzzerUtil.h53 void SleepSeconds(int Seconds);
H A DFuzzerLoop.cpp284 size_t Seconds =
286 if (Seconds == 0)
289 Printf("AlarmCallback %zd\n", Seconds);
290 if (Seconds >= (size_t)Options.UnitTimeoutSec) {
294 Printf("ALARM: working on the last Unit for %zd seconds\n", Seconds);
299 Seconds);
/freebsd-11-stable/usr.bin/find/
H A Dgetdate.y546 ToSeconds(time_t Hours, time_t Minutes, time_t Seconds, MERIDIAN Meridian)
548 if (Minutes < 0 || Minutes > 59 || Seconds < 0 || Seconds > 59)
554 return (Hours * 60L + Minutes) * 60L + Seconds;
560 return (Hours * 60L + Minutes) * 60L + Seconds;
566 return ((Hours + 12) * 60L + Minutes) * 60L + Seconds;
580 time_t Hours, time_t Minutes, time_t Seconds,
612 if ((tod = ToSeconds(Hours, Minutes, Seconds, Meridian)) < 0)
/freebsd-11-stable/usr.sbin/fifolog/lib/
H A Dgetdate.y526 ToSeconds(time_t Hours, time_t Minutes, time_t Seconds, MERIDIAN Meridian)
528 if (Minutes < 0 || Minutes > 59 || Seconds < 0 || Seconds > 59)
534 return (Hours * 60L + Minutes) * 60L + Seconds;
540 return (Hours * 60L + Minutes) * 60L + Seconds;
546 return ((Hours + 12) * 60L + Minutes) * 60L + Seconds;
560 time_t Hours, time_t Minutes, time_t Seconds,
599 if ((tod = ToSeconds(Hours, Minutes, Seconds, Meridian)) < 0)
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_getdate.c76 time_t Timezone; /* Seconds offset from GMT */
81 time_t Seconds; member in struct:gdstate
116 gds->Seconds = gds->tokenp[4].value;
126 gds->Seconds = 0;
134 gds->Minutes = gds->Seconds = 0;
497 gds->Seconds = 0;
507 gds->Seconds = 0;
692 time_t Hours, time_t Minutes, time_t Seconds,
723 || Seconds < 0 || Seconds > 5
691 Convert(time_t Month, time_t Day, time_t Year, time_t Hours, time_t Minutes, time_t Seconds, time_t Timezone, enum DSTMODE DSTmode) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp119 using Seconds = std::chrono::duration<double, std::ratio<1>>;
132 Result.WallTime = Seconds(now.time_since_epoch()).count();
133 Result.UserTime = Seconds(user).count();
134 Result.SystemTime = Seconds(sys).count();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DFDRRecords.h134 uint64_t Seconds = 0; member in class:llvm::xray::WallclockRecord
146 Seconds(S), Nanos(N) {}
148 uint64_t seconds() const { return Seconds; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DArchive.cpp264 unsigned Seconds; local
267 .getAsInteger(10, Seconds)) {
280 return sys::toTimePoint(Seconds);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/
H A DRecordInitializer.cpp38 R.Seconds = E.getU64(&OffsetPtr);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp2090 unsigned Seconds;
2091 if (RawLastModified.getAsInteger(10, Seconds))
2098 time_t t = Seconds;
H A DMachODump.cpp2253 unsigned Seconds; local
2254 if (RawLastModified.getAsInteger(10, Seconds))
2261 time_t t = Seconds;

Completed in 515 milliseconds