Searched refs:Time (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/Windows/
H A DWindowsSupport.h201 inline std::chrono::nanoseconds toDuration(FILETIME Time) { argument
203 TimeInteger.LowPart = Time.dwLowDateTime;
204 TimeInteger.HighPart = Time.dwHighDateTime;
210 inline TimePoint<> toTimePoint(FILETIME Time) { argument
212 TimeInteger.LowPart = Time.dwLowDateTime;
213 TimeInteger.HighPart = Time.dwHighDateTime;
227 FILETIME Time; local
228 Time.dwLowDateTime = TimeInteger.LowPart;
229 Time.dwHighDateTime = TimeInteger.HighPart;
230 return Time;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DTimer.h47 // Sort by Wall Time elapsed, as it is the only thing really accurate
77 TimeRecord Time; ///< The total time captured. member in class:llvm::Timer
118 /// Start the timer running. Time between calls to startTimer/stopTimer is
130 TimeRecord getTotalTime() const { return Time; }
172 TimeRecord Time; member in struct:llvm::TimerGroup::PrintRecord
178 PrintRecord(const TimeRecord &Time, const std::string &Name, argument
180 : Time(Time), Name(Name), Description(Description) {}
183 return Time < Other.Time;
[all...]
H A DFileSystem.h716 TimePoint<> Time) {
717 return setLastAccessAndModificationTime(FD, Time, Time);
1149 /// Note: Users must be careful about "Time Of Check, Time Of Use" kind of bug.
715 setLastAccessAndModificationTime(int FD, TimePoint<> Time) argument
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dsecondary.h87 const u64 Time = getMonotonicTime();
104 Entries[0].Time = Time;
115 releaseOlderThan(Time - static_cast<u64>(Interval) * 1000000);
190 void releaseOlderThan(u64 Time) {
195 if (!Entries[I].Block || !Entries[I].Time || Entries[I].Time > Time)
200 Entries[I].Time = 0;
214 u64 Time;
[all...]
H A Dprimary32.h75 const u64 Time = getMonotonicTime(); local
78 Time ^ (reinterpret_cast<uptr>(SizeClassInfoArray) >> 6));
87 Sci->ReleaseInfo.LastReleaseAtNs = Time;
H A Dprimary64.h72 const u64 Time = getMonotonicTime(); local
74 Seed = static_cast<u32>(Time ^ (PrimaryBase >> 12));
92 Region->ReleaseInfo.LastReleaseAtNs = Time;
/freebsd-13-stable/sys/contrib/dev/acpica/os_specific/service_layers/
H A Dosunixxf.c989 struct timespec Time; local
1064 if (clock_gettime (CLOCK_REALTIME, &Time) == -1)
1070 Time.tv_sec += (MsecTimeout / ACPI_MSEC_PER_SEC);
1071 Time.tv_nsec += ((MsecTimeout % ACPI_MSEC_PER_SEC) * ACPI_NSEC_PER_MSEC);
1075 if (Time.tv_nsec >= ACPI_NSEC_PER_SEC)
1077 Time.tv_sec += (Time.tv_nsec / ACPI_NSEC_PER_SEC);
1078 Time.tv_nsec = (Time.tv_nsec % ACPI_NSEC_PER_SEC);
1081 while (((RetVal = sem_timedwait (Sem, &Time))
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp148 Time += TimeRecord::getCurrentTime(false);
149 Time -= StartTime;
155 Time = StartTime = TimeRecord();
274 TimersToPrint.emplace_back(T.Time, T.Name, T.Description);
309 Total += Record.Time;
323 OS << format(" Total Execution Time: %5.4f seconds (%5.4f wall clock)\n",
328 OS << " ---User Time---";
330 OS << " --System Time--";
333 OS << " ---Wall Time---";
341 Record.Time
[all...]
H A DCachePruning.cpp31 sys::TimePoint<> Time; member in struct:__anon3778::FileInfo
38 return std::tie(Time, Other.Size, Path) <
39 std::tie(Other.Time, Size, Other.Path);
/freebsd-13-stable/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dmpidebug.c88 curIbTrace->Time = ossaTimeStamp64(agNULL);
90 curIbTrace->Time = ossaTimeStamp(agNULL);
93 curIbTrace->Time = 0;
111 curObTrace->Time = ossaTimeStamp64(agNULL);
113 curObTrace->Time = ossaTimeStamp(agNULL);
116 curObTrace->Time = 0;
H A Dmpidebug.h45 bit64 Time; member in struct:mpiObDebugTraceEntry_s
54 bit64 Time; member in struct:mpiIbDebugTraceEntry_s
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp296 time_t Time; local
316 time(&Time);
317 localtime_r(&Time, &LocalTime);
/freebsd-13-stable/contrib/ntp/ntpd/
H A Dcheck_y2k.c135 static time_t Time; variable
148 Time = time( (time_t *)NULL )
153 LocalTime = *localtime( &Time );
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Dacinterp.h538 UINT64 Time);
542 UINT32 Time);
550 ACPI_OPERAND_OBJECT *Time,
H A Dactypes.h384 #define AcpiOsAcquireMutex(Handle,Time) AcpiOsWaitSemaphore (Handle, 1, Time)
574 /* Time constants for timer calculations */
/freebsd-13-stable/crypto/heimdal/lib/hx509/
H A Dhx509-private.h27 _hx509_Time2time_t (const Time */*t*/);
/freebsd-13-stable/sys/contrib/edk2/Include/Uefi/
H A DUefiSpec.h789 @param[out] Time A pointer to storage to receive a snapshot of the current time.
794 @retval EFI_INVALID_PARAMETER Time is NULL.
801 OUT EFI_TIME *Time,
808 @param[in] Time A pointer to the current time.
818 IN EFI_TIME *Time
826 @param[out] Time The current alarm setting.
831 @retval EFI_INVALID_PARAMETER Time is NULL.
841 OUT EFI_TIME *Time
848 @param[in] Time If Enable is TRUE, the time to set the wakeup alarm for.
862 IN EFI_TIME *Time OPTIONA
[all...]
/freebsd-13-stable/contrib/tcpdump/
H A Dutil-print.c330 time_t Time; local
389 Time = (tvp->tv_sec + thiszone) - s;
390 tm = gmtime (&Time);
/freebsd-13-stable/contrib/ntp/scripts/
H A Dplot_summary.in25 use Time::Local;
/freebsd-13-stable/libexec/rpc.rusersd/
H A Drusers_proc.c78 Time IdleTime;
/freebsd-13-stable/stand/efi/include/
H A Defiapi.h263 // EFI Time
276 OUT EFI_TIME *Time,
283 IN EFI_TIME *Time
291 OUT EFI_TIME *Time
298 IN EFI_TIME *Time OPTIONAL
690 // Time services
/freebsd-13-stable/contrib/ntp/parseutil/
H A Ddcfd.c1269 time_t Time; local
1278 Time = time( (time_t *)NULL );
1279 LocalTime = *localtime( &Time );
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DBranchFolding.cpp439 unsigned Time = 0; local
444 Time += 10;
446 Time += 2;
448 ++Time;
450 return Time;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp1618 SDValue Time = N->getOperand(3); local
1620 if (Time.hasOneUse()) {
1621 unsigned BitWidth = Time.getValueSizeInBits();
1627 if (TLI.ShrinkDemandedConstant(Time, DemandedMask, TLO) ||
1628 TLI.SimplifyDemandedBits(Time, DemandedMask, Known, TLO))
/freebsd-13-stable/sys/dev/hptmv/
H A Dhptintf.h684 TIME_RECORD Time; member in struct:_HPT_EVENT

Completed in 199 milliseconds

12