Home | History | Annotate | Download | only in pic

Lines Matching refs:ncpl

648 splraise(int ncpl)
653 if (ncpl == ci->ci_cpl)
654 return ncpl;
657 KASSERT(ncpl < NIPL);
658 ci->ci_cpl = uimax(ncpl, ocpl);
665 have_pending_intr_p(struct cpu_info *ci, int ncpl)
667 if (ci->ci_ipending & ~imask[ncpl])
670 if (ci->ci_data.cpu_softints & (IPL_SOFTMASK << ncpl))
677 splx(int ncpl)
683 ci->ci_cpl = ncpl;
684 if (have_pending_intr_p(ci, ncpl))
691 spllower(int ncpl)
699 ci->ci_cpl = ncpl;
700 if (have_pending_intr_p(ci, ncpl))