Home
last modified time | relevance | path

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

/qemu/hw/intc/
H A Dopenpic.c1299 bitmap_clear(opp->dst[i].raised.queue, 0, IRQQUEUE_SIZE_BITS); in openpic_reset()
1302 bitmap_clear(opp->dst[i].servicing.queue, 0, IRQQUEUE_SIZE_BITS); in openpic_reset()
1598 opp->dst[i].raised.queue_size = IRQQUEUE_SIZE_BITS; in openpic_realize()
1599 opp->dst[i].raised.queue = bitmap_new(IRQQUEUE_SIZE_BITS); in openpic_realize()
1600 opp->dst[i].servicing.queue_size = IRQQUEUE_SIZE_BITS; in openpic_realize()
1601 opp->dst[i].servicing.queue = bitmap_new(IRQQUEUE_SIZE_BITS); in openpic_realize()
/qemu/include/hw/ppc/
H A Dopenpic.h58 #define IRQQUEUE_SIZE_BITS ROUND_UP(OPENPIC_MAX_IRQ, 64) macro