Home
last modified time | relevance | path

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

/third_party/lzma/CPP/Windows/
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()
[all …]
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/icu/docs/userguide/datetime/
Duniversaltimescale.md168 int64_t unixTime = ...;
171 universalTime = utmscale_fromInt64(unixTime, UDTS_UNIX_TIME, &err);
189 int64_t unixTime;
191 unixTime = utmscale_toInt64(universalTime, UDTS_UNIX_TIME, &err);
213 BigDecimal utICU4C, utFile, utUnix, unixTime, macTime;
219 unixTime = UniversalTimeScale.toBigDecimal(utFile, UniversalTime.UNIX_TIME);
222 utUnix = UniversalTimeScale.bigDecimalFrom(unixTime, UniversalTime.UNIX_TIME);
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_date_time.h303 void DecodeUnixTime (uint32 unixTime, dng_date_time &dt);
Ddng_date_time.cpp752 void DecodeUnixTime (uint32 unixTime, dng_date_time &dt) in DecodeUnixTime() argument
755 time_t sec = (time_t) unixTime; in DecodeUnixTime()