Home
last modified time | relevance | path

Searched refs:ncpl (Results 1 – 3 of 3) sorted by relevance

/openbsd/src/sys/arch/hppa/include/
Dintr.h94 spllower(int ncpl) in spllower() argument
96 register int arg0 asm("r26") = ncpl; in spllower()
108 splraise(int ncpl) in splraise() argument
113 if (ocpl < ncpl) in splraise()
114 ci->ci_cpl = ncpl; in splraise()
121 splx(int ncpl) in splx() argument
123 (void)spllower(ncpl); in splx()
/openbsd/src/sys/arch/i386/include/
Dintr.h89 #define _SPLRAISE(ocpl, ncpl) \ argument
91 if (ncpl > ocpl) \
92 lapic_tpr = ncpl
95 #define _SPLX(ncpl) \ argument
96 lapic_tpr = ncpl; \
97 if (curcpu()->ci_ipending & IUNMASK(ncpl)) \
/openbsd/src/sys/arch/i386/i386/
Dmachdep.c3914 splraise(int ncpl) in splraise() argument
3918 KASSERT(ncpl >= IPL_NONE); in splraise()
3920 _SPLRAISE(ocpl, ncpl); in splraise()
3929 splx(int ncpl) in splx() argument
3931 _SPLX(ncpl); in splx()
3939 spllower(int ncpl) in spllower() argument
3943 splx(ncpl); in spllower()