Home | History | Annotate | Download | only in Windows

Lines Matching refs:UInt64

16 static const UInt64 kUnixTimeStartValue = ((UInt64)kNumTimeQuantumsInSecond) *

26 UInt64 res;
59 UInt64 v64 = ft.dwLowDateTime | ((UInt64)ft.dwHighDateTime << 32);
120 UInt64 v = kUnixTimeStartValue + ((UInt64)unixTime) * kNumTimeQuantumsInSecond;
127 UInt64 winTime = (((UInt64)ft.dwHighDateTime) << 32) + ft.dwLowDateTime;
144 unsigned hour, unsigned min, unsigned sec, UInt64 &resSeconds)
159 resSeconds = ((UInt64)(numDays * 24 + hour) * 60 + min) * 60 + sec;