Searched refs:allocated_timers (Results 1 – 2 of 2) sorted by relevance
70 static int hpet_timer_available(uint32_t allocated_timers, uint32_t n);71 static void hpet_timer_alloc(uint32_t *allocated_timers, uint32_t n);771 if (!hpet_timer_available(hip->allocated_timers, timer)) in hpet_get_IOAPIC_intr_capable_timer()780 hpet_timer_alloc(&hip->allocated_timers, timer); in hpet_get_IOAPIC_intr_capable_timer()794 hpet_timer_alloc(uint32_t *allocated_timers, uint32_t n) in hpet_timer_alloc() argument796 *allocated_timers |= 1 << n; in hpet_timer_alloc()804 hpet_timer_available(uint32_t allocated_timers, uint32_t n) in hpet_timer_available() argument806 return ((allocated_timers & (1 << n)) == 0); in hpet_timer_available()
255 uint32_t allocated_timers; /* bitmap of timers in use */ member