Searched refs:dos_date (Results 1 – 1 of 1) sorted by relevance
/hardware/google/gfxstream/third-party/astc-encoder/Source/ |
D | tinyexr.h | 4865 static time_t mz_zip_dos_to_time_t(int dos_time, int dos_date) { in mz_zip_dos_to_time_t() argument 4869 tm.tm_year = ((dos_date >> 9) & 127) + 1980 - 1900; in mz_zip_dos_to_time_t() 4870 tm.tm_mon = ((dos_date >> 5) & 15) - 1; in mz_zip_dos_to_time_t() 4871 tm.tm_mday = dos_date & 31; in mz_zip_dos_to_time_t() 6144 mz_uint16 dos_time, mz_uint16 dos_date) { in mz_zip_writer_create_local_dir_header() argument 6152 MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_FILE_DATE_OFS, dos_date); in mz_zip_writer_create_local_dir_header() 6165 mz_uint16 bit_flags, mz_uint16 dos_time, mz_uint16 dos_date, in mz_zip_writer_create_central_dir_header() argument 6174 MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_FILE_DATE_OFS, dos_date); in mz_zip_writer_create_central_dir_header() 6191 mz_uint16 dos_time, mz_uint16 dos_date, mz_uint64 local_header_ofs, in mz_zip_writer_add_to_central_dir() argument 6208 dos_date, local_header_ofs, ext_attributes)) in mz_zip_writer_add_to_central_dir() [all …]
|