Lines Matching refs:set
38 #define CPUSET_ADD(set, cpu) ((set) |= CPUSET_SINGLE(cpu))
39 #define CPUSET_DEL(set, cpu) ((set) &= ~CPUSET_SINGLE(cpu))
42 #define CPUSET_EXCEPT(set, cpu) ((set) & ~CPUSET_SINGLE(cpu))
44 #define CPUSET_HAS(set, cpu) ((set) & CPUSET_SINGLE(cpu))
45 #define CPUSET_NEXT(set) (ffs(set) - 1)
47 #define CPUSET_EMPTY(set) ((set) == (sparc64_cpuset_t)0)
49 #define CPUSET_CLEAR(set) ((set) = (sparc64_cpuset_t)0)