Lines Matching refs:CPU_SETSIZE
40 #define _NCPUWORDS __bitset_words(CPU_SETSIZE)
44 #define CPU_CLR(n, p) BIT_CLR(CPU_SETSIZE, n, p)
45 #define CPU_COPY(f, t) BIT_COPY(CPU_SETSIZE, f, t)
46 #define CPU_ISSET(n, p) BIT_ISSET(CPU_SETSIZE, n, p)
47 #define CPU_SET(n, p) BIT_SET(CPU_SETSIZE, n, p)
48 #define CPU_ZERO(p) BIT_ZERO(CPU_SETSIZE, p)
49 #define CPU_FILL(p) BIT_FILL(CPU_SETSIZE, p)
50 #define CPU_SETOF(n, p) BIT_SETOF(CPU_SETSIZE, n, p)
51 #define CPU_EMPTY(p) BIT_EMPTY(CPU_SETSIZE, p)
52 #define CPU_ISFULLSET(p) BIT_ISFULLSET(CPU_SETSIZE, p)
53 #define CPU_SUBSET(p, c) BIT_SUBSET(CPU_SETSIZE, p, c)
54 #define CPU_OVERLAP(p, c) BIT_OVERLAP(CPU_SETSIZE, p, c)
55 #define CPU_CMP(p, c) BIT_CMP(CPU_SETSIZE, p, c)
56 #define CPU_OR(d, s) BIT_OR(CPU_SETSIZE, d, s)
57 #define CPU_AND(d, s) BIT_AND(CPU_SETSIZE, d, s)
58 #define CPU_NAND(d, s) BIT_NAND(CPU_SETSIZE, d, s)
59 #define CPU_CLR_ATOMIC(n, p) BIT_CLR_ATOMIC(CPU_SETSIZE, n, p)
60 #define CPU_SET_ATOMIC(n, p) BIT_SET_ATOMIC(CPU_SETSIZE, n, p)
61 #define CPU_SET_ATOMIC_ACQ(n, p) BIT_SET_ATOMIC_ACQ(CPU_SETSIZE, n, p)
62 #define CPU_AND_ATOMIC(n, p) BIT_AND_ATOMIC(CPU_SETSIZE, n, p)
63 #define CPU_OR_ATOMIC(d, s) BIT_OR_ATOMIC(CPU_SETSIZE, d, s)
64 #define CPU_COPY_STORE_REL(f, t) BIT_COPY_STORE_REL(CPU_SETSIZE, f, t)
65 #define CPU_FFS(p) BIT_FFS(CPU_SETSIZE, p)
66 #define CPU_COUNT(p) BIT_COUNT(CPU_SETSIZE, p)