Home
last modified time | relevance | path

Searched refs:TimeInteger (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/Windows/
H A DWindowsSupport.h203 ULARGE_INTEGER TimeInteger; in toDuration() local
204 TimeInteger.LowPart = Time.dwLowDateTime; in toDuration()
205 TimeInteger.HighPart = Time.dwHighDateTime; in toDuration()
208 return std::chrono::nanoseconds(100 * TimeInteger.QuadPart); in toDuration()
212 ULARGE_INTEGER TimeInteger; in toTimePoint() local
213 TimeInteger.LowPart = Time.dwLowDateTime; in toTimePoint()
214 TimeInteger.HighPart = Time.dwHighDateTime; in toTimePoint()
217 TimeInteger.QuadPart -= 11644473600ll * 10000000; in toTimePoint()
220 return TimePoint<>(std::chrono::nanoseconds(100 * TimeInteger.QuadPart)); in toTimePoint()
224 ULARGE_INTEGER TimeInteger; in toFILETIME() local
[all …]