Home
last modified time | relevance | path

Searched refs:unixTime (Results 1 - 4 of 4) sorted by relevance

/third_party/lzma/CPP/Windows/
H A DTimeUtils.cpp145 UInt64 UnixTime_To_FileTime64(UInt32 unixTime) throw() in UnixTime_To_FileTime64() argument
147 return (kUnixTimeOffset + (UInt64)unixTime) * kNumTimeQuantumsInSecond; in UnixTime_To_FileTime64()
150 void UnixTime_To_FileTime(UInt32 unixTime, FILETIME &ft) throw() in UnixTime_To_FileTime() argument
152 const UInt64 v = UnixTime_To_FileTime64(unixTime); in UnixTime_To_FileTime()
157 UInt64 UnixTime64_To_FileTime64(Int64 unixTime) throw() in UnixTime64_To_FileTime64() argument
159 return (UInt64)((Int64)kUnixTimeOffset + unixTime) * kNumTimeQuantumsInSecond; in UnixTime64_To_FileTime64()
163 bool UnixTime64_To_FileTime64(Int64 unixTime, UInt64 &fileTime) throw() in UnixTime64_To_FileTime64() argument
165 if (unixTime > (Int64)(kNumSecondsInFileTime - kUnixTimeOffset)) in UnixTime64_To_FileTime64()
170 if (unixTime < -(Int64)kUnixTimeOffset) in UnixTime64_To_FileTime64()
175 fileTime = UnixTime64_To_FileTime64(unixTime); in UnixTime64_To_FileTime64()
180 UnixTime64_To_FileTime(Int64 unixTime, FILETIME &ft) UnixTime64_To_FileTime() argument
203 FileTime_To_UnixTime(const FILETIME &ft, UInt32 &unixTime) FileTime_To_UnixTime() argument
[all...]
H A DTimeUtils.h86 UInt64 UnixTime_To_FileTime64(UInt32 unixTime) throw();
87 void UnixTime_To_FileTime(UInt32 unixTime, FILETIME &fileTime) throw();
90 UInt64 UnixTime64_To_FileTime64(Int64 unixTime) throw(); // no check
91 bool UnixTime64_To_FileTime64(Int64 unixTime, UInt64 &fileTime) throw();
92 bool UnixTime64_To_FileTime(Int64 unixTime, FILETIME &fileTime) throw();
95 bool FileTime_To_UnixTime(const FILETIME &fileTime, UInt32 &unixTime) throw();
111 inline void PropVariant_SetFrom_UnixTime(NWindows::NCOM::CPropVariant &prop, UInt32 unixTime) in PropVariant_SetFrom_UnixTime() argument
114 NWindows::NTime::UnixTime_To_FileTime(unixTime, ft); in PropVariant_SetFrom_UnixTime()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_date_time.h303 void DecodeUnixTime (uint32 unixTime, dng_date_time &dt);
H A Ddng_date_time.cpp752 void DecodeUnixTime (uint32 unixTime, dng_date_time &dt) in DecodeUnixTime() argument
755 time_t sec = (time_t) unixTime; in DecodeUnixTime()

Completed in 3 milliseconds