Home | History | Annotate | Download | only in linux

Lines Matching refs:dst

27  * void cpus_and(dst, src1, src2)	dst = src1 & src2  [intersection]
28 * void cpus_or(dst, src1, src2) dst = src1 | src2 [union]
29 * void cpus_xor(dst, src1, src2) dst = src1 ^ src2
30 * void cpus_andnot(dst, src1, src2) dst = src1 & ~src2
31 * void cpus_complement(dst, src) dst = ~src
40 * void cpus_shift_right(dst, src, n) Shift right
41 * void cpus_shift_left(dst, src, n) Shift left
56 * int cpus_remap(dst, src, old, new) *dst = map(old, new)(src)
91 #define cpu_set(cpu, dst) __cpu_set((cpu), &(dst))
97 #define cpu_clear(cpu, dst) __cpu_clear((cpu), &(dst))
103 #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS)
109 #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS)
124 #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS)
131 #define cpus_or(dst, src1, src2) __cpus_or(&(dst), &(src1), &(src2), NR_CPUS)
138 #define cpus_xor(dst, src1, src2) __cpus_xor(&(dst), &(src1), &(src2), NR_CPUS)
145 #define cpus_andnot(dst, src1, src2) \
146 __cpus_andnot(&(dst), &(src1), &(src2), NR_CPUS)
153 #define cpus_complement(dst, src) __cpus_complement(&(dst), &(src), NR_CPUS)
199 #define cpus_shift_right(dst, src, n) \
200 __cpus_shift_right(&(dst), &(src), (n), NR_CPUS)
207 #define cpus_shift_left(dst, src, n) \
208 __cpus_shift_left(&(dst), &(src), (n), NR_CPUS)
276 #define cpumask_parse(ubuf, ulen, dst) \
277 __cpumask_parse((ubuf), (ulen), &(dst), NR_CPUS)
292 #define cpulist_parse(buf, dst) __cpulist_parse((buf), &(dst), NR_CPUS)
306 #define cpus_remap(dst, src, old, new) \
307 __cpus_remap(&(dst), &(src), &(old), &(new), NR_CPUS)