Searched refs:dos_date (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-latest/tools/esptool_py/flasher_stub/ |
D | miniz.c | 3307 static MZ_TIME_T mz_zip_dos_to_time_t(int dos_time, int dos_date) in mz_zip_dos_to_time_t() argument 3312 tm.tm_year = ((dos_date >> 9) & 127) + 1980 - 1900; in mz_zip_dos_to_time_t() 3313 tm.tm_mon = ((dos_date >> 5) & 15) - 1; in mz_zip_dos_to_time_t() 3314 tm.tm_mday = dos_date & 31; in mz_zip_dos_to_time_t() 5962 …uint32 uncomp_crc32, mz_uint16 method, mz_uint16 bit_flags, mz_uint16 dos_time, mz_uint16 dos_date) in mz_zip_writer_create_local_dir_header() argument 5971 MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_FILE_DATE_OFS, dos_date); in mz_zip_writer_create_local_dir_header() 5983 … mz_uint16 method, mz_uint16 bit_flags, mz_uint16 dos_time, mz_uint16 dos_date, in mz_zip_writer_create_central_dir_header() argument 5993 MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_FILE_DATE_OFS, dos_date); in mz_zip_writer_create_central_dir_header() 6008 … mz_uint16 method, mz_uint16 bit_flags, mz_uint16 dos_time, mz_uint16 dos_date, in mz_zip_writer_add_to_central_dir() argument 6027 …ize, uncomp_size, comp_size, uncomp_crc32, method, bit_flags, dos_time, dos_date, local_header_ofs… in mz_zip_writer_add_to_central_dir() [all …]
|