Lines Matching refs:raw
202 int64_t raw; in hp_sdc_rtc_read_rt() local
206 raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_RT, 5); in hp_sdc_rtc_read_rt()
207 if (raw < 0) return -1; in hp_sdc_rtc_read_rt()
209 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_rt()
210 days = (unsigned int)(raw >> 24) & 0xffff; in hp_sdc_rtc_read_rt()
221 int64_t raw; in hp_sdc_rtc_read_fhs() local
224 raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_FHS, 2); in hp_sdc_rtc_read_fhs()
225 if (raw < 0) return -1; in hp_sdc_rtc_read_fhs()
227 tenms = (unsigned int)raw & 0xffff; in hp_sdc_rtc_read_fhs()
238 int64_t raw; in hp_sdc_rtc_read_mt() local
241 raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_MT, 3); in hp_sdc_rtc_read_mt()
242 if (raw < 0) return -1; in hp_sdc_rtc_read_mt()
244 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_mt()
255 int64_t raw; in hp_sdc_rtc_read_dt() local
258 raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_DT, 3); in hp_sdc_rtc_read_dt()
259 if (raw < 0) return -1; in hp_sdc_rtc_read_dt()
261 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_dt()
272 int64_t raw; in hp_sdc_rtc_read_ct() local
275 raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_CT, 3); in hp_sdc_rtc_read_ct()
276 if (raw < 0) return -1; in hp_sdc_rtc_read_ct()
278 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_ct()