Home | Sort by: relevance | last modified time | path |
/src/sys/arch/arm/cortex/ | |
gic.c | 254 const u_int byte_shift = 8 * (irq & 3); local in function:armgic_get_affinity 257 const uint32_t targets_val = (targets >> byte_shift) & 0xff; 275 const u_int byte_shift = 8 * (irq & 3); local in function:armgic_set_affinity 286 targets &= ~(0xff << byte_shift); 287 targets |= (targets_val << byte_shift); 419 const u_int byte_shift = 8 * (irq & 3); local in function:armgic_establish_irq 440 targets &= ~(0xffU << byte_shift); 444 targets |= sc->sc_mptargets << byte_shift; 448 targets |= sc->sc_bptargets << byte_shift; 481 priority &= ~(0xffU << byte_shift); 505 size_t byte_shift = 0; local in function:armgic_cpu_update_priorities 528 const u_int byte_shift = 8 * (irq & 3); local in function:armgic_cpu_init_targets [all...] |
gicv3.c | 305 size_t byte_shift = 0; local in function:gicv3_redist_enable 306 for (o = 0; o < 4; o++, byte_shift += 8) { 309 priority |= (0xffU << byte_shift); 312 priority |= ipriority_val << byte_shift; |