Lines Matching defs:next
11 * cpumask_next - get the next cpu in a cpumask
27 * cpumask_next_and - get the next cpu in *src1p & *src2p
79 int next;
82 next = cpumask_next(n, mask);
84 if (wrap && n < start && next >= start) {
87 } else if (next >= nr_cpumask_bits) {
93 return next;
249 int next, prev;
254 next = cpumask_next_and(prev, src1p, src2p);
255 if (next >= nr_cpu_ids)
256 next = cpumask_first_and(src1p, src2p);
258 if (next < nr_cpu_ids)
259 __this_cpu_write(distribute_cpu_mask_prev, next);
261 return next;