Lines Matching full:dostime
1047 /* dostime only stores even seconds, so be lenient */1159 parse_dostime(int dostime, int dosdate)1165 stm.tm_sec = (dostime & 0x1f) * 2;1166 stm.tm_min = (dostime >> 5) & 0x3f;1167 stm.tm_hour = (dostime >> 11) & 0x1f;