Home
last modified time | relevance | path

Searched refs:msDate (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_support_format_lha.c1723 int msTime, msDate; in lha_dos_time() local
1727 msDate = archive_le16dec(p+2); in lha_dos_time()
1730 ts.tm_year = ((msDate >> 9) & 0x7f) + 80; /* Years since 1900. */ in lha_dos_time()
1731 ts.tm_mon = ((msDate >> 5) & 0x0f) - 1; /* Month number. */ in lha_dos_time()
1732 ts.tm_mday = msDate & 0x1f; /* Day of month. */ in lha_dos_time()
H A Darchive_read_support_format_cab.c2046 int msTime, msDate; in cab_dos_time() local
2049 msDate = archive_le16dec(p); in cab_dos_time()
2053 ts.tm_year = ((msDate >> 9) & 0x7f) + 80; /* Years since 1900. */ in cab_dos_time()
2054 ts.tm_mon = ((msDate >> 5) & 0x0f) - 1; /* Month number. */ in cab_dos_time()
2055 ts.tm_mday = msDate & 0x1f; /* Day of month. */ in cab_dos_time()
H A Darchive_read_support_format_zip.c472 int msTime, msDate; in zip_time() local
476 msDate = (0xff & (unsigned)p[2]) + 256 * (0xff & (unsigned)p[3]); in zip_time()
479 ts.tm_year = ((msDate >> 9) & 0x7f) + 80; /* Years since 1900. */ in zip_time()
480 ts.tm_mon = ((msDate >> 5) & 0x0f) - 1; /* Month number. */ in zip_time()
481 ts.tm_mday = msDate & 0x1f; /* Day of month. */ in zip_time()