Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/libarchive/libarchive/
H A Darchive_read_support_format_lha.c1626 int msTime, msDate; in lha_dos_time() local
1629 msTime = archive_le16dec(p); in lha_dos_time()
1636 ts.tm_hour = (msTime >> 11) & 0x1f; in lha_dos_time()
1637 ts.tm_min = (msTime >> 5) & 0x3f; in lha_dos_time()
1638 ts.tm_sec = (msTime << 1) & 0x3e; in lha_dos_time()
H A Darchive_read_support_format_cab.c2044 int msTime, msDate; in cab_dos_time() local
2048 msTime = archive_le16dec(p+2); in cab_dos_time()
2054 ts.tm_hour = (msTime >> 11) & 0x1f; in cab_dos_time()
2055 ts.tm_min = (msTime >> 5) & 0x3f; in cab_dos_time()
2056 ts.tm_sec = (msTime << 1) & 0x3e; in cab_dos_time()
H A Darchive_read_support_format_zip.c452 int msTime, msDate; in zip_time() local
455 msTime = (0xff & (unsigned)p[0]) + 256 * (0xff & (unsigned)p[1]); in zip_time()
462 ts.tm_hour = (msTime >> 11) & 0x1f; in zip_time()
463 ts.tm_min = (msTime >> 5) & 0x3f; in zip_time()
464 ts.tm_sec = (msTime << 1) & 0x3e; in zip_time()