Lines Matching refs:cmp64
204 cmp64: u64, field
225 cmp64: 0, in init()
378 self.cmp64 = self.calculate_cmp64(cur_tick, self.cmp); in set_timer()
382 if !self.is_periodic() && self.cmp64 > hpet_next_wrap(cur_tick) { in set_timer()
388 self.arm_timer(self.cmp64); in set_timer()
488 while hpet_time_after(cur_tick, self.cmp64) { in callback()
489 self.cmp64 += period; in callback()
492 self.cmp = u64::from(self.cmp64 as u32); // truncate! in callback()
494 self.cmp = self.cmp64; in callback()
496 self.arm_timer(self.cmp64); in callback()
499 self.arm_timer(self.cmp64); in callback()
858 t.cmp64 = t.calculate_cmp64(t.get_state().counter.get(), t.cmp); in post_load()