Home
last modified time | relevance | path

Searched refs:IntTime (Results 1 – 2 of 2) sorted by relevance

/reactos/sdk/lib/rtl/
H A Dtime.c260 ULONGLONG IntTime = Time->QuadPart; in RtlTimeToTimeFields() local
264 IntTime = IntTime / TICKSPERSEC; in RtlTimeToTimeFields()
267 Days = (ULONG)(IntTime / SECSPERDAY); in RtlTimeToTimeFields()
268 SecondsInDay = IntTime % SECSPERDAY; in RtlTimeToTimeFields()
315 LARGE_INTEGER IntTime; in RtlTimeToSecondsSince1970() local
318 IntTime.QuadPart = IntTime.QuadPart / TICKSPERSEC; in RtlTimeToSecondsSince1970()
320 if (IntTime.u.HighPart != 0) in RtlTimeToSecondsSince1970()
323 *SecondsSince1970 = IntTime.u.LowPart; in RtlTimeToSecondsSince1970()
337 LARGE_INTEGER IntTime; in RtlTimeToSecondsSince1980() local
340 IntTime.QuadPart = IntTime.QuadPart / TICKSPERSEC; in RtlTimeToSecondsSince1980()
[all …]
/reactos/ntoskrnl/ex/
H A Duuid.c465 ULARGE_INTEGER IntTime; in NtAllocateUuids() local
504 Status = ExpAllocateUuids(&IntTime, in NtAllocateUuids()
522 Time->QuadPart = IntTime.QuadPart; in NtAllocateUuids()