Searched refs:allocated_timers (Results 1 – 2 of 2) sorted by relevance
64 static int hpet_timer_available(uint32_t allocated_timers, uint32_t n);65 static void hpet_timer_alloc(uint32_t *allocated_timers, uint32_t n);641 if (!hpet_timer_available(hip->allocated_timers, timer)) in hpet_get_IOAPIC_intr_capable_timer()646 hpet_timer_alloc(&hip->allocated_timers, timer); in hpet_get_IOAPIC_intr_capable_timer()660 hpet_timer_alloc(uint32_t *allocated_timers, uint32_t n) in hpet_timer_alloc() argument662 *allocated_timers |= 1 << n; in hpet_timer_alloc()670 hpet_timer_available(uint32_t allocated_timers, uint32_t n) in hpet_timer_available() argument672 return ((allocated_timers & (1 << n)) == 0); in hpet_timer_available()
255 uint32_t allocated_timers; /* bitmap of timers in use */ member