| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/Windows/ |
| H A D | WindowsSupport.h | 201 inline std::chrono::nanoseconds toDuration(FILETIME Time) { in toDuration() argument 203 TimeInteger.LowPart = Time.dwLowDateTime; in toDuration() 204 TimeInteger.HighPart = Time.dwHighDateTime; in toDuration() 210 inline TimePoint<> toTimePoint(FILETIME Time) { in toTimePoint() argument 212 TimeInteger.LowPart = Time.dwLowDateTime; in toTimePoint() 213 TimeInteger.HighPart = Time.dwHighDateTime; in toTimePoint() 227 FILETIME Time; in toFILETIME() local 228 Time.dwLowDateTime = TimeInteger.LowPart; in toFILETIME() 229 Time.dwHighDateTime = TimeInteger.HighPart; in toFILETIME() 230 return Time; in toFILETIME()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | secondary.h | 148 Entry.Time = Time; in store() 155 Entry.Time = 0; in store() 164 Entry.Time = 0; in store() 186 OldestTime = Entry.Time; in store() 201 OldestTime = Entry.Time; in store() 250 *Zeroed = Entry.Time == 0; in retrieve() 362 u64 Time; member 368 if (Entry.Time > Time) { in releaseIfOlderThan() 370 OldestTime = Entry.Time; in releaseIfOlderThan() 374 Entry.Time = 0; in releaseIfOlderThan() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Timer.h | 83 TimeRecord Time; ///< The total time captured. variable 136 TimeRecord getTotalTime() const { return Time; } in getTotalTime() 178 TimeRecord Time; member 184 PrintRecord(const TimeRecord &Time, const std::string &Name, in PrintRecord() 186 : Time(Time), Name(Name), Description(Description) {} in PrintRecord() 189 return Time < Other.Time;
|
| /freebsd-13.1/sys/contrib/dev/acpica/os_specific/service_layers/ |
| H A D | osunixxf.c | 989 struct timespec Time; in AcpiOsWaitSemaphore() local 1064 if (clock_gettime (CLOCK_REALTIME, &Time) == -1) in AcpiOsWaitSemaphore() 1070 Time.tv_sec += (MsecTimeout / ACPI_MSEC_PER_SEC); in AcpiOsWaitSemaphore() 1071 Time.tv_nsec += ((MsecTimeout % ACPI_MSEC_PER_SEC) * ACPI_NSEC_PER_MSEC); in AcpiOsWaitSemaphore() 1075 if (Time.tv_nsec >= ACPI_NSEC_PER_SEC) in AcpiOsWaitSemaphore() 1077 Time.tv_sec += (Time.tv_nsec / ACPI_NSEC_PER_SEC); in AcpiOsWaitSemaphore() 1078 Time.tv_nsec = (Time.tv_nsec % ACPI_NSEC_PER_SEC); in AcpiOsWaitSemaphore() 1081 while (((RetVal = sem_timedwait (Sem, &Time)) == -1) && (errno == EINTR)) in AcpiOsWaitSemaphore()
|
| /freebsd-13.1/contrib/ntp/html/scripts/ |
| H A D | external.txt | 2 …://www.eecis.udel.edu/~mills/book.html'>Computer Network Time Synchronization - The Network Time P… 5 …/www.eecis.udel.edu/~mills/exec.html'>Executive Summary: Computer Network Time Synchronization</a>… 11 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/proximity.html'>Time Synchroization fo… 13 <li class='inline'><a href='http://www.eecis.udel.edu/~mills/ptp.html'>IEEE 1588 Precision Time Pro…
|
| H A D | manual.txt | 2 <li class='inline'><a href='ntpd.html'><tt>ntpd</tt> - Network Time Protocol (NTP) daemon</a></li>\ 6 <li class='inline'><a href='sntp.html'><tt>sntp</tt> - Simple Network Time Protocol (SNTP) client</… 11 <li class='inline'><a href='ntpdsim_new.html'><tt>ntpdsim</tt> - Network Time Protocol (NTP) simula…
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/rtc/ |
| H A D | trivial-rtc.yaml | 23 # AB-RTCMC-32.768kHz-B5ZE-S3: Real Time Clock/Calendar Module with I2C Interface 25 # AB-RTCMC-32.768kHz-EOZ9: Real Time Clock/Calendar Module with I2C Interface 45 # Real Time Clock Module with I2C-Bus 47 # Real Time Clock Module with I2C-Bus 49 # Real Time Clock
|
| H A D | pcf8563.txt | 1 * Philips PCF8563/Epson RTC8564 Real Time Clock 3 Philips PCF8563/Epson RTC8564 Real Time Clock
|
| H A D | xgene-rtc.txt | 1 * APM X-Gene Real Time Clock 3 RTC controller for the APM X-Gene Real Time Clock
|
| H A D | xlnx-rtc.txt | 1 * Xilinx Zynq Ultrascale+ MPSoC Real Time Clock 3 RTC controller for the Xilinx Zynq MPSoC Real Time Clock
|
| /freebsd-13.1/share/doc/psd/01.cacm/ |
| H A D | ref.bib | 27 %T U\s-2NIX\s0 Time-Sharing System: Document Preparation 45 %T U\s-2NIX\s0 Time-Sharing System: The Programmer's Workbench 56 %T U\s-2NIX\s0 Time-Sharing System: U\s-2NIX\s0 on a Microprocessor 80 %T U\s-2NIX\s0 Time-Sharing System: The U\s-2NIX\s0 Shell 107 %T \*sTENEX\*n, a Paged Time Sharing System for the \*sPDP\*n-10
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Timer.cpp | 200 Time += TimeRecord::getCurrentTime(false); in stopTimer() 201 Time -= StartTime; in stopTimer() 207 Time = StartTime = TimeRecord(); in clear() 328 TimersToPrint.emplace_back(T.Time, T.Name, T.Description); in removeTimer() 364 Total += Record.Time; in PrintQueuedTimers() 398 Record.Time.print(Total, OS); in PrintQueuedTimers() 417 TimersToPrint.emplace_back(T->Time, T->Name, T->Description); in prepareToPrintList() 477 const TimeRecord &T = R.Time; in printJSONValues()
|
| /freebsd-13.1/contrib/tzdata/ |
| H A D | backzone | 90 # This Ordinance added "'Time' shall mean Greenwich Mean Time" to the 98 # Time Determination Ordinance (Cap. 214) 143 # Time Determination Ordinance (Cap. 264) 282 # Alteration of Time Ordinance, 1932 (as amended in 1946, renamed to Local Time 713 # War Time Order 1942 [1942-05-01] and War Time (No. 2) Order 1942 [1942-09-29] 718 # War Time Order 1943 [1943-03-31] and War Time Order 1944 [1943-12-29] 723 # War Time Order 1945 [1945-01-31] and the Order which revoke War Time Order 1073 # Changbai Time ("Long-white Time", Long-white = Heilongjiang area) 1325 # IST = Irish Summer Time 1696 # Standard Time Ordinance (Chapter 237) [all …]
|
| H A D | northamerica | 94 # time was just called "Standard Time" or "Daylight Saving Time". 134 # Time' instead of the old familiar 'Eastern War Time.' Peace is wonderful." 615 # Pacific Time. 907 # Eastern Time Zone to the Central Time Zone.... The effective date of 1434 # Time to Standard Time and from Standard Time to Daylight Savings Time 1642 # "Standard Time and Time Zones in Canada" appeared in 1741 # Standard Time (i.e. not until 3:00 Central Daylight Time). 2047 # hours behind Greenwich Time and called Yukon Standard Time. 2073 # * Yukon Standard Time defined as Pacific Standard Time, YCO 1973/214 2145 # Central, Eastern and Atlantic Time zones only uses Eastern Time. [all …]
|
| H A D | australasia | 762 # Year End Time Start Time 908 # Summer Time Act (Cap 157) 967 # LMT Local Mean Time 1062 # 10 "Summer Time AEDT" site:au 1064 # 18 "Summer Time ESST" site:au 1163 # Standard Time and Summer Time Act 1972 1166 # Standard Time Act, 1898 1903 # Standard Time) 1963 # The "Nauru Standard Time Act 1978 Time Change" 1965 # based on "Nauru Standard Time Act 1978 Time Change" [all …]
|
| /freebsd-13.1/contrib/netbsd-tests/ipf/input/ |
| H A D | ipv6.1 | 16 # - Time exceeded 32 # - Time exceeded
|
| /freebsd-13.1/contrib/ntp/ntpsnmpd/ |
| H A D | ntpsnmpd.texi | 4 @settitle ntpsnmpd: Network Time Protocol SNMP Daemon User's Manual 19 @title ntpsnmpd: Network Time Protocol SNMP Daemon User's Manual 30 @top ntpsnmpd: Network Time Protocol Query User Manual
|
| /freebsd-13.1/crypto/heimdal/lib/hx509/ |
| H A D | crmf.asn1 | 7 Time, 83 notBefore [0] Time OPTIONAL, 84 notAfter [1] Time OPTIONAL
|
| /freebsd-13.1/contrib/ntp/sntp/ |
| H A D | sntp.texi | 15 * sntp: (sntp). Simple Network Time Protocol 19 @title Simple Network Time Protocol User's Manual 28 @top Simple Network Time Protocol User Manual 31 that can be used to query a Network Time Protocol (NTP) server and
|
| /freebsd-13.1/contrib/ntp/ |
| H A D | README.refclocks | 24 GPS_DATUM 17 /* Datum Programmable Time System */ 25 NIST_ACTS 18 /* NIST Auto Computer Time Service */ 32 GPS_HP 26 /* HP 58503A Time/Frequency Receiver */
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | ti-aemif.txt | 96 Time between the end of one asynchronous memory 103 Time between the beginning of a memory cycle 108 Time between the activation and deactivation of 113 Time between the deactivation of the read 120 Time between the beginning of a memory cycle 125 Time between the activation and deactivation of 130 Time between the deactivation of the write
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/clock/ |
| H A D | armada3700-tbg-clock.txt | 1 * Time Base Generator Clock bindings for Marvell Armada 37xx SoCs 3 Marvell Armada 37xx SoCs provde Time Base Generator clocks which are
|
| H A D | mvebu-gated-clock.txt | 23 25 tdm Time Division Mplx 48 25 tdm Time Division Mplx 77 25 tdm Time Division Multiplexing 117 25 tdm Time Division Mplx 173 20 tdm Time Division Mplx
|
| /freebsd-13.1/share/misc/ |
| H A D | scsi_modes | 82 {Extended Self-Test Completion Time} i2 100 {Disconnect Time Limit} i2 101 {Connect Time Limit} i2 172 {Background Medium Scan Interval Time} i2 173 {Background Pre-Scan Time Limit} i2 174 {Minimum Idle Time Before Background Scan} i2 175 {Maximum Time To Suspend Background Scan} i2 316 {Recovery Time Limit} i2 348 {Verify Recovery Time Limit} i2 384 {Write Delay Time} i2
|
| /freebsd-13.1/sys/dev/pms/RefTisa/sallsdk/spc/ |
| H A D | mpidebug.c | 88 curIbTrace->Time = ossaTimeStamp64(agNULL); in mpiTraceAdd() 90 curIbTrace->Time = ossaTimeStamp(agNULL); in mpiTraceAdd() 93 curIbTrace->Time = 0; in mpiTraceAdd() 111 curObTrace->Time = ossaTimeStamp64(agNULL); in mpiTraceAdd() 113 curObTrace->Time = ossaTimeStamp(agNULL); in mpiTraceAdd() 116 curObTrace->Time = 0; in mpiTraceAdd()
|