Lines Matching refs:cpu
26 #define CPU_SET(cpu, set) cpuset_add((set), (cpu)) argument
27 #define CPU_SETOF(cpu, set) cpuset_only((set), (cpu)) argument
29 #define CPU_CLR(cpu, set) cpuset_del((set), (cpu)) argument
32 #define CPU_ISSET(cpu, set) cpu_in_set((cpuset_t *)(set), (cpu)) argument
42 #define CPU_SET_ATOMIC(cpu, set) cpuset_atomic_add( \ argument
44 (cpu))
45 #define CPU_CLR_ATOMIC(cpu, set) cpuset_atomic_del( \ argument
47 (cpu))
49 #define CPU_SET_ATOMIC_ACQ(cpu, set) cpuset_atomic_add((set), (cpu)) argument
118 #define CPU_SET(cpu, setp) BT_SET((setp)->_bits, cpu) argument
119 #define CPU_CLR(cpu, setp) BT_CLEAR((setp)->_bits, cpu) argument
125 #define CPU_ISSET(cpu, setp) BT_TEST((setp)->_bits, cpu) argument
127 #define CPU_SET_ATOMIC(cpu, setp) \ argument
128 atomic_set_long(&(BT_WIM((setp)->_bits, cpu)), BT_BIW(cpu))
129 #define CPU_CLR_ATOMIC(cpu, setp) \ argument
130 atomic_clear_long(&(BT_WIM((setp)->_bits, cpu)), BT_BIW(cpu))