Searched refs:msDate (Results 1 – 2 of 2) sorted by relevance
56 uint16_t msTime, msDate; in dos_to_unix() local61 msDate = (dos_time >> 16); in dos_to_unix()64 ts.tm_year = ((msDate >> 9) & 0x7f) + 80; /* Years since 1900. */ in dos_to_unix()65 ts.tm_mon = ((msDate >> 5) & 0x0f) - 1; /* Month number. */ in dos_to_unix()66 ts.tm_mday = msDate & 0x1f; /* Day of month. */ in dos_to_unix()
2063 int msTime, msDate; in cab_dos_time() local2066 msDate = archive_le16dec(p); in cab_dos_time()2070 ts.tm_year = ((msDate >> 9) & 0x7f) + 80; /* Years since 1900. */ in cab_dos_time()2071 ts.tm_mon = ((msDate >> 5) & 0x0f) - 1; /* Month number. */ in cab_dos_time()2072 ts.tm_mday = msDate & 0x1f; /* Day of month. */ in cab_dos_time()