Home
last modified time | relevance | path

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

/dragonfly/contrib/libarchive/libarchive/
H A Darchive_read_support_format_lha.c1718 int msTime, msDate; in lha_dos_time() local
1722 msDate = archive_le16dec(p+2); in lha_dos_time()
1725 ts.tm_year = ((msDate >> 9) & 0x7f) + 80; /* Years since 1900. */ in lha_dos_time()
1726 ts.tm_mon = ((msDate >> 5) & 0x0f) - 1; /* Month number. */ in lha_dos_time()
1727 ts.tm_mday = msDate & 0x1f; /* Day of month. */ in lha_dos_time()
H A Darchive_read_support_format_cab.c2044 int msTime, msDate; in cab_dos_time() local
2047 msDate = archive_le16dec(p); in cab_dos_time()
2051 ts.tm_year = ((msDate >> 9) & 0x7f) + 80; /* Years since 1900. */ in cab_dos_time()
2052 ts.tm_mon = ((msDate >> 5) & 0x0f) - 1; /* Month number. */ in cab_dos_time()
2053 ts.tm_mday = msDate & 0x1f; /* Day of month. */ in cab_dos_time()
H A Darchive_read_support_format_zip.c473 int msTime, msDate; in zip_time() local
477 msDate = (0xff & (unsigned)p[2]) + 256 * (0xff & (unsigned)p[3]); in zip_time()
480 ts.tm_year = ((msDate >> 9) & 0x7f) + 80; /* Years since 1900. */ in zip_time()
481 ts.tm_mon = ((msDate >> 5) & 0x0f) - 1; /* Month number. */ in zip_time()
482 ts.tm_mday = msDate & 0x1f; /* Day of month. */ in zip_time()