HomeSort by: relevance | last modified time | path
    Searched defs:SOFTIPLMASK (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/arch/riscv/riscv/
softint_machdep.c 54 * SOFTIPLMASK(IPL_NONE) = 0x0000000f
55 * SOFTIPLMASK(IPL_SOFTCLOCK) = 0x0000000e
56 * SOFTIPLMASK(IPL_SOFTBIO) = 0x0000000c
57 * SOFTIPLMASK(IPL_SOFTNET) = 0x00000008
58 * SOFTIPLMASK(IPL_SOFTSERIAL) = 0x00000000
60 #define SOFTIPLMASK(ipl) ((0x0f << (ipl)) & 0x0f)
88 const uint32_t softiplmask = SOFTIPLMASK(opl); local in function:softint_deliver
92 u_int softints = ci->ci_softints & softiplmask;
  /src/sys/arch/aarch64/aarch64/
cpu_machdep.c 84 #define SOFTIPLMASK(ipl) ((0x0f << (ipl)) & 0x0f)
85 CTASSERT(SOFTIPLMASK(IPL_NONE) == 0x0000000f);
86 CTASSERT(SOFTIPLMASK(IPL_SOFTCLOCK) == 0x0000000e);
87 CTASSERT(SOFTIPLMASK(IPL_SOFTBIO) == 0x0000000c);
88 CTASSERT(SOFTIPLMASK(IPL_SOFTNET) == 0x00000008);
89 CTASSERT(SOFTIPLMASK(IPL_SOFTSERIAL) == 0x00000000);
119 const uint32_t softiplmask = SOFTIPLMASK(opl); local in function:dosoftints
127 u_int softints = ci->ci_softints & softiplmask;
  /src/sys/arch/arm/arm32/
arm32_machdep.c 656 * SOFTIPLMASK(IPL_NONE) = 0x0000000f
657 * SOFTIPLMASK(IPL_SOFTCLOCK) = 0x0000000e
658 * SOFTIPLMASK(IPL_SOFTBIO) = 0x0000000c
659 * SOFTIPLMASK(IPL_SOFTNET) = 0x00000008
660 * SOFTIPLMASK(IPL_SOFTSERIAL) = 0x00000000
662 #define SOFTIPLMASK(ipl) ((0x0f << (ipl)) & 0x0f)
690 const uint32_t softiplmask = SOFTIPLMASK(opl); local in function:dosoftints
696 u_int softints = ci->ci_softints & softiplmask;

Completed in 13 milliseconds