Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/Support/
H A DChrono.cpp27 std::time_t OurTime = toTimeT(TP); in getStructTM() local
30 struct tm *LT = ::localtime_r(&OurTime, &Storage); in getStructTM()
35 int Error = ::localtime_s(&Storage, &OurTime); in getStructTM()
45 std::time_t OurTime = toTimeT(TP); in getStructTMUtc() local
48 struct tm *LT = ::gmtime_r(&OurTime, &Storage); in getStructTMUtc()
53 int Error = ::gmtime_s(&Storage, &OurTime); in getStructTMUtc()