Lines Matching refs:tenms
185 uint32_t tenms; in hp_sdc_rtc_read_rt() local
191 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_rt()
194 res->tv_nsec = (long)(tenms % 100) * 10000 * 1000; in hp_sdc_rtc_read_rt()
195 res->tv_sec = (tenms / 100) + (time64_t)days * 86400; in hp_sdc_rtc_read_rt()
204 unsigned int tenms; in hp_sdc_rtc_read_fhs() local
209 tenms = (unsigned int)raw & 0xffff; in hp_sdc_rtc_read_fhs()
211 res->tv_nsec = (long)(tenms % 100) * 10000 * 1000; in hp_sdc_rtc_read_fhs()
212 res->tv_sec = (time64_t)(tenms / 100); in hp_sdc_rtc_read_fhs()
221 uint32_t tenms; in hp_sdc_rtc_read_mt() local
226 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_mt()
228 res->tv_nsec = (long)(tenms % 100) * 10000 * 1000; in hp_sdc_rtc_read_mt()
229 res->tv_sec = (time64_t)(tenms / 100); in hp_sdc_rtc_read_mt()
238 uint32_t tenms; in hp_sdc_rtc_read_dt() local
243 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_dt()
245 res->tv_nsec = (long)(tenms % 100) * 10000 * 1000; in hp_sdc_rtc_read_dt()
246 res->tv_sec = (time64_t)(tenms / 100); in hp_sdc_rtc_read_dt()
255 uint32_t tenms; in hp_sdc_rtc_read_ct() local
260 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_ct()
262 res->tv_nsec = (long)(tenms % 100) * 10000 * 1000; in hp_sdc_rtc_read_ct()
263 res->tv_sec = (time64_t)(tenms / 100); in hp_sdc_rtc_read_ct()