/src/sys/arch/arm/apple/ |
apple_intc.c | 397 uint32_t ipimask, bit; local in function:apple_intc_ipi_handler 400 ipimask = atomic_swap_32(&pc->pc_ipimask, 0); 402 while ((bit = ffs(ipimask)) > 0) { 432 ipimask &= ~__BIT(ipi);
|
apple_intc.c | 397 uint32_t ipimask, bit; local in function:apple_intc_ipi_handler 400 ipimask = atomic_swap_32(&pc->pc_ipimask, 0); 402 while ((bit = ffs(ipimask)) > 0) { 432 ipimask &= ~__BIT(ipi);
|
/src/sys/arch/arm/broadcom/ |
bcm2835_intr.c | 850 uint32_t ipimask, bit; local in function:bcm2836mp_ipi_handler 854 ipimask = bus_space_read_4(bcml1icu_sc->sc_iot, bcml1icu_sc->sc_ioh, 857 BCM2836_LOCAL_MAILBOX0_CLRN(cpuid), ipimask); 859 while ((bit = ffs(ipimask)) > 0) { 888 ipimask &= ~__BIT(ipi);
|
bcm2835_intr.c | 850 uint32_t ipimask, bit; local in function:bcm2836mp_ipi_handler 854 ipimask = bus_space_read_4(bcml1icu_sc->sc_iot, bcml1icu_sc->sc_ioh, 857 BCM2836_LOCAL_MAILBOX0_CLRN(cpuid), ipimask); 859 while ((bit = ffs(ipimask)) > 0) { 888 ipimask &= ~__BIT(ipi);
|