Lines Matching full:raw
184 int64_t raw; in hp_sdc_rtc_read_rt() local
188 raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_RT, 5); in hp_sdc_rtc_read_rt()
189 if (raw < 0) return -1; in hp_sdc_rtc_read_rt()
191 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_rt()
192 days = (unsigned int)(raw >> 24) & 0xffff; in hp_sdc_rtc_read_rt()
203 int64_t raw; in hp_sdc_rtc_read_fhs() local
206 raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_FHS, 2); in hp_sdc_rtc_read_fhs()
207 if (raw < 0) return -1; in hp_sdc_rtc_read_fhs()
209 tenms = (unsigned int)raw & 0xffff; in hp_sdc_rtc_read_fhs()
220 int64_t raw; in hp_sdc_rtc_read_mt() local
223 raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_MT, 3); in hp_sdc_rtc_read_mt()
224 if (raw < 0) return -1; in hp_sdc_rtc_read_mt()
226 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_mt()
237 int64_t raw; in hp_sdc_rtc_read_dt() local
240 raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_DT, 3); in hp_sdc_rtc_read_dt()
241 if (raw < 0) return -1; in hp_sdc_rtc_read_dt()
243 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_dt()
254 int64_t raw; in hp_sdc_rtc_read_ct() local
257 raw = hp_sdc_rtc_read_i8042timer(HP_SDC_CMD_LOAD_CT, 3); in hp_sdc_rtc_read_ct()
258 if (raw < 0) return -1; in hp_sdc_rtc_read_ct()
260 tenms = (uint32_t)raw & 0xffffff; in hp_sdc_rtc_read_ct()