Home
last modified time | relevance | path

Searched refs:allocated_timers (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/uts/i86pc/io/
H A Dhpet_acpi.c64 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() argument
662 *allocated_timers |= 1 << n; in hpet_timer_alloc()
670 hpet_timer_available(uint32_t allocated_timers, uint32_t n) in hpet_timer_available() argument
672 return ((allocated_timers & (1 << n)) == 0); in hpet_timer_available()
/titanic_50/usr/src/uts/i86pc/sys/
H A Dhpet_acpi.h255 uint32_t allocated_timers; /* bitmap of timers in use */ member