Lines Matching refs:tv_usec
212 res->tv_usec = (suseconds_t)(tenms % 100) * 10000; in hp_sdc_rtc_read_rt()
229 res->tv_usec = (suseconds_t)(tenms % 100) * 10000; in hp_sdc_rtc_read_fhs()
246 res->tv_usec = (suseconds_t)(tenms % 100) * 10000; in hp_sdc_rtc_read_mt()
263 res->tv_usec = (suseconds_t)(tenms % 100) * 10000; in hp_sdc_rtc_read_dt()
280 res->tv_usec = (suseconds_t)(tenms % 100) * 10000; in hp_sdc_rtc_read_ct()
305 if (0xffff < setto->tv_usec / 1000000 / 86400) return -1;
306 days += ((setto->tv_sec % 86400) + setto->tv_usec / 1000000) / 86400;
311 if (0xffffff < setto->tv_usec / 10000) return -1;
312 tenms += setto->tv_usec / 10000;
342 if (0xffff < setto->tv_usec / 10000) return -1;
343 tenms += setto->tv_usec / 10000;
382 if (0xffffff < setto->tv_usec / 10000) return -1;
383 tenms += setto->tv_usec / 10000;
456 tv.tv_sec, (int)tv.tv_usec/1000); in hp_sdc_rtc_proc_show()
463 tv.tv_sec, (int)tv.tv_usec/1000); in hp_sdc_rtc_proc_show()
470 tv.tv_sec, (int)tv.tv_usec/1000); in hp_sdc_rtc_proc_show()
477 tv.tv_sec, (int)tv.tv_usec/1000); in hp_sdc_rtc_proc_show()
484 tv.tv_sec, (int)tv.tv_usec/1000); in hp_sdc_rtc_proc_show()
574 ttime.tv_usec = 1000000 / arg; in hp_sdc_rtc_ioctl()