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

/external/lzma/CPP/Windows/
H A DTimeUtils.h13 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &fileTime) throw();
14 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &fileTime) throw();
15 bool FileTimeToUnixTime(const FILETIME &fileTime, UInt32 &unixTime) throw();
H A DTimeUtils.cpp118 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &ft) throw() argument
120 UInt64 v = (kUnixTimeOffset + (UInt64)unixTime) * kNumTimeQuantumsInSecond;
125 bool UnixTime64ToFileTime(Int64 unixTime, FILETIME &ft) throw() argument
127 if (unixTime > kNumSecondsInFileTime - kUnixTimeOffset)
132 Int64 v = (Int64)kUnixTimeOffset + unixTime;
150 bool FileTimeToUnixTime(const FILETIME &ft, UInt32 &unixTime) throw() argument
156 unixTime = 0;
162 unixTime = 0xFFFFFFFF;
165 unixTime = (UInt32)winTime;
/external/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) argument
755 time_t sec = (time_t) unixTime;

Completed in 110 milliseconds