Lines Matching defs:newcpl
67 splraise(int newcpl)
69 return ppc_intr_func.raise(newcpl);
73 spllower(int newcpl)
75 return ppc_intr_func.lower(newcpl);
79 splx(int newcpl)
81 ppc_intr_func.x(newcpl);
90 ppc_dflt_splraise(int newcpl)
96 if (newcpl < oldcpl)
97 newcpl = oldcpl;
98 ci->ci_cpl = newcpl;
104 ppc_dflt_spllower(int newcpl)
111 splx(newcpl);
117 ppc_dflt_splx(int newcpl)
121 ci->ci_cpl = newcpl;
123 if (ci->ci_dec_deferred && newcpl < IPL_CLOCK) {
128 if (ci->ci_ipending & ppc_smask[newcpl])
129 dosoftint(newcpl);