Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dzipimport.c1157 parse_dostime(int dostime, int dosdate) in parse_dostime() argument
1163 stm.tm_sec = (dostime & 0x1f) * 2; in parse_dostime()
1164 stm.tm_min = (dostime >> 5) & 0x3f; in parse_dostime()
1165 stm.tm_hour = (dostime >> 11) & 0x1f; in parse_dostime()
/external/python/cpython2/Lib/
Dzipfile.py333 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
363 self.compress_type, dostime, dosdate, CRC,
1275 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
1311 flag_bits, zinfo.compress_type, dostime, dosdate,
1320 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
/external/python/cpython3/Lib/
Dzipfile.py412 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
449 self.compress_type, dostime, dosdate, CRC,
1835 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
1875 flag_bits, zinfo.compress_type, dostime, dosdate,