Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dzipimport.c1037 parse_dostime(int dostime, int dosdate) in parse_dostime() argument
1043 stm.tm_sec = (dostime & 0x1f) * 2; in parse_dostime()
1044 stm.tm_min = (dostime >> 5) & 0x3f; in parse_dostime()
1045 stm.tm_hour = (dostime >> 11) & 0x1f; in parse_dostime()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dzipimport.c1065 parse_dostime(int dostime, int dosdate) in parse_dostime() argument
1071 stm.tm_sec = (dostime & 0x1f) * 2; in parse_dostime()
1072 stm.tm_min = (dostime >> 5) & 0x3f; in parse_dostime()
1073 stm.tm_hour = (dostime >> 11) & 0x1f; in parse_dostime()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dzipfile.py321 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
346 self.compress_type, dostime, dosdate, CRC,
1165 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
1201 flag_bits, zinfo.compress_type, dostime, dosdate,
1210 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dzipfile.py333 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
363 self.compress_type, dostime, dosdate, CRC,
1273 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
1309 flag_bits, zinfo.compress_type, dostime, dosdate,
1318 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,