Searched refs:dostime (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Modules/ |
D | zipimport.c | 1157 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/cpython3/Modules/ |
D | zipimport.c | 1450 parse_dostime(int dostime, int dosdate) in parse_dostime() argument 1456 stm.tm_sec = (dostime & 0x1f) * 2; in parse_dostime() 1457 stm.tm_min = (dostime >> 5) & 0x3f; in parse_dostime() 1458 stm.tm_hour = (dostime >> 11) & 0x1f; in parse_dostime()
|
/external/chromium-trace/catapult/third_party/zipfile/ |
D | zipfile_2_7_13.py | 333 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2) 363 self.compress_type, dostime, dosdate, CRC, 1278 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 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 | 333 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/ |
D | zipfile.py | 408 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2) 445 self.compress_type, dostime, dosdate, CRC, 1817 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2) 1858 flag_bits, zinfo.compress_type, dostime, dosdate, 1866 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
|