Searched refs:wtime (Results 1 - 12 of 12) sorted by relevance

/linux-master/drivers/rtc/
H A Drtc-efi.c53 convert_to_efi_time(struct rtc_time *wtime, efi_time_t *eft) argument
55 eft->year = wtime->tm_year + 1900;
56 eft->month = wtime->tm_mon + 1;
57 eft->day = wtime->tm_mday;
58 eft->hour = wtime->tm_hour;
59 eft->minute = wtime->tm_min;
60 eft->second = wtime->tm_sec;
62 eft->daylight = wtime->tm_isdst ? EFI_ISDST : 0;
67 convert_from_efi_time(efi_time_t *eft, struct rtc_time *wtime) argument
69 memset(wtime,
[all...]
/linux-master/arch/m68k/bvme6000/
H A Drtc.c44 struct rtc_time wtime; local
54 memset(&wtime, 0, sizeof(struct rtc_time));
56 wtime.tm_sec = bcd2bin(rtc->bcd_sec);
57 wtime.tm_min = bcd2bin(rtc->bcd_min);
58 wtime.tm_hour = bcd2bin(rtc->bcd_hr);
59 wtime.tm_mday = bcd2bin(rtc->bcd_dom);
60 wtime.tm_mon = bcd2bin(rtc->bcd_mth)-1;
61 wtime.tm_year = bcd2bin(rtc->bcd_year);
62 if (wtime.tm_year < 70)
63 wtime
[all...]
/linux-master/arch/m68k/mvme16x/
H A Drtc.c42 struct rtc_time wtime; local
51 memset(&wtime, 0, sizeof(struct rtc_time));
52 wtime.tm_sec = bcd2bin(rtc->bcd_sec);
53 wtime.tm_min = bcd2bin(rtc->bcd_min);
54 wtime.tm_hour = bcd2bin(rtc->bcd_hr);
55 wtime.tm_mday = bcd2bin(rtc->bcd_dom);
56 wtime.tm_mon = bcd2bin(rtc->bcd_mth)-1;
57 wtime.tm_year = bcd2bin(rtc->bcd_year);
58 if (wtime.tm_year < 70)
59 wtime
[all...]
/linux-master/include/trace/events/
H A Dwbt.h32 __field(s64, wtime)
/linux-master/drivers/scsi/qla4xxx/
H A Dql4_os.c3143 unsigned long flags, wtime; local
3163 wtime = jiffies + (HZ * LOGOUT_TOV);
3177 } while ((time_after(wtime, jiffies)));
4627 unsigned long wtime; local
4635 wtime = jiffies + (wtmo * HZ);
4641 while (!time_after_eq(jiffies, wtime)) {
6654 unsigned long wtime; local
6657 wtime = jiffies + (HZ * IP_CONFIG_TOV);
6690 } while (time_after(wtime, jiffies));
7426 unsigned long wtime; local
7622 unsigned long wtime; local
8496 unsigned long wtime; local
8559 unsigned long wtime; local
8934 unsigned long wtime; local
[all...]
H A Dql4_nx.c2197 unsigned long wtime; local
2237 wtime = jiffies + poll_time;
2244 } else if (time_after_eq(jiffies, wtime)) {
/linux-master/drivers/scsi/qla2xxx/
H A Dqla_mr.c879 unsigned long wtime; local
902 wtime = jiffies + (wait_time * HZ);
1005 wtime = jiffies + (wait_time * HZ);
1010 if (time_after_eq(jiffies, wtime)) {
1043 unsigned long wtime; local
1052 wtime = jiffies + (wait_time * HZ);
1072 if (time_after_eq(jiffies, wtime))
H A Dqla_nx.c3679 unsigned long wtime; local
3722 wtime = jiffies + poll_time;
3729 else if (time_after_eq(jiffies, wtime)) {
H A Dqla_nx2.c2209 unsigned long wtime; local
2249 wtime = jiffies + poll_time;
2256 } else if (time_after_eq(jiffies, wtime)) {
H A Dqla_init.c4872 unsigned long wtime, mtime, cs84xx_time; local
4899 wtime = jiffies + (wait_time * HZ);
4933 wtime += cs84xx_time;
4938 wtime);
4973 if (time_after_eq(jiffies, wtime))
/linux-master/block/
H A Dblk-throttle.c1767 unsigned long rtime = jiffies, wtime = jiffies; local
1772 wtime = tg->last_low_overflow_time[WRITE];
1773 return min(rtime, wtime);
/linux-master/tools/power/pm-graph/
H A Dsleepgraph.py4711 wtime = '%.0f ms'%(data.end - data.tKernRes + (data.wifi['time'] * 1000.0))
4713 wtime = 'TIMEOUT'
4714 thtml += html_wifdesc.format(testdesc2, wtime, data.wifi['dev'])

Completed in 291 milliseconds