Searched refs:dosdate (Results 1 – 6 of 6) sorted by relevance
/external/zlib/src/contrib/minizip/ |
D | miniunz.c | 83 void change_file_date(filename,dosdate,tmu_date) in change_file_date() argument 85 uLong dosdate; 95 DosDateTimeToFileTime((WORD)(dosdate>>16),(WORD)dosdate,&ftLocal);
|
/external/python/cpython2/Modules/ |
D | zipimport.c | 1157 parse_dostime(int dostime, int dosdate) in parse_dostime() argument 1166 stm.tm_mday = dosdate & 0x1f; in parse_dostime() 1167 stm.tm_mon = ((dosdate >> 5) & 0x0f) - 1; in parse_dostime() 1168 stm.tm_year = ((dosdate >> 9) & 0x7f) + 80; in parse_dostime()
|
/external/python/cpython3/Modules/ |
D | zipimport.c | 1450 parse_dostime(int dostime, int dosdate) in parse_dostime() argument 1459 stm.tm_mday = dosdate & 0x1f; in parse_dostime() 1460 stm.tm_mon = ((dosdate >> 5) & 0x0f) - 1; in parse_dostime() 1461 stm.tm_year = ((dosdate >> 9) & 0x7f) + 80; in parse_dostime()
|
/external/chromium-trace/catapult/third_party/zipfile/ |
D | zipfile_2_7_13.py | 332 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] 363 self.compress_type, dostime, dosdate, CRC, 1277 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] 1313 flag_bits, zinfo.compress_type, dostime, dosdate, 1322 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
|
/external/python/cpython2/Lib/ |
D | zipfile.py | 332 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] 363 self.compress_type, dostime, dosdate, CRC, 1274 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] 1311 flag_bits, zinfo.compress_type, dostime, dosdate, 1320 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
|
/external/python/cpython3/Lib/ |
D | zipfile.py | 407 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] 445 self.compress_type, dostime, dosdate, CRC, 1816 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] 1858 flag_bits, zinfo.compress_type, dostime, dosdate, 1866 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
|