Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DChrono.h33 using TimePoint = std::chrono::time_point<std::chrono::system_clock, D>; variable
36 LLVM_ATTRIBUTE_ALWAYS_INLINE inline std::time_t toTimeT(TimePoint<> TP) { in toTimeT()
43 LLVM_ATTRIBUTE_ALWAYS_INLINE inline TimePoint<std::chrono::seconds>
51 raw_ostream &operator<<(raw_ostream &OS, sys::TimePoint<> TP);
DProcess.h63 static void GetTimeUsage(TimePoint<> &elapsed,
DFileSystem.h213 TimePoint<> getLastAccessedTime() const;
214 TimePoint<> getLastModificationTime() const;
554 std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time);
/external/libcxxabi/test/support/
Dtimer.hpp22 typedef Clock::time_point TimePoint; typedef in timer
33 TimePoint end = Clock::now(); in ~timer()
39 TimePoint m_start;
/external/libcxx/test/std/utilities/time/time.point/time.point.nonmember/
Dop_-duration.pass.cpp26 typedef std::chrono::time_point<std::chrono::system_clock> TimePoint; in test2739() typedef
29 TimePoint t0 = std::chrono::system_clock::from_time_t(200); in test2739()
30 TimePoint t1 = t0 - d; in test2739()
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DUnix.h84 inline struct timespec toTimeSpec(TimePoint<> TP) { in toTimeSpec()
94 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { in toTimeVal()
DPath.inc201 TimePoint<> file_status::getLastAccessedTime() const {
205 TimePoint<> file_status::getLastModificationTime() const {
458 std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time) {
DProcess.inc115 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DWindowsSupport.h225 inline TimePoint<> toTimePoint(FILETIME Time) { in toTimePoint()
234 return TimePoint<>(std::chrono::nanoseconds(100 * TimeInteger.QuadPart)); in toTimePoint()
237 inline FILETIME toFILETIME(TimePoint<> TP) { in toFILETIME()
DPath.inc167 TimePoint<> file_status::getLastAccessedTime() const {
174 TimePoint<> file_status::getLastModificationTime() const {
514 std::error_code setLastModificationAndAccessTime(int FD, TimePoint<> Time) {
DProcess.inc84 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DTimer.cpp123 sys::TimePoint<> now; in getCurrentTime()