Home | History | Annotate | Download | only in time

Lines Matching refs:FILETIME

55 // From MSDN, FILETIME "Contains a 64-bit value representing the number of
57 int64 FileTimeToMicroseconds(const FILETIME& ft) {
61 return bit_cast<int64, FILETIME>(ft) / 10;
64 void MicrosecondsToFileTime(int64 us, FILETIME* ft) {
66 "representable in FILETIME";
70 *ft = bit_cast<FILETIME, int64>(us * 10);
74 FILETIME ft;
94 // The internal representation of Time uses FILETIME, whose epoch is 1601-01-01
143 Time Time::FromFileTime(FILETIME ft) {
144 if (bit_cast<int64, FILETIME>(ft) == 0)
152 FILETIME Time::ToFileTime() const {
154 return bit_cast<FILETIME, int64>(0);
156 FILETIME result;
161 FILETIME utc_ft;
222 FILETIME ft;
242 // We are not able to convert it to FILETIME.
247 // FILETIME in UTC.
248 FILETIME utc_ft;
251 // FILETIME in local time if necessary.
253 // FILETIME in SYSTEMTIME (exploded).