Home
last modified time | relevance | path

Searched refs:msTime (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
1726 msTime = archive_le16dec(p); in lha_dos_time()
1733 ts.tm_hour = (msTime >> 11) & 0x1f; in lha_dos_time()
1734 ts.tm_min = (msTime >> 5) & 0x3f; in lha_dos_time()
1735 ts.tm_sec = (msTime << 1) & 0x3e; in lha_dos_time()
H A Darchive_read_support_format_cab.c2046 int msTime, msDate; in cab_dos_time() local
2050 msTime = archive_le16dec(p+2); in cab_dos_time()
2056 ts.tm_hour = (msTime >> 11) & 0x1f; in cab_dos_time()
2057 ts.tm_min = (msTime >> 5) & 0x3f; in cab_dos_time()
2058 ts.tm_sec = (msTime << 1) & 0x3e; in cab_dos_time()
H A Darchive_read_support_format_zip.c472 int msTime, msDate; in zip_time() local
475 msTime = (0xff & (unsigned)p[0]) + 256 * (0xff & (unsigned)p[1]); in zip_time()
482 ts.tm_hour = (msTime >> 11) & 0x1f; in zip_time()
483 ts.tm_min = (msTime >> 5) & 0x3f; in zip_time()
484 ts.tm_sec = (msTime << 1) & 0x3e; in zip_time()