Home | History | Annotate | Download | only in qemu

Lines Matching full:hour

201     uint32_t hour = tm->tm_hour;
202 tens = hour / 10;
203 ones = (hour - tens * 10);
204 hour = (tens << 4) | ones;
216 *ptime = (hour << 16) | (min << 8) | sec;